1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

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

This commit is contained in:
Martijn Lina 2013-10-04 16:30:39 +02:00
parent a74c0091b2
commit 4cd3b9d637

View file

@ -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()