PowerDNS-Admin/update_zones.py

35 lines
1.2 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
####################################################################################################################################
2019-12-06 04:46:54 +01:00
# A CLI Script to update list of domains instead from the UI. Can be useful for people who want to execute updates from a cronjob
#
# Tip:
# When running from a cron, use flock (you might need to install it) to be sure only one process is running a time. eg:
# */5 * * * * flock -xn "/tmp/pdns-update-zones.lock" python /var/www/html/apps/poweradmin/update_zones.py >/dev/null 2>&1
#
##############################################################
### Imports
2019-12-06 04:46:54 +01:00
import sys
import logging
from powerdnsadmin import create_app
2019-12-04 05:50:46 +01:00
from powerdnsadmin.models.domain import Domain
2019-12-06 04:46:54 +01:00
from powerdnsadmin.models.setting import Setting
2019-12-06 04:46:54 +01:00
app = create_app()
app.logger.setLevel(logging.INFO)
2019-12-06 04:46:54 +01:00
with app.app_context():
status = Setting().get('bg_domain_updates')
2019-12-06 04:46:54 +01:00
### Check if bg_domain_updates is set to true
if not status:
app.logger.error('Please turn on "bg_domain_updates" setting to run this job.')
sys.exit(1)
2019-12-06 04:46:54 +01:00
### Start the update process
app.logger.info('Update domains from nameserver API')
Domain().update()