commit
98d03602fc
5 changed files with 65 additions and 0 deletions
@ -0,0 +1,27 @@ |
|||
{ |
|||
"provisioners": [ |
|||
{ |
|||
"type": "shell", |
|||
"inline": "[ \"$(ansible --version > /dev/null && echo ok)\" != 'ok' ] && apt update && apt -y install ansible || echo 'ansible already installed.'" |
|||
}, |
|||
{ |
|||
"type": "ansible-local", |
|||
"playbook_file": "./playbook/example-playbook.yml", |
|||
"playbook_dir" : "./playbook" |
|||
} |
|||
], |
|||
|
|||
|
|||
"builders": [ |
|||
{ |
|||
"type": "lxd", |
|||
"name": "acme-focal", |
|||
"image": "ubuntu-daily:focal", |
|||
"output_image": "acme_ubuntu-focal", |
|||
"init_sleep": "10", |
|||
"publish_properties": { |
|||
"description": "Focal image by ACME corp." |
|||
} |
|||
} |
|||
] |
|||
} |
@ -0,0 +1,6 @@ |
|||
--- |
|||
|
|||
- hosts: 127.0.0.1 |
|||
connection: local |
|||
roles: |
|||
- playbook/roles/acme-firstfive |
@ -0,0 +1,4 @@ |
|||
|
|||
## acme-firstfive |
|||
|
|||
Ansible role for deployment of the first 5 minutes of a server. |
@ -0,0 +1,19 @@ |
|||
--- |
|||
|
|||
firstfive_packages: |
|||
- openssh-server |
|||
- curl |
|||
- wget |
|||
- httpie |
|||
- zsh |
|||
- vim |
|||
- git |
|||
- tmux |
|||
- htop |
|||
- sysstat |
|||
- screen |
|||
- unzip |
|||
- unrar |
|||
- sl |
|||
- mc |
|||
- cowsay |
@ -0,0 +1,9 @@ |
|||
--- |
|||
|
|||
- name: Install must-have packages |
|||
apt: |
|||
name: "{{ firstfive_packages }}" |
|||
state: present |
|||
update_cache: yes |
|||
|
|||
|
Loading…
Reference in new issue