feat: ansible update playbook
This commit is contained in:
parent
837d833cf1
commit
2756e4f7c7
1 changed files with 14 additions and 0 deletions
14
ansible/playbooks/update.yml
Normal file
14
ansible/playbooks/update.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
- name: Update system
|
||||
hosts: all
|
||||
remote_user: root
|
||||
|
||||
tasks:
|
||||
- name: "update all packages"
|
||||
ansible.builtin.apt:
|
||||
name: "*"
|
||||
state: latest
|
||||
- name: "update /neb"
|
||||
ansible.builtin.git:
|
||||
repo: git@git.ixvd.net:ixvd/neb
|
||||
dest: /neb
|
Loading…
Reference in a new issue