diff options
author | Rob Austein <sra@hactrn.net> | 2011-01-20 19:59:13 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2011-01-20 19:59:13 +0000 |
commit | 7c26e04d89406d7af06d2ad2c951d9d50a797cf0 (patch) | |
tree | 95bbb84e3e392043930864c3c8bbfa595b2236a7 /rpkid/backup-sql.py | |
parent | 257406947dddcad49f9750977b8468fbf68b92f6 (diff) |
Generate Python executables during compilation rather than from
./configure. Change (almost) all programs to use rpki.conf instead of
separate config files for each program, and add support for
${prefix}/etc/rpki.conf like normal system programs.
svn path=/buildtools/make-python-executable.py; revision=3620
Diffstat (limited to 'rpkid/backup-sql.py')
-rw-r--r-- | rpkid/backup-sql.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/backup-sql.py b/rpkid/backup-sql.py index cdf5beac..0a7c9594 100644 --- a/rpkid/backup-sql.py +++ b/rpkid/backup-sql.py @@ -26,7 +26,7 @@ import subprocess, os, getopt, sys, time, rpki.config os.environ["TZ"] = "UTC" time.tzset() -cfg_file = "myrpki.conf" +cfg_file = None opts, argv = getopt.getopt(sys.argv[1:], "c:h?", ["config=", "help"]) for o, a in opts: |