diff options
Diffstat (limited to 'sysutils/sd-agent/files/patch-agent.py')
-rw-r--r-- | sysutils/sd-agent/files/patch-agent.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sysutils/sd-agent/files/patch-agent.py b/sysutils/sd-agent/files/patch-agent.py new file mode 100644 index 000000000000..25d5ef9282c9 --- /dev/null +++ b/sysutils/sd-agent/files/patch-agent.py @@ -0,0 +1,17 @@ +--- agent.py.orig 2014-10-24 11:01:07 UTC ++++ agent.py +@@ -64,10 +64,10 @@ + + config = ConfigParser.ConfigParser() + +- if os.path.exists('/etc/sd-agent/conf.d/'): +- configPath = '/etc/sd-agent/conf.d/' +- elif os.path.exists('/etc/sd-agent/config.cfg'): +- configPath = '/etc/sd-agent/config.cfg' ++ if os.path.exists('%%PREFIX%%/etc/sd-agent/conf.d/'): ++ configPath = '%%PREFIX%%/etc/sd-agent/conf.d/' ++ elif os.path.exists('%%PREFIX%%/etc/sd-agent/config.cfg'): ++ configPath = '%%PREFIX%%/etc/sd-agent/config.cfg' + else: + configPath = path + '/config.cfg' + |