Skip to content

Commit 6c6e06f

Browse files
committed
Fix vimbadmin installation issue
1 parent 288ccd8 commit 6c6e06f

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

ee/cli/plugins/stack.py

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2105,9 +2105,24 @@ def install(self, packages=[], apt_packages=[], disp_msg=True):
21052105
os.popen("hostname -f | tr -d '\n'").read())
21062106
Log.debug(self, "Setting apt_packages variable for mail")
21072107
apt_packages = apt_packages + EEVariables.ee_mail
2108-
packages = packages + [["https://github.com/opensolutions/"
2109-
"ViMbAdmin/archive/{0}.tar.gz"
2110-
.format(EEVariables.ee_vimbadmin),
2108+
2109+
#Backup before changing repo to private
2110+
# packages = packages + [["https://github.com/opensolutions/"
2111+
# "ViMbAdmin/archive/{0}.tar.gz"
2112+
# .format(EEVariables.ee_vimbadmin),
2113+
# "/tmp/vimbadmin.tar.gz",
2114+
# "ViMbAdmin"],
2115+
# ["https://github.com/roundcube/"
2116+
# "roundcubemail/releases/download/"
2117+
# "{0}/roundcubemail-{0}.tar.gz"
2118+
# .format(EEVariables.ee_roundcube),
2119+
# "/tmp/roundcube.tar.gz",
2120+
# "Roundcube"]]
2121+
2122+
2123+
#https://github.com/iam404/ViMbAdmin/archive/3.0.13.tar.gz
2124+
packages = packages + [["https://github.com/iam404/"
2125+
"ViMbAdmin/archive/3.0.13.tar.gz",
21112126
"/tmp/vimbadmin.tar.gz",
21122127
"ViMbAdmin"],
21132128
["https://github.com/roundcube/"

0 commit comments

Comments
 (0)