10 lines
174 B
YAML
10 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/
|
|
|