index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2018-06-21 15:46:00 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-06-21 15:46:00 +0200 |
commit | 95257cf93eb1c21fd70023913c226636f4e467bb (patch) | |
tree | 25dc06bdcb2e8a6b72f82f21c9040ea10db32bb6 /lib | |
parent | e93ab1f0ed0ef76624a3d44d828b58149d1322da (diff) |
-rwxr-xr-x | lib/load-configuration | 7 |
diff --git a/lib/load-configuration b/lib/load-configuration index 80b8de4..7a6a4f3 100755 --- a/lib/load-configuration +++ b/lib/load-configuration @@ -22,10 +22,13 @@ work_dir="${base_dir}/work" # if mysqld is not running, we're either on a build slave and don't need # lib/mysql-functions or we're on the build master and something is wrong # anyway -if [ "$(hostname)" = 'buildmaster.archlinux32.org' ]; then - i_am_the_master=true +if pgrep -x mysqld >/dev/null 2>&1; then # shellcheck source=../lib/mysql-functions . "${base_dir}/lib/mysql-functions" +fi + +if [ "$(hostname)" = 'buildmaster.archlinux32.org' ]; then + i_am_the_master=true else i_am_the_master=false |