Prevent usb canary from being activated during upgrades

This commit is contained in:
Bob Mottram 2018-05-13 09:53:00 +01:00
parent 551ff38736
commit 924577a6f2
2 changed files with 21 additions and 8 deletions

View File

@ -61,6 +61,11 @@ if [ $DEVELOPMENT_BRANCH ]; then
fi fi
fi fi
# upgrading file prevents USB canary from activating
if [ ! -f /tmp/.upgrading ]; then
touch /tmp/.upgrading
fi
if [ -f /usr/bin/backupdatabases ]; then if [ -f /usr/bin/backupdatabases ]; then
if grep -q "cat /root/dbpass" /usr/bin/backupdatabases; then if grep -q "cat /root/dbpass" /usr/bin/backupdatabases; then
# update to using the password manager # update to using the password manager
@ -91,6 +96,7 @@ if [ -d "$PROJECT_DIR" ]; then
fi fi
if ! ${PROJECT_NAME} -c "$CONFIGURATION_FILE"; then if ! ${PROJECT_NAME} -c "$CONFIGURATION_FILE"; then
rm /tmp/.upgrading
exit 453536 exit 453536
fi fi
@ -118,4 +124,9 @@ fi
# If logging was left on then turn it off # If logging was left on then turn it off
${PROJECT_NAME}-logging off ${PROJECT_NAME}-logging off
# upgrading file prevents USB canary from activating
if [ -f /tmp/.upgrading ]; then
rm /tmp/.upgrading
fi
# deliberately there is no 'exit 0' here # deliberately there is no 'exit 0' here

View File

@ -28,12 +28,14 @@
PROJECT_NAME=freedombone PROJECT_NAME=freedombone
UPTIME=$(awk -F '.' '{print $1}' < "/proc/uptime") if [ ! -f /tmp/.upgrading ]; then
if [ "$UPTIME" -gt 240 ]; then UPTIME=$(awk -F '.' '{print $1}' < "/proc/uptime")
ADMIN_USER=$(grep 'Admin user' /root/${PROJECT_NAME}-completed.txt | awk -F ':' '{print $2}') if [ "$UPTIME" -gt 240 ]; then
MY_EMAIL_ADDRESS=${ADMIN_USER}@$(cat /etc/hostname) ADMIN_USER=$(grep 'Admin user' /root/${PROJECT_NAME}-completed.txt | awk -F ':' '{print $2}')
echo "USB device connected on ${DEVPATH}" | mail -s "${PROJECT_NAME} USB canary" "${MY_EMAIL_ADDRESS}" MY_EMAIL_ADDRESS=${ADMIN_USER}@$(cat /etc/hostname)
echo "${ACTION}" > /tmp/usb-canary echo "USB device connected on ${DEVPATH}" | mail -s "${PROJECT_NAME} USB canary" "${MY_EMAIL_ADDRESS}"
echo "${MY_EMAIL_ADDRESS}" >> /tmp/usb-canary echo "${ACTION}" > /tmp/usb-canary
date >> /tmp/usb-canary echo "${MY_EMAIL_ADDRESS}" >> /tmp/usb-canary
date >> /tmp/usb-canary
fi
fi fi