diff options
Diffstat (limited to 'lib/load-configuration')
-rwxr-xr-x | lib/load-configuration | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/load-configuration b/lib/load-configuration index 33a5742..80b8de4 100755 --- a/lib/load-configuration +++ b/lib/load-configuration @@ -22,7 +22,7 @@ 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 pgrep -x mysqld >/dev/null 2>&1; then +if [ "$(hostname)" = 'buildmaster.archlinux32.org' ]; then i_am_the_master=true # shellcheck source=../lib/mysql-functions . "${base_dir}/lib/mysql-functions" |