Change import in stack_pref.py

This commit is contained in:
VirtuBox
2019-08-29 20:24:41 +02:00
parent ebc05a7a64
commit c117a80c1e
2 changed files with 6 additions and 10 deletions

View File

@@ -92,7 +92,7 @@ class WOStackController(CementBaseController):
(['--utils'],
dict(help='Install Utils stack', action='store_true')),
(['--cheat'],
dict(help='Install cht.sh stack', action='store_true')),
dict(help='Install cheat.sh stack', action='store_true')),
(['--redis'],
dict(help='Install Redis', action='store_true')),
(['--phpredisadmin'],
@@ -459,15 +459,11 @@ class WOStackController(CementBaseController):
'/var/lib/wo/tmp/anemometer.tar.gz',
'Anemometer']]
if pargs.cheat:
if ((not os.path.isfile('/usr/local/bin/cht.sh')) and
(not os.path.isfile('/usr/bin/cht.sh'))):
if not os.path.isfile('/usr/local/bin/cht.sh'):
Log.debug(self, "Setting packages variable for cht.sh")
WOShellExec.cmd_exec(
self, "/usr/bin/curl https://cht.sh/:cht.sh "
"| sudo tee /usr/local/bin/cht.sh")
WOShellExec(self, "/usr/bin/curl "
"https://cheat.sh/:bash_completion | "
"sudo tee /etc/bash_completion.d/cht.sh")
packages = packages + [["https://cht.sh/:cht.sh",
"/usr/local/bin/cht.sh",
"cheat.sh"]]
else:
Log.debug(self, "cheat.sh is already installed")
Log.info(self, "cheat.sh is already installed")

View File

@@ -7,7 +7,7 @@ import string
import psutil
import requests
from wo.cli.plugins.site_functions import *
from wo.cli.plugins.site_functions import SiteError
from wo.cli.plugins.stack_services import WOStackStatusController
from wo.core.apt_repo import WORepo
from wo.core.aptget import WOAptGet