mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 14:40:27 +00:00
31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
####################################################################################################################################
|
||
|
# A CLI Script to update list of domains instead from the UI. Can be usefull 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
|
||
|
from app.models import Domain
|
||
|
from config import BG_DOMAIN_UPDATES
|
||
|
|
||
|
import sys
|
||
|
import logging as logger
|
||
|
|
||
|
### Define logging
|
||
|
logging = logger.getLogger(__name__)
|
||
|
|
||
|
### Check if BG_DOMAIN_UPDATES is set to true
|
||
|
if not BG_DOMAIN_UPDATES:
|
||
|
logging.error('Set BG_DOMAIN_UPDATES to True in config.py')
|
||
|
sys.exit(1)
|
||
|
|
||
|
### Start the update process
|
||
|
logging.info('Update zones from nameserver API')
|
||
|
|
||
|
d = Domain().update()
|