Skip to content

Fix typo on 'sogod' service restart instructions' #54

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions en_US/upgrade/0-upgrade.iredmail.1.7.1-1.7.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ database, and restart SOGO service:
```
perl -pi -e 's#PH_SOGO_DB_TABLE_ADMIN#sogo_admin#g' /etc/sogo/sogo.conf
mysql sogo -e "RENAME TABLE PH_SOGO_DB_TABLE_ADMIN TO sogo_admin;"
service sogo restart
service sogod restart
```

## For MariaDB backend
Expand Down Expand Up @@ -215,7 +215,7 @@ database, and restart SOGO service:
```
perl -pi -e 's#PH_SOGO_DB_TABLE_ADMIN#sogo_admin#g' /etc/sogo/sogo.conf
mysql sogo -e "RENAME TABLE PH_SOGO_DB_TABLE_ADMIN TO sogo_admin;"
service sogo restart
service sogod restart
```

## For PostgreSQL backend
Expand Down Expand Up @@ -258,5 +258,5 @@ Switch to PostgreSQL daemon user, rename the table in SQL database, and restart
```
su - postgres
psql -d sogo -c "ALTER TABLE PH_SOGO_DB_TABLE_ADMIN RENAME TO sogo_admin;"
service sogo restart
service sogod restart
```