added stoof

This commit is contained in:
opal
2024-10-01 17:19:15 -07:00
parent 477c6c6103
commit d94cca2096
2 changed files with 22 additions and 5 deletions

View File

@@ -39,7 +39,6 @@
name: "*"
state: latest
- name: Add Ubuntu PPAs to apt repositories
apt_repository:
repo: "{{ item }}"
@@ -92,3 +91,19 @@
repo: "{{ etbook_repo }}"
dest: "{{ etbook_dest }}"
update: no
- name: Start TLP (power management)
systemd:
name: tlp
enabled: yes
state: started
- name: Add rsync backup job to cron
cron:
name: "Backup KeePassXC database to desktop"
minute: "0"
hour: "10"
day: "*"
month: "*"
weekday: "*"
job: "/usr/bin/rsync -avz /home/opal/documents/keepassxc/opalkeepassxc.kdbx opal@desktop:/home/opal/documents"