We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce871a2 commit e987051Copy full SHA for e987051
1 file changed
plogical/upgrade.py
@@ -1729,6 +1729,13 @@ def upgradeDovecot():
1729
command = "yum update -y"
1730
Upgrade.executioner(command, 0)
1731
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
1738
1739
## Remove Default Password Scheme
1740
1741
path = '/etc/dovecot/dovecot-sql.conf.ext'
0 commit comments