Commit 4cd3b9d6 by Martijn Lina

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

parent a74c0091
......@@ -103,6 +103,7 @@ import tempfile
import shlex
import select
import time
import string
class Service(object):
"""
......@@ -873,7 +874,7 @@ class NetBsdService(Service):
if os.path.isfile(rcfile):
self.rcconf_file = rcfile
self.rcconf_key = "%s" % self.name
self.rcconf_key = "%s" % string.replace(self.name,"-","_");
return self.service_enable_rcconf()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment