Remove reference to memcached
This commit is contained in:
@@ -12,11 +12,6 @@ class WOStackStatusController(CementBaseController):
|
|||||||
stacked_on = 'stack'
|
stacked_on = 'stack'
|
||||||
stacked_type = 'embedded'
|
stacked_type = 'embedded'
|
||||||
description = 'Check the stack status'
|
description = 'Check the stack status'
|
||||||
arguments = [
|
|
||||||
(['--memcached'],
|
|
||||||
dict(help='start/stop/restart memcached',
|
|
||||||
action='store_true')),
|
|
||||||
]
|
|
||||||
|
|
||||||
@expose(help="Start stack services")
|
@expose(help="Start stack services")
|
||||||
def start(self):
|
def start(self):
|
||||||
@@ -25,7 +20,6 @@ class WOStackStatusController(CementBaseController):
|
|||||||
if not (self.app.pargs.nginx or self.app.pargs.php or
|
if not (self.app.pargs.nginx or self.app.pargs.php or
|
||||||
self.app.pargs.php73 or
|
self.app.pargs.php73 or
|
||||||
self.app.pargs.mysql or
|
self.app.pargs.mysql or
|
||||||
self.app.pargs.memcached or
|
|
||||||
self.app.pargs.redis or
|
self.app.pargs.redis or
|
||||||
self.app.pargs.fail2ban or
|
self.app.pargs.fail2ban or
|
||||||
self.app.pargs.netdata):
|
self.app.pargs.netdata):
|
||||||
@@ -68,12 +62,6 @@ class WOStackStatusController(CementBaseController):
|
|||||||
Log.warn(self, "Remote MySQL found, "
|
Log.warn(self, "Remote MySQL found, "
|
||||||
"Unable to check MySQL service status")
|
"Unable to check MySQL service status")
|
||||||
|
|
||||||
if self.app.pargs.memcached:
|
|
||||||
if WOAptGet.is_installed(self, 'memcached'):
|
|
||||||
services = services + ['memcached']
|
|
||||||
else:
|
|
||||||
Log.info(self, "Memcached is not installed")
|
|
||||||
|
|
||||||
if self.app.pargs.redis:
|
if self.app.pargs.redis:
|
||||||
if WOAptGet.is_installed(self, 'redis-server'):
|
if WOAptGet.is_installed(self, 'redis-server'):
|
||||||
services = services + ['redis-server']
|
services = services + ['redis-server']
|
||||||
@@ -97,7 +85,6 @@ class WOStackStatusController(CementBaseController):
|
|||||||
if not (self.app.pargs.nginx or self.app.pargs.php or
|
if not (self.app.pargs.nginx or self.app.pargs.php or
|
||||||
self.app.pargs.php73 or
|
self.app.pargs.php73 or
|
||||||
self.app.pargs.mysql or
|
self.app.pargs.mysql or
|
||||||
self.app.pargs.memcached or
|
|
||||||
self.app.pargs.redis):
|
self.app.pargs.redis):
|
||||||
self.app.pargs.nginx = True
|
self.app.pargs.nginx = True
|
||||||
self.app.pargs.php = True
|
self.app.pargs.php = True
|
||||||
@@ -139,12 +126,6 @@ class WOStackStatusController(CementBaseController):
|
|||||||
Log.warn(self, "Remote MySQL found, "
|
Log.warn(self, "Remote MySQL found, "
|
||||||
"Unable to check MySQL service status")
|
"Unable to check MySQL service status")
|
||||||
|
|
||||||
if self.app.pargs.memcached:
|
|
||||||
if WOAptGet.is_installed(self, 'memcached'):
|
|
||||||
services = services + ['memcached']
|
|
||||||
else:
|
|
||||||
Log.info(self, "Memcached is not installed")
|
|
||||||
|
|
||||||
if self.app.pargs.redis:
|
if self.app.pargs.redis:
|
||||||
if WOAptGet.is_installed(self, 'redis-server'):
|
if WOAptGet.is_installed(self, 'redis-server'):
|
||||||
services = services + ['redis-server']
|
services = services + ['redis-server']
|
||||||
@@ -212,12 +193,6 @@ class WOStackStatusController(CementBaseController):
|
|||||||
Log.warn(self, "Remote MySQL found, "
|
Log.warn(self, "Remote MySQL found, "
|
||||||
"Unable to check MySQL service status")
|
"Unable to check MySQL service status")
|
||||||
|
|
||||||
if self.app.pargs.memcached:
|
|
||||||
if WOAptGet.is_installed(self, 'memcached'):
|
|
||||||
services = services + ['memcached']
|
|
||||||
else:
|
|
||||||
Log.info(self, "Memcached is not installed")
|
|
||||||
|
|
||||||
if self.app.pargs.redis:
|
if self.app.pargs.redis:
|
||||||
if WOAptGet.is_installed(self, 'redis-server'):
|
if WOAptGet.is_installed(self, 'redis-server'):
|
||||||
services = services + ['redis-server']
|
services = services + ['redis-server']
|
||||||
@@ -241,7 +216,6 @@ class WOStackStatusController(CementBaseController):
|
|||||||
if not (self.app.pargs.nginx or self.app.pargs.php or
|
if not (self.app.pargs.nginx or self.app.pargs.php or
|
||||||
self.app.pargs.php73 or
|
self.app.pargs.php73 or
|
||||||
self.app.pargs.mysql or
|
self.app.pargs.mysql or
|
||||||
self.app.pargs.memcached or
|
|
||||||
self.app.pargs.redis or
|
self.app.pargs.redis or
|
||||||
self.app.pargs.fail2ban):
|
self.app.pargs.fail2ban):
|
||||||
self.app.pargs.nginx = True
|
self.app.pargs.nginx = True
|
||||||
@@ -284,12 +258,6 @@ class WOStackStatusController(CementBaseController):
|
|||||||
Log.warn(self, "Remote MySQL found, "
|
Log.warn(self, "Remote MySQL found, "
|
||||||
"Unable to check MySQL service status")
|
"Unable to check MySQL service status")
|
||||||
|
|
||||||
if self.app.pargs.memcached:
|
|
||||||
if WOAptGet.is_installed(self, 'memcached'):
|
|
||||||
services = services + ['memcached']
|
|
||||||
else:
|
|
||||||
Log.info(self, "Memcached is not installed")
|
|
||||||
|
|
||||||
if self.app.pargs.redis:
|
if self.app.pargs.redis:
|
||||||
if WOAptGet.is_installed(self, 'redis-server'):
|
if WOAptGet.is_installed(self, 'redis-server'):
|
||||||
services = services + ['redis-server']
|
services = services + ['redis-server']
|
||||||
@@ -313,7 +281,6 @@ class WOStackStatusController(CementBaseController):
|
|||||||
if not (self.app.pargs.nginx or self.app.pargs.php or
|
if not (self.app.pargs.nginx or self.app.pargs.php or
|
||||||
self.app.pargs.php73 or
|
self.app.pargs.php73 or
|
||||||
self.app.pargs.mysql or
|
self.app.pargs.mysql or
|
||||||
self.app.pargs.memcached or
|
|
||||||
self.app.pargs.redis or
|
self.app.pargs.redis or
|
||||||
self.app.pargs.fail2ban):
|
self.app.pargs.fail2ban):
|
||||||
self.app.pargs.nginx = True
|
self.app.pargs.nginx = True
|
||||||
@@ -357,12 +324,6 @@ class WOStackStatusController(CementBaseController):
|
|||||||
Log.warn(self, "Remote MySQL found, "
|
Log.warn(self, "Remote MySQL found, "
|
||||||
"Unable to check MySQL service status")
|
"Unable to check MySQL service status")
|
||||||
|
|
||||||
if self.app.pargs.memcached:
|
|
||||||
if WOAptGet.is_installed(self, 'memcached'):
|
|
||||||
services = services + ['memcached']
|
|
||||||
else:
|
|
||||||
Log.info(self, "Memcached is not installed")
|
|
||||||
|
|
||||||
if self.app.pargs.redis:
|
if self.app.pargs.redis:
|
||||||
if WOAptGet.is_installed(self, 'redis-server'):
|
if WOAptGet.is_installed(self, 'redis-server'):
|
||||||
services = services + ['redis-server']
|
services = services + ['redis-server']
|
||||||
|
|||||||
Reference in New Issue
Block a user