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: about 2 months ago
JSON representation
ansible collection for my armlab tinkering
- Host: GitHub
- URL: https://github.com/lanefu/ansible-collection-armlab
- Owner: lanefu
- License: mit
- Created: 2024-05-18T14:53:29.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2026-02-12T03:45:46.000Z (4 months ago)
- Last Synced: 2026-02-12T13:36:58.691Z (4 months ago)
- Topics: ansible, arm, armbian, cloud-init, cockpit, kvm, libvirt
- Language: Shell
- Homepage:
- Size: 146 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```