Skip to content

Commit

Permalink
Merge branch '3.4' of https://github.com/Dolibarr/dolibarr.git into 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
FHenry committed Oct 30, 2013
2 parents ad2a8d3 + d6b2d44 commit 55046e2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions build/rpm/dolibarr_generic.spec
Expand Up @@ -464,7 +464,11 @@ echo Restart mysql server
/sbin/service mysqld restart
%else
%if 0%{?suse_version}
if [ -f /etc/init.d/mysqld ]; then
/etc/init.d/mysqld restart
else
/sbin/service mysql restart
fi
%else
if [ -f /etc/init.d/mysqld ]; then
/etc/init.d/mysqld restart
Expand Down
6 changes: 5 additions & 1 deletion build/rpm/dolibarr_opensuse.spec
Expand Up @@ -288,7 +288,11 @@ fi

# Restart mysql
echo Restart mysql
/sbin/service mysql restart
if [ -f /etc/init.d/mysqld ]; then
/etc/init.d/mysqld restart
else
/sbin/service mysql restart
fi

# Show result
echo
Expand Down

0 comments on commit 55046e2

Please sign in to comment.