Navigation Menu

Skip to content

Commit

Permalink
packages deb: fix install failure on trusty
Browse files Browse the repository at this point in the history
GitHub:#202, #205

Reported by Masato Hirai. Thanks!!!

I've fogot to commit. :-<
  • Loading branch information
kenhys committed May 9, 2018
1 parent 02d7333 commit c9f45b0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/debian-5.5/mysql-server-5.5-mroonga.postinst
Expand Up @@ -62,9 +62,9 @@ restart_server() {
systemctl restart mysql
fi
else
/sbin/service mysql status
service mysql status
if test $? -eq 0 ; then
/sbin/service mysql restart
service mysql restart
fi
fi
}
Expand Down
4 changes: 2 additions & 2 deletions packages/debian-5.6/mysql-server-5.6-mroonga.postinst
Expand Up @@ -62,9 +62,9 @@ restart_server() {
systemctl restart mysql
fi
else
/sbin/service mysql status
service mysql status
if test $? -eq 0 ; then
/sbin/service mysql restart
service mysql restart
fi
fi
}
Expand Down
4 changes: 2 additions & 2 deletions packages/debian-5.7/mysql-server-5.7-mroonga.postinst
Expand Up @@ -62,9 +62,9 @@ restart_server() {
systemctl restart mysql
fi
else
/sbin/service mysql status
service mysql status
if test $? -eq 0 ; then
/sbin/service mysql restart
service mysql restart
fi
fi
}
Expand Down

0 comments on commit c9f45b0

Please sign in to comment.