index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2018-03-23 20:18:01 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2018-03-23 20:18:01 +0100 |
commit | c30de005f885202f24929bd4e3d3f5c885efbc0a (patch) | |
tree | 44b512356b80d3adad6521ad74f38ff9271f6c0d /conf | |
parent | ff768f012bfef1bf264d06214aead70a58c0ff90 (diff) | |
parent | 497779257683e1c4ee2f2bf4c25687b34323c6be (diff) |
-rwxr-xr-x | conf/default.conf | 15 |
diff --git a/conf/default.conf b/conf/default.conf index 6ee991b..11483a0 100755 --- a/conf/default.conf +++ b/conf/default.conf @@ -14,13 +14,13 @@ else base_dir=$(printf '%s/..' "$(dirname "$(readlink -f "$0")")") fi -# shellcheck source=bin/common-functions -. "${base_dir}/bin/common-functions" -# shellcheck source=bin/mysql-functions -. "${base_dir}/bin/mysql-functions" - work_dir="${base_dir}/work" +# shellcheck source=lib/common-functions +. "${base_dir}/lib/common-functions" +# shellcheck source=lib/mysql-functions +. "${base_dir}/lib/mysql-functions" + repo_names='packages community archlinux32' repo_paths__packages="${work_dir}/repos/packages" repo_paths__community="${work_dir}/repos/community" @@ -35,7 +35,7 @@ repo_key='0xdeadbeef' package_key='0x15eebadc0de' # what can be done via the email interface -possible_email_actions='stabilize block unblock schedule' +possible_email_actions='stabilize block unblock schedule copy-to-build-support' # how many lines of email logs should be kept maximally max_mail_log_lines=10 @@ -133,9 +133,6 @@ if [ -z "${package_database_lock_file}" ]; then fi mkdir -p "${work_dir}" -touch "${work_dir}/build-list" -touch "${work_dir}/deletion-list" -mkdir -p "${work_dir}/build-list.loops" for repo in ${repo_names}; do |