Add non interactive install and fix release number

This commit is contained in:
VirtuBox
2019-06-16 21:13:58 +02:00
parent fd270187b6
commit fef6ffc582
4 changed files with 50 additions and 21 deletions

View File

@@ -19,15 +19,27 @@ class WOUpdateController(CementBaseController):
aliases_only = True
stacked_type = 'nested'
description = ('update WordOps to latest version')
usage = "wo update"
arguments = [
(['--force'],
dict(help='Force WordOps update', action='store_true')),
]
usage = "wo update [options]"
@expose(hide=True)
def default(self):
if (not (self.app.pargs.force)):
self.update_wordops
if (self.app.pargs.force):
self.force_update_wordops
filename = "woupdate" + time.strftime("%Y%m%d-%H%M%S")
WODownload.download(self, [["https://raw.githubusercontent.com/"
"WordOps/WordOps/master/install",
"/tmp/{0}".format(filename),
"update script"]])
@expose(hide=True)
def update_wordops(self):
try:
Log.info(self, "updating WordOps, please wait...")
os.system("bash /tmp/{0}".format(filename))
@@ -38,6 +50,18 @@ class WOUpdateController(CementBaseController):
Log.debug(self, str(e))
Log.error(self, "WordOps update failed !")
@expose(hide=True)
def force_update_wordops(self):
try:
Log.info(self, "updating WordOps, please wait...")
os.system("bash /tmp/{0} --force".format(filename))
except OSError as e:
Log.debug(self, str(e))
Log.error(self, "WordOps update failed !")
except Exception as e:
Log.debug(self, str(e))
Log.error(self, "WordOps update failed !")
def load(app):
# register the plugin class.. this only happens if the plugin is enabled