diff options
author | Timothy Pearson <[email protected]> | 2013-01-27 00:56:31 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-27 00:56:31 -0600 |
commit | 3158f3b3844427ac312f4170e03521b68d1fcce7 (patch) | |
tree | ac0cc80e742541311c979c0f229d511f9e97f7a2 /serviceconfig/serviceconfig.py | |
parent | 287b394385e1878d1d146e7f07d5cae766bfc323 (diff) | |
download | tde-guidance-3158f3b3844427ac312f4170e03521b68d1fcce7.tar.gz tde-guidance-3158f3b3844427ac312f4170e03521b68d1fcce7.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'serviceconfig/serviceconfig.py')
-rwxr-xr-x | serviceconfig/serviceconfig.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/serviceconfig/serviceconfig.py b/serviceconfig/serviceconfig.py index b93be65..233ebfb 100755 --- a/serviceconfig/serviceconfig.py +++ b/serviceconfig/serviceconfig.py @@ -37,7 +37,7 @@ DISTRO = "Mandrake" initdir = "/etc/init.d" rcdir = "/etc/rc.d" -chkconfigpath = "/sbin/chkconfig" +chtdeconfigpath = "/sbin/chtdeconfig" statusblacklist = ['iptables'] # Are we running as a separate standalone application or in KControl? @@ -132,7 +132,7 @@ class Service(object): place = 1 elif place==1: # Grab the short description line. if line!="#": - if line.startswith("# chkconfig:"): + if line.startswith("# chtdeconfig:"): parts = line[12:].split() if len(parts)>=1: for c in parts[0]: @@ -151,7 +151,7 @@ class Service(object): self.longname = line[2:] place = 2 elif place==2: # Look for the description line - if line.startswith("# chkconfig:"): + if line.startswith("# chtdeconfig:"): parts = line[12:].split() if len(parts)>=1: for c in parts[0]: |