update changelog

This commit is contained in:
VirtuBox
2019-09-06 16:25:56 +02:00
parent 80df8b7e2f
commit d16f7efb3b
2 changed files with 15 additions and 0 deletions

View File

@@ -8,6 +8,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### v3.9.x - [Unreleased]
### v3.9.8.11 - 2019-09-06
#### Changed
- Improved general logs display

View File

@@ -1738,3 +1738,16 @@ def archivedCertificateHandle(self, domain):
.format(domain))
return ssl
def setuprocketchat(self):
if ((not WOVariables.wo_platform_codename == 'bionic') and
(not WOVariables.wo_platform_codename == 'xenial')):
Log.info(self, "Rocket.chat is only available on Ubuntu 16.04 "
"& 18.04 LTS")
return False
else:
if not WOAptGet.is_installed(self, 'snapd'):
WOAptGet.install(self, ["snapd"])
if WOShellExec.cmd_exec(self, "snap install rocketchat-server"):
return True