replace dashes in rc.conf keys (which are based on freebsd rc.d filenames) to underscores

pull/4370/head
Martijn Lina 11 years ago
parent a74c0091b2
commit 4cd3b9d637

@ -103,6 +103,7 @@ import tempfile
import shlex import shlex
import select import select
import time import time
import string
class Service(object): class Service(object):
""" """
@ -873,7 +874,7 @@ class NetBsdService(Service):
if os.path.isfile(rcfile): if os.path.isfile(rcfile):
self.rcconf_file = rcfile self.rcconf_file = rcfile
self.rcconf_key = "%s" % self.name self.rcconf_key = "%s" % string.replace(self.name,"-","_");
return self.service_enable_rcconf() return self.service_enable_rcconf()

Loading…
Cancel
Save