Install docker repos
This commit is contained in:
parent
5b4c9c5bf5
commit
5602648f15
2 changed files with 12 additions and 1 deletions
|
@ -14,6 +14,7 @@
|
||||||
install_recommends: true
|
install_recommends: true
|
||||||
pkg:
|
pkg:
|
||||||
- ansible
|
- ansible
|
||||||
|
- composer
|
||||||
- curl
|
- curl
|
||||||
- dia
|
- dia
|
||||||
- fcitx5
|
- fcitx5
|
||||||
|
@ -38,6 +39,7 @@
|
||||||
- pkexec
|
- pkexec
|
||||||
- puppet-lint
|
- puppet-lint
|
||||||
- python3-yamlfix
|
- python3-yamlfix
|
||||||
|
- rsync
|
||||||
- scdaemon
|
- scdaemon
|
||||||
- sway
|
- sway
|
||||||
- sway-backgrounds
|
- sway-backgrounds
|
||||||
|
|
|
@ -17,7 +17,10 @@
|
||||||
- puppet-sunet
|
- puppet-sunet
|
||||||
platformrepos:
|
platformrepos:
|
||||||
- sunetdrive
|
- sunetdrive
|
||||||
|
dockerrepos:
|
||||||
|
- nextcloud-custom
|
||||||
|
- dovecot-lda-docker
|
||||||
|
- postfix-docker
|
||||||
connection: local
|
connection: local
|
||||||
become: false
|
become: false
|
||||||
tasks:
|
tasks:
|
||||||
|
@ -41,6 +44,12 @@
|
||||||
cmd: git clone {{ github }}/{{ item }}
|
cmd: git clone {{ github }}/{{ item }}
|
||||||
creates: /home/{{ uid }}/sunet/puppet/{{ item }}
|
creates: /home/{{ uid }}/sunet/puppet/{{ item }}
|
||||||
loop: "{{ puppetrepos }}"
|
loop: "{{ puppetrepos }}"
|
||||||
|
- name: Get github docker-repos
|
||||||
|
ansible.builtin.command:
|
||||||
|
chdir: /home/{{ uid }}/sunet/docker
|
||||||
|
cmd: git clone {{ github }}/{{ item }}
|
||||||
|
creates: /home/{{ uid }}/sunet/docker/{{ item }}
|
||||||
|
loop: "{{ dockerrepos }}"
|
||||||
- name: Get platform puppet-repos
|
- name: Get platform puppet-repos
|
||||||
ansible.builtin.command:
|
ansible.builtin.command:
|
||||||
chdir: /home/{{ uid }}/sunet/puppet
|
chdir: /home/{{ uid }}/sunet/puppet
|
||||||
|
|
Loading…
Add table
Reference in a new issue