Skip to content

Commit

Permalink
bug fix: dovecot for cent8
Browse files Browse the repository at this point in the history
  • Loading branch information
usmannasir committed Jun 11, 2020
1 parent ce871a2 commit e987051
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions plogical/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -1729,6 +1729,13 @@ def upgradeDovecot():
command = "yum update -y"
Upgrade.executioner(command, 0)

if Upgrade.decideCentosVersion() == CENTOS8:
command = 'dnf remove dovecot23 dovecot23-mysql -y'
Upgrade.executioner(command, 0)

command = 'dnf install --enablerepo=gf-plus dovecot23 dovecot23-mysql -y'
Upgrade.executioner(command, 0)

## Remove Default Password Scheme

path = '/etc/dovecot/dovecot-sql.conf.ext'
Expand Down

0 comments on commit e987051

Please sign in to comment.