/usr/bin/ddupdate-config is in ddupdate 0.5.3-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/usr/bin/python3
''' ddupdate-config main script, invokes ddupdate.config.main(). '''
# pylint: disable=invalid-name
import os.path
import sys
sys.path.pop(0)
HERE = os.path.abspath(os.path.dirname(os.path.realpath(__file__)))
sys.path.insert(0, os.path.join(HERE, 'lib'))
try:
import lib.ddupdate.config as config
except ImportError:
import ddupdate.config as config
config.main()
|