update changelog
This commit is contained in:
@@ -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.x - [Unreleased]
|
||||||
|
|
||||||
|
### v3.9.8.11 - 2019-09-06
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- Improved general logs display
|
- Improved general logs display
|
||||||
|
|||||||
@@ -1738,3 +1738,16 @@ def archivedCertificateHandle(self, domain):
|
|||||||
.format(domain))
|
.format(domain))
|
||||||
|
|
||||||
return ssl
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user