added script to make directories
This commit is contained in:
@@ -56,6 +56,14 @@ rm -rf /home/free/Downloads/add_external_backup_app.sh
|
||||
|
||||
rm -rf /home/free/Downloads/update-agenix.sh
|
||||
|
||||
#### SCRIPT 7 ####
|
||||
|
||||
/run/current-system/sw/bin/wget "https://git.sovransystems.com/Sovran_Systems/Sovran_SystemsOS/raw/branch/main/file_fixes_and_new_services/element-calling_haven"
|
||||
|
||||
/run/current-system/sw/bin/bash /home/free/Downloads/element-calling_haven.sh
|
||||
|
||||
rm -rf /home/free/Downloads/element-calling_haven.sh
|
||||
|
||||
|
||||
#### REMOVAL OF MAIN SCRIPT ####
|
||||
|
||||
|
||||
63
file_fixes_and_new_services/element-calling_haven.sh
Normal file
63
file_fixes_and_new_services/element-calling_haven.sh
Normal file
@@ -0,0 +1,63 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
function log_console () {
|
||||
echo "`date` :: $1" >> /var/lib/beacons/awesome.log
|
||||
echo $1
|
||||
}
|
||||
|
||||
|
||||
#### CHECK TO SEE IF IT HAS BEEN RUN BEFORE ####
|
||||
|
||||
FILE=/var/lib/beacons/file_fixes_and_new_services/element-calling_haven/completed
|
||||
|
||||
if [ -e $FILE ]; then
|
||||
|
||||
/run/current-system/sw/bin/echo "File Found :), No Need to Run ... Exiting"
|
||||
|
||||
exit 1
|
||||
|
||||
fi
|
||||
|
||||
|
||||
#### CREATE INITIAL TAG ####
|
||||
|
||||
/run/current-system/sw/bin/mkdir -p /var/lib/beacons/file_fixes_and_new_services/element-calling_haven ; touch /var/lib/beacons/file_fixes_and_new_services/element-calling_haven/started
|
||||
|
||||
if [[ $? != 0 ]]; then
|
||||
|
||||
/run/current-system/sw/bin/echo "Could Not Create Initial Tag"
|
||||
|
||||
exit 1
|
||||
|
||||
fi
|
||||
|
||||
|
||||
#### MAIN SCRIPT ####
|
||||
|
||||
touch /var/lib/domains/haven
|
||||
touch /var/lib/domains/element-calling
|
||||
|
||||
if [[ $? != 0 ]]; then
|
||||
|
||||
/run/current-system/sw/bin/echo "Could Not Run element-calling_haven"
|
||||
|
||||
exit 1
|
||||
|
||||
fi
|
||||
|
||||
|
||||
|
||||
#### CREATE COMPELETE TAG ####
|
||||
|
||||
/run/current-system/sw/bin/touch /var/lib/beacons/file_fixes_and_new_services/element-calling_haven/completed
|
||||
|
||||
if [[ $? != 0 ]]; then
|
||||
|
||||
/run/current-system/sw/bin/echo "Could Not Create Completed Tag"
|
||||
|
||||
exit 1
|
||||
|
||||
fi
|
||||
|
||||
|
||||
exit 0
|
||||
Reference in New Issue
Block a user