fix: cron added along with procps to necessary packages

This commit is contained in:
2026-03-01 11:59:46 +01:00
parent 12e288da04
commit bbdb781bca
3 changed files with 9 additions and 4 deletions

View File

@@ -13,6 +13,13 @@ ENV_LIST=(
"GITHUB_AUTH_SECRET"
)
readonly REQ=(
"curl"
"docker"
"crontab"
"procps"
)
function check_root() {
if [[ $EUID -ne 0 ]]; then
log_error "The script needs to run as root."