[base] Deploy basic packages
parent
1b970a4c00
commit
30934b7941
3
base.yml
3
base.yml
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
# Playbook to deploy common Crans configuration and tools
|
||||
- hosts: all
|
||||
roles: [] # TODO
|
||||
roles:
|
||||
- common-tools
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
- name: Install common tools
|
||||
apt:
|
||||
update_cache: true
|
||||
name:
|
||||
- sudo
|
||||
- molly-guard # prevent reboot
|
||||
- ntp # network time sync
|
||||
- apt # better than apt-get
|
||||
- rsync # backuppc
|
||||
register: apt_result
|
||||
retries: 3
|
||||
until: apt_result is succeeded
|
||||
|
Loading…
Reference in New Issue