No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

checkrbl.yml 376B

123456789
  1. - name: What is our IP address?
  2. command: dig ${mail_server_hostname} +short
  3. register: dig_command
  4. - name: Download check-rbl
  5. get_url: url=https://raw.github.com/lukecyca/check-rbl/f6b222b0ca/check-rbl.pl dest=/opt/check-rbl.pl
  6. - name: Install nightly check-rbl cronjob
  7. cron: name="check-rbl" hour="2" minute="0" job="perl /opt/check-rbl.pl -i ${dig_command.stdout}"