summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2010-09-25 14:58:47 +0200
committerGuido Günther <agx@sigxcpu.org>2010-09-25 15:11:44 +0200
commit1c3a89d90211153ae5659f674ba44020543c8552 (patch)
treec9b3083422d9e43d7d5a6907c66b9293e68a5332
parent62e967452e02d81abfb06c30272145b88ba6d42f (diff)
Fix init script re for RedHat based distrosv0.0.1
-rwxr-xr-xwhatmaps2
1 files changed, 1 insertions, 1 deletions
diff --git a/whatmaps b/whatmaps
index 508f071..379fc61 100755
--- a/whatmaps
+++ b/whatmaps
@@ -354,7 +354,7 @@ class FedoraDistro(RedHatDistro):
class RpmPkg(Pkg):
type = 'RPM'
- _init_script_re = re.compile('/etc/init.d/[\w\-\.]')
+ _init_script_re = re.compile('/etc/rc.d/init.d/[\w\-\.]')
_list_contents = [ 'rpm', '-ql', '$pkg_name' ]
def __init__(self, name):