pull/445/head
midoks 2 years ago
parent e02c52df49
commit b51f3fdd68
  1. 2
      plugins/memcached/index.py
  2. 6
      plugins/openresty/index.py

@ -239,7 +239,7 @@ def saveConf():
def initdStatus():
current_os = mw.getOs()
if getOs() == 'darwin':
if current_os == 'darwin':
return "Apple Computer does not support"
if current_os.startswith('freebsd'):

@ -335,7 +335,7 @@ def reload():
def initdStatus():
current_os = mw.getOs()
if getOs() == 'darwin':
if current_os == 'darwin':
return "Apple Computer does not support"
if current_os.startswith('freebsd'):
@ -352,7 +352,7 @@ def initdStatus():
def initdInstall():
current_os = mw.getOs()
if getOs() == 'darwin':
if current_os == 'darwin':
return "Apple Computer does not support"
# freebsd initd install
@ -371,7 +371,7 @@ def initdInstall():
def initdUinstall():
current_os = mw.getOs()
if getOs() == 'darwin':
if current_os == 'darwin':
return "Apple Computer does not support"
if current_os.startswith('freebsd'):

Loading…
Cancel
Save