Compare commits

...

3 Commits

Author SHA1 Message Date
65caaf572a upgrade: Add apt playbook
Signed-off-by: Noah Knegt <git@noahknegt.com>
2023-02-06 17:59:50 +01:00
4be324e11a inventory: Add 2 test hosts
Signed-off-by: Noah Knegt <git@noahknegt.com>
2023-02-06 17:35:30 +01:00
65ae888901 meta: Add editorconfig for consistent files
Signed-off-by: Noah Knegt <git@noahknegt.com>
2023-02-06 17:27:20 +01:00
3 changed files with 28 additions and 0 deletions

16
.editorconfig Normal file
View File

@@ -0,0 +1,16 @@
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = tab
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false
[*.{yml, yaml}]
indent_style = space
indent_size = 2

5
inventory/servers.ini Normal file
View File

@@ -0,0 +1,5 @@
[ubuntu]
vps.noahknegt.com:4422
[equinox]
apollo.svequinox.nl:2004

7
playbooks/apt.yml Normal file
View File

@@ -0,0 +1,7 @@
- hosts: 'ubuntu'
become: true
tasks:
- name: upgrade system
apt:
update_cache: yes
upgrade: yes