Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lanefu/ansible-collection-armlab
- Owner: lanefu
- License: mit
- Created: 2024-05-18T14:53:29.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-24T19:25:09.000Z (3 months ago)
- Last Synced: 2024-08-24T20:33:05.505Z (3 months ago)
- Topics: ansible, arm, armbian, cloud-init, cockpit, kvm, libvirt
- Language: Shell
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
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=mastergit subtree -P roles/${ROLE_NAME} add ${REPO} ${REPO_BRANCH} --squash
```