refactor: move notify.sh
script to /var/tools/container-expire-notifs
This commit is contained in:
parent
aee262aacc
commit
b495eb0c69
@ -13,7 +13,10 @@ if [[ hello -ne 200 ]]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo $API_KEY > .api-key
|
||||
mkdir /var/tools/container-expire-notifs
|
||||
cp /root/container-expire-notifs/notify.sh /var/tools/container-expire-notifs/notify.sh
|
||||
|
||||
echo $API_KEY > /var/tools/container-expire-notifs/.api-key
|
||||
|
||||
[ ! which at ] && sudo apt install at
|
||||
|
||||
@ -22,7 +25,7 @@ date=$(curl -sH "x-ssh-auth: $API_KEY" $API_HOST/time | grep -o '"expireDate":"[
|
||||
[ if ! grep atd /start.sh ] sed -i -e 's/#s2lmain/atd/g' /start.sh
|
||||
atd
|
||||
|
||||
at -t $(date -d $date +'%Y%m%d%H%M') -f /root/container-expire-notifs/notify.sh
|
||||
at -t $(date -d $date +'%Y%m%d%H%M') -f /var/tools/container-expire-notifs/notify.sh
|
||||
|
||||
notif "Container expiration notifications brought back successfully!"
|
||||
notif "**WARNING**: If your container is off you may not receive the reminder"
|
||||
|
@ -4,4 +4,4 @@ API_KEY=$(cat .api-key)
|
||||
notif "Hello, your container at SSH.SURF has hit its expire date, if not extended before 6PM EST the container will be removed automatically. Use /extend to gain another 7 days."
|
||||
|
||||
date=$(curl -sH "x-ssh-auth: $API_KEY" $API_HOST/time | grep -o '"expireDate":"[^"]*' | grep -o '[^"]*$')
|
||||
at -t $(date -d $date +'%Y%m%d%H%M' -d "$end_date+7 days") -f /root/container-expire-notifs/notify.sh
|
||||
at -t $(date -d $date +'%Y%m%d%H%M' -d "$end_date+7 days") -f /var/tools/container-expire-notifs/notify.sh
|
||||
|
Loading…
Reference in New Issue
Block a user