/usr/share/cherokee/admin/upgrade_config.py is in cherokee-admin 1.2.101-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 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | #!/usr/bin/env python
# Cherokee CLI configuration conversion
#
# Authors:
# Alvaro Lopez Ortega <alvaro@alobbs.com>
#
# Copyright (C) 2001-2011 Alvaro Lopez Ortega
# This file is distributed under the GPL2 license.
import os
import sys
# Import CTK
sys.path.append (os.path.abspath (os.path.realpath(__file__) + '/../CTK/CTK'))
from Config import *
from configured import *
from config_version import *
def main():
# Read the command line parameter
try:
cfg_file = sys.argv[1]
except:
print "Incorrect parameters: %s CONFIG_FILE" % (sys.argv[0])
raise SystemExit
# Parse the configuration file
cfg = Config(cfg_file)
# Update the configuration file if needed
ver_config = int (cfg.get_val('config!version', '000099028'))
ver_release = int (config_version_get_current())
print "Upgrading '%s' from %d to %d.." % (cfg_file, ver_config, ver_release),
# Convert it
updated = config_version_update_cfg (cfg)
print ["Not upgraded.", "Upgraded."][updated]
# Save it
if updated:
print "Saving new configuration..",
cfg.save()
print "OK"
if __name__ == '__main__':
main()
|