Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lanefu/ansible-collection-armlab

ansible collection for my armlab tinkering
https://github.com/lanefu/ansible-collection-armlab

ansible arm armbian cloud-init cockpit kvm libvirt

Last synced: 17 days ago
JSON representation

ansible collection for my armlab tinkering

Awesome Lists containing this project

README

        

# Ansible Collection - lanefu.armlab

Documentation for the collection.

## my own notes

### subtrees

I like subtrees of other roles. sometimes i'll fork role and then push changes back up

#### slurping role to subtree

example for zfs role

`git subtree -P roles/zfs add https://github.com/mrlesmithjr/ansible-zfs.git master --squash`

```bash
ROLE_NAME=zfs
REPO=https://github.com/mrlesmithjr/ansible-zfs.git
REPO_BRANCH=master

git subtree -P roles/${ROLE_NAME} add ${REPO} ${REPO_BRANCH} --squash
```