From 81ce0f9e99e7a11202a907ba9773a424475fc101 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 28 Jun 2019 09:06:29 +0200 Subject: lib/load-configuration: log each command to the database --- lib/load-configuration | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'lib/load-configuration') diff --git a/lib/load-configuration b/lib/load-configuration index f327550..e434b4b 100755 --- a/lib/load-configuration +++ b/lib/load-configuration @@ -198,3 +198,28 @@ if [ "${master_build_server_identity}" = "${work_dir}/.ssh/id_rsa" ] && \ mkdir -p "${master_build_server_identity%/*}" ssh-keygen -b4096 -f "${master_build_server_identity}" fi + +if ${i_am_the_master}; then + # shellcheck disable=SC2016 + { + printf 'INSERT INTO `command_log`(`command`,`parameters`,`shell`)' + printf ' VALUES (' + printf 'from_base64("%s"),' \ + "$( + printf '%s' "${0##*/}" | \ + base64 + )" + printf 'from_base64("%s"),' \ + "$( + printf '%s' "$*" | \ + base64 + )" + if tty -s; then + printf '1' + else + printf '0' + fi + printf ');\n' + } | \ + mysql_run_query 'unimportant' +fi -- cgit v1.2.3