projects
/
pennestraat-domotica
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e61cb9b
)
ansible: first playbook
author
Kristof Provost
<kp@FreeBSD.org>
Wed, 3 May 2023 20:19:21 +0000
(22:19 +0200)
committer
Kristof Provost
<kp@FreeBSD.org>
Wed, 3 May 2023 20:19:21 +0000
(22:19 +0200)
Install nginx, because we'll need something to serve web foo.
ansible/playbook.yaml
[new file with mode: 0644]
patch
|
blob
diff --git a/ansible/playbook.yaml
b/ansible/playbook.yaml
new file mode 100644
(file)
index 0000000..
092acea
--- /dev/null
+++ b/
ansible/playbook.yaml
@@ -0,0
+1,13
@@
+- name: test playbook
+ hosts: domoticamachines
+ tasks:
+ - name: ping my hosts
+ ansible.builtin.ping:
+ - name: print message
+ ansible.builtin.debug:
+ msg: Hello World!
+ - name: Install nginx
+ community.general.pkgng:
+ name: nginx
+ state: present
+ become: true