Moce cron jobs from root to ansible now that permissions are fixed.

This commit is contained in:
Hyperling 2021-02-06 09:58:18 -06:00
parent 2d9975eb5c
commit 248855feda
2 changed files with 34 additions and 5 deletions

View File

@ -15,6 +15,35 @@
user: ansible user: ansible
name: "Heartbeat Report" name: "Heartbeat Report"
minute: "*/15" minute: "*/15"
job: "sudo date > {{ heartbeat_report }}; chmod 777 {{ heartbeat_report }}" job: "sudo touch {{ heartbeat_report }}; chmod 777 {{ heartbeat_report }}"
state: present state: present
disabled: no disabled: no
- name: General | Cron | Ansible | Enable SSHFS Job (FreeBSD)
cron:
user: ansible
name: "1337 SSHFS"
special_time: reboot
job: "sudo {{ sshfs_leet_cmd }}"
state: present
disabled: no
when: ansible_system == "FreeBSD"
- name: General | Cron | Ansible | Enable Secure Copy Reports
cron:
user: ansible
name: "Copy Reports"
minute: "05,20,35,50"
job: "sudo scp {{ ansible_pull_report }} {{ heartbeat_report }} {{ lynis_report }} {{ nmap_report }} ling@leet:{{ report_scp_location }}"
state: present
disabled: no
when: not leet_drive_details.stat.exists
- name: General | Cron | Ansible | Disable Secure Copy Reports
cron:
user: ansible
name: "Copy Reports"
job: "As a wise man once said, I'm disabled."
state: present
disabled: yes
when: leet_drive_details.stat.exists

View File

@ -1,13 +1,13 @@
--- ---
# Jobs relating to the root user. # Jobs relating to the root user.
- name: General | Cron | Root | Create SSHFS Job (FreeBSD) - name: General | Cron | Root | Enable SSHFS Job (FreeBSD)
cron: cron:
user: root user: root
name: "1337 SSHFS" name: "1337 SSHFS"
special_time: reboot special_time: reboot
job: "{{ sshfs_leet_cmd }}" job: "{{ sshfs_leet_cmd }}"
state: present state: absent
disabled: no disabled: no
when: ansible_system == "FreeBSD" when: ansible_system == "FreeBSD"
@ -17,7 +17,7 @@
name: "Copy Reports" name: "Copy Reports"
minute: "05,20,35,50" minute: "05,20,35,50"
job: "scp {{ ansible_pull_report }} {{ heartbeat_report }} {{ lynis_report }} {{ nmap_report }} ling@leet:{{ report_scp_location }}" job: "scp {{ ansible_pull_report }} {{ heartbeat_report }} {{ lynis_report }} {{ nmap_report }} ling@leet:{{ report_scp_location }}"
state: present state: absent
disabled: no disabled: no
when: not leet_drive_details.stat.exists when: not leet_drive_details.stat.exists
@ -26,6 +26,6 @@
user: root user: root
name: "Copy Reports" name: "Copy Reports"
job: "As a wise man once said, I'm disabled." job: "As a wise man once said, I'm disabled."
state: present state: absent
disabled: yes disabled: yes
when: leet_drive_details.stat.exists when: leet_drive_details.stat.exists