11 lines
174 B
YAML
11 lines
174 B
YAML
|
---
|
||
|
- name: Create backups
|
||
|
hosts: all
|
||
|
gather_facts: false
|
||
|
become: true
|
||
|
|
||
|
tasks:
|
||
|
- name: Update RPM systems
|
||
|
shell: tar cvzf /tmp/backup.tar.gz /home/bryson/
|
||
|
|