mirror of
https://github.com/MHA-Team/PTS-Team.git
synced 2026-03-16 06:12:08 +00:00
23 lines
678 B
Bash
23 lines
678 B
Bash
#!/bin/bash
|
|
#
|
|
# Title: PGBlitz (Reference Title File)
|
|
# Author(s): Admin9705 - Deiteq
|
|
# URL: https://pgblitz.com - http://github.pgblitz.com
|
|
# GNU: General Public License v3.0
|
|
################################################################################
|
|
---
|
|
- hosts: localhost
|
|
gather_facts: false
|
|
tasks:
|
|
# KEY VARIABLES ################################################################
|
|
- name: Set PGRole
|
|
shell: 'cat /tmp/program_var'
|
|
register: pgrole
|
|
|
|
# CRON REMOVE ##################################################################
|
|
|
|
- cron:
|
|
name: '{{pgrole.stdout}}'
|
|
state: absent
|
|
ignore_errors: yes
|