Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/3.4' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Oct 29, 2013
2 parents 649124e + d6b2d44 commit 8045f60
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 8045f60

Please sign in to comment.