Skip to content

Commit e987051

Browse files
committed
bug fix: dovecot for cent8
1 parent ce871a2 commit e987051

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

plogical/upgrade.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1729,6 +1729,13 @@ def upgradeDovecot():
17291729
command = "yum update -y"
17301730
Upgrade.executioner(command, 0)
17311731

1732+
if Upgrade.decideCentosVersion() == CENTOS8:
1733+
command = 'dnf remove dovecot23 dovecot23-mysql -y'
1734+
Upgrade.executioner(command, 0)
1735+
1736+
command = 'dnf install --enablerepo=gf-plus dovecot23 dovecot23-mysql -y'
1737+
Upgrade.executioner(command, 0)
1738+
17321739
## Remove Default Password Scheme
17331740

17341741
path = '/etc/dovecot/dovecot-sql.conf.ext'

0 commit comments

Comments
 (0)