Add scripts to trigger actions in the poudriere loop.

This commit is contained in:
Tom Alexander
2023-09-04 11:26:28 -04:00
parent 8744f8f547
commit 7f0af6f41c
3 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
#
set -euo pipefail
IFS=$'\n\t'
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
function main {
find / -type f -name times -exec sed -iE 's/LASTBUILD=.*/LASTBUILD=0/' {} \;
}
main "${@}"