mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-06-27 23:57:02 +08:00
Per averi, cloud.gnome.org is to be removed. This host has no impact on fedora releases and shouldn't freeze. Signed-off-by: Kevin Fenzi <kevin@scrye.com>
52 lines
1.8 KiB
YAML
52 lines
1.8 KiB
YAML
- name: Make sure rdiff-backup is installed
|
|
package: name=rdiff-backup state=latest
|
|
|
|
- name: Create GNOME backup user
|
|
user: name=gnomebackup state=present home=/gnome_backups/ createhome=yes shell=/sbin/nologin
|
|
|
|
- name: Add a Directory for the Excludes list for each of the backed up GNOME machines
|
|
file: dest=/gnome_backups/excludes owner=gnomebackup group=gnomebackup state=directory
|
|
|
|
- name: Install the GNOME SSH configuration file
|
|
copy: src="ssh_config" dest=/usr/local/etc/gnome_ssh_config mode=0600 owner=gnomebackup
|
|
|
|
- name: Install GNOME backup key
|
|
copy: src="{{ private }}/files/gnome/backup_id.rsa" dest=/usr/local/etc/gnome_backup_id.rsa mode=0600 owner=gnomebackup
|
|
|
|
- name: Install GNOME backup script
|
|
copy: src="backup.sh" dest=/usr/local/bin/gnome_backup mode=0700 owner=gnomebackup
|
|
|
|
- name: Schedule the GNOME backup script
|
|
cron: name="Backup" hour=5 minute=0 job="(cd /gnome_backups; /usr/local/bin/lock-wrapper gnomebackup /usr/local/bin/gnome_backup)" user=gnomebackup
|
|
|
|
- name: Make sure the MAILTO environment variable gets populated
|
|
cronvar: name="MAILTO" value="backups@gnome.org" user=gnomebackup
|
|
|
|
- name: Add a Directory for each of the GNOME machines
|
|
file: dest=/gnome_backups/{{ item }} owner=gnomebackup group=gnomebackup state=directory
|
|
with_items:
|
|
- signal.gnome.org
|
|
- webapps2.gnome.org
|
|
- view.gnome.org
|
|
- puppetmaster01.gnome.org
|
|
- palette.gnome.org
|
|
- oscp-master01.gnome.org
|
|
- webapps.gnome.org
|
|
- socket.gnome.org
|
|
- bugzilla.gnome.org
|
|
- bastion.gnome.org
|
|
- spinner.gnome.org
|
|
- master.gnome.org
|
|
- wiki.gnome.org
|
|
- restaurant.gnome.org
|
|
- expander.gnome.org
|
|
- accelerator.gnome.org
|
|
- range.gnome.org
|
|
- pentagon.gimp.org
|
|
- account.gnome.org
|
|
- gnome-hispano.gnome.org
|
|
- gesture.gnome.org
|
|
- scale.gnome.org
|
|
- sdkbuilder.gnome.org
|
|
- webapps3.gnome.org
|