added sturcture for updates
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -ex
|
||||
|
||||
cd /home/free/Downloads
|
||||
|
||||
wget "https://git.sovransystems.com/Sovran_Systems/test.sh"
|
||||
|
||||
bash /home/free/Downloads/test.sh
|
||||
|
||||
rm -rf /home/free/Downloads/test.sh
|
||||
|
||||
exit 0
|
60
file_fixes_and_new_services/test.sh
Normal file
60
file_fixes_and_new_services/test.sh
Normal file
@ -0,0 +1,60 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
exec 1> /var/lib/beacons/awesome.log 2>&1
|
||||
set -x
|
||||
|
||||
|
||||
#### CHECK TO SEE IF IT HAS BEEN RUN BEFORE ####
|
||||
|
||||
FILE=/var/lib/beacons/file_fixes_and_new_services/jitsi/started
|
||||
|
||||
if [ -e $FILE ]; then
|
||||
|
||||
echo "File Found, No Need to Run ... exiting"
|
||||
|
||||
exit 1
|
||||
|
||||
fi
|
||||
|
||||
|
||||
#### CREATE INITIAL TAG ####
|
||||
|
||||
mkdir -p /var/lib/beacons/file_fixes_and_new_services/jitsi ; touch /var/lib/beacons/file_fixes_and_new_services/jitsi/started
|
||||
|
||||
if [[ $? != 0 ]]; then
|
||||
|
||||
echo "Could Not Create Initial Tag"
|
||||
|
||||
exit 1
|
||||
|
||||
fi
|
||||
|
||||
|
||||
#### MAIN SCRIPT ####
|
||||
|
||||
mkdir /var/lib/cool
|
||||
|
||||
if [[ $? != 0 ]]; then
|
||||
|
||||
echo "Could Not Create Cool"
|
||||
|
||||
exit 1
|
||||
|
||||
fi
|
||||
|
||||
|
||||
|
||||
#### CREATE COMPELETE TAG ####
|
||||
|
||||
touch /var/lib/beacons/file_fixes_and_new_services/jitsi/completed
|
||||
|
||||
if [[ $? != 0 ]]; then
|
||||
|
||||
echo "Could Not Create Completed Tag"
|
||||
|
||||
exit 1
|
||||
|
||||
fi
|
||||
|
||||
|
||||
exit 0
|
Reference in New Issue
Block a user