Compare commits

...

2 Commits

Author SHA1 Message Date
chatton f4c7213a30 adding boiler plate for packages role 2 years ago
chatton 2a63014b0d added initial scaffolding 2 years ago

1
.gitignore vendored

@ -0,0 +1 @@
.idea

@ -0,0 +1,9 @@
[defaults]
inventory=hosts.ini
vault_password_file=~/.vault-key
host_key_checking = True
private_key_file=~/.ssh/id_rsa
remote_user=cianhatton
roles_path = roles
collections_path = collections
nocows=1

@ -0,0 +1,6 @@
---
packages:
- sudo
- tmux
- vim
- npm

@ -0,0 +1,11 @@
---
- name: Update Packages
ansible.builtin.apt:
upgrade: dist
update_cache: true
- name: Install desired packages
ansible.builtin.apt:
pkg:
- foo
- foo-tools

@ -0,0 +1,4 @@
---
- hosts: localhost
roles:
- install_packages
Loading…
Cancel
Save