2016-06-03 16:27:39 +03:00
#!/bin/bash
# Tech and Me - ©2016, https://www.techandme.se/
2016-09-29 22:37:18 +03:00
# Check for errors + debug code and abort if something isn't right
# 1 = ON
# 0 = OFF
DEBUG = 0
2016-06-03 16:27:39 +03:00
WWW_ROOT = /var/www
NCPATH = $WWW_ROOT /nextcloud
NCDATA = /var/ncdata
SCRIPTS = /var/scripts
PW_FILE = /var/mysql_password.txt # Keep in sync with nextcloud_install_production.sh
2016-10-13 15:04:25 +03:00
IFACE = $( lshw -c network | grep "logical name" | awk '{print $3; exit}' )
2016-06-03 16:27:39 +03:00
CLEARBOOT = $( dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e ` uname -r | cut -f1,2 -d"-" ` | grep -e [ 0-9] | xargs sudo apt-get -y purge)
PHPMYADMIN_CONF = "/etc/apache2/conf-available/phpmyadmin.conf"
2016-06-26 21:44:45 +03:00
GITHUB_REPO = "https://raw.githubusercontent.com/nextcloud/vm/master"
2016-06-13 22:21:42 +03:00
STATIC = "https://raw.githubusercontent.com/nextcloud/vm/master/static"
2016-08-25 14:36:52 +03:00
LETS_ENC = "https://raw.githubusercontent.com/nextcloud/vm/master/lets-encrypt"
2016-06-03 16:27:39 +03:00
UNIXUSER = ncadmin
UNIXPASS = nextcloud
2016-09-29 22:37:18 +03:00
# DEBUG mode
if [ $DEBUG -eq 1 ]
then
set -e
set -x
else
sleep 1
fi
2016-09-25 23:48:36 +03:00
# Check if root
if [ " $( whoami) " != "root" ]
then
echo
echo -e " \e[31mSorry, you are not root.\n\e[0mYou must type: \e[36msudo \e[0mbash $SCRIPTS /nextcloud-startup-script.sh "
echo
exit 1
2016-06-03 16:27:39 +03:00
fi
2016-11-15 14:14:51 +03:00
# Check network
echo "Testing if network is OK..."
sleep 2
service networking restart
wget -q --spider http://github.com
if [ $? -eq 0 ]
then
echo -e "\e[32mOnline!\e[0m"
else
2016-06-29 21:36:22 +03:00
echo "Setting correct interface..."
2016-06-07 22:10:10 +03:00
# Set correct interface
2016-06-26 21:44:45 +03:00
{ sed '/# The primary network interface/q' /etc/network/interfaces; printf 'auto %s\niface %s inet dhcp\n# This is an autoconfigured IPv6 interface\niface %s inet6 auto\n' " $IFACE " " $IFACE " " $IFACE " ; } > /etc/network/interfaces.new
mv /etc/network/interfaces.new /etc/network/interfaces
2016-06-07 22:10:10 +03:00
service networking restart
2016-11-15 14:14:51 +03:00
fi
2016-06-07 22:10:10 +03:00
2016-06-03 16:27:39 +03:00
# Check network
echo "Testing if network is OK..."
sleep 2
2016-11-15 14:14:51 +03:00
service networking restart
2016-09-25 23:48:36 +03:00
wget -q --spider http://github.com
if [ $? -eq 0 ]
then
echo -e "\e[32mOnline!\e[0m"
else
echo
echo "Network NOT OK. You must have a working Network connection to run this script."
echo "Please report this issue here: https://github.com/nextcloud/vm/issues/new"
exit 1
fi
2016-06-03 16:27:39 +03:00
2016-12-12 03:14:56 +03:00
# Get the best mirrors for Ubuntu based on location
echo "Locating the best mirrors..."
2016-12-12 03:56:04 +03:00
apt-select
sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup && \
sudo mv sources.list /etc/apt/
2016-12-12 03:14:56 +03:00
2016-06-07 22:10:10 +03:00
ADDRESS = $( hostname -I | cut -d ' ' -f 1)
2016-06-03 16:27:39 +03:00
echo "Getting scripts from GitHub to be able to run the first setup..."
2016-10-17 02:40:48 +03:00
# Get spreedme script
if [ -f $SCRIPTS /spreedme.sh ]
then
rm $SCRIPTS /spreedme.sh
wget -q $STATIC /spreedme.sh -P $SCRIPTS
else
wget -q $STATIC /spreedme.sh -P $SCRIPTS
fi
2016-09-25 23:48:36 +03:00
# Get script for temporary fixes
if [ -f $SCRIPTS /temporary.sh ]
then
rm $SCRIPTS /temporary-fix.sh
wget -q $STATIC /temporary-fix.sh -P $SCRIPTS
else
wget -q $STATIC /temporary-fix.sh -P $SCRIPTS
2016-06-29 21:36:22 +03:00
fi
2016-09-25 23:48:36 +03:00
# Get security script
if [ -f $SCRIPTS /security.sh ]
then
rm $SCRIPTS /security.sh
wget -q $STATIC /security.sh -P $SCRIPTS
else
wget -q $STATIC /security.sh -P $SCRIPTS
2016-06-07 03:23:20 +03:00
fi
2016-09-25 23:48:36 +03:00
# Get the latest nextcloud_update.sh
if [ -f $SCRIPTS /update.sh ]
then
rm $SCRIPTS /update.sh
wget -q $STATIC /update.sh -P $SCRIPTS
else
wget -q $STATIC /update.sh -P $SCRIPTS
2016-06-03 16:27:39 +03:00
fi
2016-09-25 23:48:36 +03:00
# phpMyadmin
if [ -f $SCRIPTS /phpmyadmin_install_ubuntu16.sh ]
then
rm $SCRIPTS /phpmyadmin_install_ubuntu16.sh
wget -q $STATIC /phpmyadmin_install_ubuntu16.sh -P $SCRIPTS
else
wget -q $STATIC /phpmyadmin_install_ubuntu16.sh -P $SCRIPTS
2016-06-03 16:27:39 +03:00
fi
2016-09-25 23:48:36 +03:00
# Update Config
if [ -f $SCRIPTS /update-config.php ]
then
rm $SCRIPTS /update-config.php
wget -q $STATIC /update-config.php -P $SCRIPTS
else
wget -q $STATIC /update-config.php -P $SCRIPTS
2016-06-03 16:27:39 +03:00
fi
2016-09-25 23:48:36 +03:00
# Activate SSL
if [ -f $SCRIPTS /activate-ssl.sh ]
then
rm $SCRIPTS /activate-ssl.sh
wget -q $LETS_ENC /activate-ssl.sh -P $SCRIPTS
else
wget -q $LETS_ENC /activate-ssl.sh -P $SCRIPTS
2016-06-03 16:27:39 +03:00
fi
2016-09-25 23:48:36 +03:00
# The update script
if [ -f $SCRIPTS /nextcloud_update.sh ]
then
rm $SCRIPTS /nextcloud_update.sh
wget -q $GITHUB_REPO /nextcloud_update.sh -P $SCRIPTS
else
wget -q $GITHUB_REPO /nextcloud_update.sh -P $SCRIPTS
fi
# Sets trusted domain in when nextcloud-startup-script.sh is finished
if [ -f $SCRIPTS /trusted.sh ]
then
rm $SCRIPTS /trusted.sh
wget -q $STATIC /trusted.sh -P $SCRIPTS
else
wget -q $STATIC /trusted.sh -P $SCRIPTS
2016-06-03 16:27:39 +03:00
fi
2016-09-25 23:48:36 +03:00
# Sets static IP to UNIX
if [ -f $SCRIPTS /ip.sh ]
then
rm $SCRIPTS /ip.sh
wget -q $STATIC /ip.sh -P $SCRIPTS
else
wget -q $STATIC /ip.sh -P $SCRIPTS
2016-06-03 16:27:39 +03:00
fi
2016-09-25 23:48:36 +03:00
# Tests connection after static IP is set
if [ -f $SCRIPTS /test_connection.sh ]
then
rm $SCRIPTS /test_connection.sh
wget -q $STATIC /test_connection.sh -P $SCRIPTS
else
wget -q $STATIC /test_connection.sh -P $SCRIPTS
2016-06-03 16:27:39 +03:00
fi
2016-09-25 23:48:36 +03:00
# Sets secure permissions after upgrade
if [ -f $SCRIPTS /setup_secure_permissions_nextcloud.sh ]
then
rm $SCRIPTS /setup_secure_permissions_nextcloud.sh
wget -q $STATIC /setup_secure_permissions_nextcloud.sh -P $SCRIPTS
else
wget -q $STATIC /setup_secure_permissions_nextcloud.sh -P $SCRIPTS
2016-06-03 16:27:39 +03:00
fi
2016-09-25 23:48:36 +03:00
# Change MySQL password
if [ -f $SCRIPTS /change_mysql_pass.sh ]
then
rm $SCRIPTS /change_mysql_pass.sh
wget -q $STATIC /change_mysql_pass.sh
else
wget -q $STATIC /change_mysql_pass.sh -P $SCRIPTS
2016-06-03 16:27:39 +03:00
fi
2016-09-25 23:48:36 +03:00
# Get figlet Tech and Me
if [ -f $SCRIPTS /nextcloud.sh ]
then
rm $SCRIPTS /nextcloud.sh
wget -q $STATIC /nextcloud.sh -P $SCRIPTS
else
wget -q $STATIC /nextcloud.sh -P $SCRIPTS
2016-06-03 16:27:39 +03:00
fi
2016-09-25 23:48:36 +03:00
# Get the Welcome Screen when http://$address
if [ -f $SCRIPTS /index.php ]
then
rm $SCRIPTS /index.php
wget -q $GITHUB_REPO /index.php -P $SCRIPTS
else
wget -q $GITHUB_REPO /index.php -P $SCRIPTS
2016-06-03 16:27:39 +03:00
fi
2016-09-25 23:48:36 +03:00
mv $SCRIPTS /index.php $WWW_ROOT /index.php && rm -f $WWW_ROOT /html/index.html
chmod 750 $WWW_ROOT /index.php && chown www-data:www-data $WWW_ROOT /index.php
# Change 000-default to $WEB_ROOT
sed -i " s|DocumentRoot /var/www/html|DocumentRoot $WWW_ROOT |g " /etc/apache2/sites-available/000-default.conf
2016-06-03 16:27:39 +03:00
# Make $SCRIPTS excutable
chmod +x -R $SCRIPTS
chown root:root -R $SCRIPTS
# Allow $UNIXUSER to run figlet script
chown $UNIXUSER :$UNIXUSER $SCRIPTS /nextcloud.sh
clear
echo "+--------------------------------------------------------------------+"
2016-06-26 21:44:45 +03:00
echo "| This script will configure your Nextcloud and activate SSL. |"
2016-06-03 16:27:39 +03:00
echo "| It will also do the following: |"
echo "| |"
echo "| - Generate new SSH keys for the server |"
echo "| - Generate new MySQL password |"
echo "| - Install phpMyadmin and make it secure |"
echo "| - Upgrade your system to latest version |"
2016-06-26 21:44:45 +03:00
echo "| - Set secure permissions to Nextcloud |"
echo "| - Set new passwords to Ubuntu Server and Nextcloud |"
2016-06-03 16:27:39 +03:00
echo "| - Set new keyboard layout |"
echo "| - Change timezone |"
echo "| - Set static IP to the system (you have to set the same IP in |"
echo "| your router) https://www.techandme.se/open-port-80-443/ |"
echo "| |"
echo "| The script will take about 10 minutes to finish, |"
echo "| depending on your internet connection. |"
echo "| |"
echo "| ####################### Tech and Me - 2016 ####################### |"
echo "+--------------------------------------------------------------------+"
echo -e "\e[32m"
read -p "Press any key to start the script..." -n1 -s
clear
echo -e "\e[0m"
2016-09-26 18:35:29 +03:00
# Set keyboard layout
echo "Current keyboard layout is Swedish"
echo "You must change keyboard layout to your language"
echo -e "\e[32m"
read -p "Press any key to change keyboard layout... " -n1 -s
echo -e "\e[0m"
dpkg-reconfigure keyboard-configuration
echo
clear
2016-06-03 16:27:39 +03:00
# Change IP
echo -e "\e[0m"
echo "The script will now configure your IP to be static."
echo -e "\e[36m"
echo -e "\e[1m"
echo " Your internal IP is: $ADDRESS "
echo -e "\e[0m"
echo -e "Write this down, you will need it to set static IP"
echo -e "in your router later. It's included in this guide:"
echo -e "https://www.techandme.se/open-port-80-443/ (step 1 - 5)"
2016-12-02 18:21:32 +03:00
echo -e
2016-11-15 14:14:51 +03:00
echo -e "Please note that we will backup the interfaces file to:"
echo -e "/etc/network/interfaces.backup"
2016-12-02 18:21:32 +03:00
echo -e "If you run this script on a remote VPS the IP is probably wrong. "
echo -e "But no worries - we will restore the interfaces.backup in the end of this script."
2016-06-03 16:27:39 +03:00
echo -e "\e[32m"
read -p "Press any key to set static IP..." -n1 -s
2016-11-15 14:14:51 +03:00
cp /etc/network/interfaces /etc/network/interfaces.backup
2016-06-03 16:27:39 +03:00
clear
echo -e "\e[0m"
ifdown $IFACE
sleep 2
ifup $IFACE
sleep 2
bash $SCRIPTS /ip.sh
ifdown $IFACE
sleep 2
ifup $IFACE
sleep 2
echo
echo "Testing if network is OK..."
sleep 1
echo
bash $SCRIPTS /test_connection.sh
sleep 2
echo
echo -e "\e[0mIf the output is \e[32mConnected! \o/\e[0m everything is working."
echo -e "\e[0mIf the output is \e[31mNot Connected!\e[0m you should change\nyour settings manually in the next step."
echo -e "\e[32m"
read -p "Press any key to open /etc/network/interfaces..." -n1 -s
echo -e "\e[0m"
nano /etc/network/interfaces
2016-09-26 20:36:30 +03:00
service networking restart
2016-06-03 16:27:39 +03:00
clear
echo "Testing if network is OK..."
ifdown $IFACE
sleep 2
ifup $IFACE
sleep 2
echo
bash $SCRIPTS /test_connection.sh
sleep 2
clear
2016-09-29 21:44:12 +03:00
# Pretty URLs
echo "Setting RewriteBase to " /" in config.php..."
chown www-data:www-data $NCPATH /config/config.php
sudo -u www-data php $NCPATH /occ config:system:set htaccess.RewriteBase --value= "/"
sudo -u www-data php $NCPATH /occ maintenance:update:htaccess
2016-11-01 22:42:24 +03:00
# Generate new SSH Keys
2016-06-03 16:27:39 +03:00
echo
2016-11-01 22:42:24 +03:00
echo "Generating new SSH keys for the server..."
2016-06-03 16:27:39 +03:00
sleep 1
rm -v /etc/ssh/ssh_host_*
dpkg-reconfigure openssh-server
# Generate new MySQL password
echo
bash $SCRIPTS /change_mysql_pass.sh
rm $SCRIPTS /change_mysql_pass.sh
# Install phpMyadmin
2016-11-01 22:42:24 +03:00
echo
2016-06-03 16:27:39 +03:00
bash $SCRIPTS /phpmyadmin_install_ubuntu16.sh
rm $SCRIPTS /phpmyadmin_install_ubuntu16.sh
clear
2016-10-27 14:14:47 +03:00
# Install SpreedMe
function ask_yes_or_no( ) {
read -p " $1 ([y]es or [N]o): "
case $( echo $REPLY | tr '[A-Z]' '[a-z]' ) in
y| yes) echo "yes" ; ;
*) echo "no" ; ;
esac
}
if [ [ "yes" = = $( ask_yes_or_no "Do you want to install SpreedMe?" ) ] ]
then
bash $SCRIPTS /spreedme.sh
rm $SCRIPTS /spreedme.sh
else
echo
echo " OK, but if you want to run it later, just type: sudo bash $SCRIPTS /spreedme.sh "
echo -e "\e[32m"
read -p "Press any key to continue... " -n1 -s
echo -e "\e[0m"
fi
clear
2016-06-29 21:36:22 +03:00
# Add extra security
function ask_yes_or_no( ) {
read -p " $1 ([y]es or [N]o): "
case $( echo $REPLY | tr '[A-Z]' '[a-z]' ) in
y| yes) echo "yes" ; ;
*) echo "no" ; ;
esac
}
if [ [ "yes" = = $( ask_yes_or_no "Do you want to add extra security, based on this: http://goo.gl/gEJHi7 ?" ) ] ]
then
2016-09-25 23:48:36 +03:00
bash $SCRIPTS /security.sh
rm $SCRIPTS /security.sh
2016-06-29 21:36:22 +03:00
else
2016-09-25 23:48:36 +03:00
echo
2016-06-29 21:36:22 +03:00
echo " OK, but if you want to run it later, just type: sudo bash $SCRIPTS /security.sh "
echo -e "\e[32m"
read -p "Press any key to continue... " -n1 -s
echo -e "\e[0m"
fi
2016-06-30 20:33:07 +03:00
clear
2016-06-29 21:36:22 +03:00
2016-06-03 16:27:39 +03:00
# Change Timezone
echo "Current timezone is Europe/Stockholm"
echo "You must change timezone to your timezone"
echo -e "\e[32m"
read -p "Press any key to change timezone... " -n1 -s
echo -e "\e[0m"
dpkg-reconfigure tzdata
echo
sleep 3
clear
if [ " $UNIXUSER " = "ncadmin" ]
then
2016-09-25 23:48:36 +03:00
# Change password
echo -e "\e[0m"
echo " For better security, change the Linux password for [ $UNIXUSER ] "
echo " The current password is [ $UNIXPASS ] "
echo -e "\e[32m"
read -p "Press any key to change password for Linux... " -n1 -s
echo -e "\e[0m"
2016-06-03 16:27:39 +03:00
sudo passwd $UNIXUSER
2016-09-25 23:48:36 +03:00
if [ [ $? > 0 ] ]
then
sudo passwd $UNIXUSER
else
sleep 2
fi
echo
clear
2016-06-03 16:27:39 +03:00
2016-09-25 23:48:36 +03:00
echo -e "\e[0m"
echo " For better security, change the Nextcloud password for [ $UNIXUSER ] "
echo " The current password is [ $UNIXPASS ] "
echo -e "\e[32m"
read -p "Press any key to change password for Nextcloud... " -n1 -s
echo -e "\e[0m"
2016-06-03 16:27:39 +03:00
sudo -u www-data php $NCPATH /occ user:resetpassword $UNIXUSER
2016-09-25 23:48:36 +03:00
if [ [ $? > 0 ] ]
then
sudo -u www-data php $NCPATH /occ user:resetpassword $UNIXUSER
else
sleep 2
fi
clear
2016-06-03 16:27:39 +03:00
else
2016-09-25 23:48:36 +03:00
echo "Not changing password as you already changed <user> and <pass> in the script"
2016-06-03 16:27:39 +03:00
fi
# Upgrade system
2016-10-27 17:17:33 +03:00
echo "System will now upgrade..."
2016-06-03 16:27:39 +03:00
sleep 2
echo
2016-10-27 17:17:33 +03:00
bash $SCRIPTS /update.sh
2016-06-03 16:27:39 +03:00
2016-09-26 19:41:39 +03:00
# Increase max filesize (expects that changes are made in /etc/php/7.0/apache2/php.ini)
# Here is a guide: https://www.techandme.se/increase-max-file-size/
VALUE = "# php_value upload_max_filesize 513M"
if grep -Fxq " $VALUE " $NCPATH /.htaccess
then
echo "Value correct"
else
sed -i 's/ php_value upload_max_filesize 513M/# php_value upload_max_filesize 513M/g' $NCPATH /.htaccess
sed -i 's/ php_value post_max_size 513M/# php_value post_max_size 513M/g' $NCPATH /.htaccess
sed -i 's/ php_value memory_limit 512M/# php_value memory_limit 512M/g' $NCPATH /.htaccess
fi
2016-07-01 01:45:39 +03:00
# Add temporary fix if needed
bash $SCRIPTS /temporary-fix.sh
rm $SCRIPTS /temporary-fix.sh
2016-06-03 16:27:39 +03:00
# Cleanup 1
apt-get autoremove -y
apt-get autoclean
echo " $CLEARBOOT "
clear
# Cleanup 2
sudo -u www-data php $NCPATH /occ maintenance:repair
rm $SCRIPTS /ip.sh
rm $SCRIPTS /test_connection.sh
rm $SCRIPTS /instruction.sh
rm $NCDATA /nextcloud.log
rm $SCRIPTS /nextcloud-startup-script.sh
sed -i "s|instruction.sh|nextcloud.sh|g" /home/$UNIXUSER /.bash_profile
cat /dev/null > ~/.bash_history
cat /dev/null > /var/spool/mail/root
cat /dev/null > /var/spool/mail/$UNIXUSER
cat /dev/null > /var/log/apache2/access.log
cat /dev/null > /var/log/apache2/error.log
cat /dev/null > /var/log/cronjobs_success.log
sed -i "s|sudo -i||g" /home/$UNIXUSER /.bash_profile
cat /dev/null > /etc/rc.local
2016-06-26 21:44:45 +03:00
cat << RCLOCAL > "/etc/rc.local"
2016-06-03 16:27:39 +03:00
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
exit 0
2016-06-26 21:44:45 +03:00
RCLOCAL
2016-06-03 16:27:39 +03:00
2016-12-02 18:21:32 +03:00
ADDRESS2 = $( grep "address" /etc/network/interfaces | awk '$1 == "address" { print $2 }' )
# Success!
2016-12-02 19:06:52 +03:00
clear
2016-12-02 18:21:32 +03:00
echo -e "\e[32m"
echo "+--------------------------------------------------------------------+"
echo "| Congratulations! You have successfully installed Nextcloud! |"
echo "| |"
echo -e "| \e[0mLogin to Nextcloud in your browser:\e[36m" $ADDRESS2 "\e[32m |"
echo "| |"
echo -e "| \e[0mPublish your server online! \e[36mhttps://goo.gl/iUGE2U\e[32m |"
echo "| |"
echo -e " | \e[0mYour MySQL password is stored in: \e[36m $PW_FILE \e[32m | "
echo "| |"
echo -e "| \e[91m#################### Tech and Me - 2016 ####################\e[32m |"
echo "+--------------------------------------------------------------------+"
echo
2016-12-12 02:15:18 +03:00
echo -e "\e[0m"
2016-12-02 18:21:32 +03:00
# VPS?
function ask_yes_or_no( ) {
read -p " $1 ([y]es or [N]o): "
case $( echo $REPLY | tr '[A-Z]' '[a-z]' ) in
y| yes) echo "yes" ; ;
*) echo "no" ; ;
esac
}
if [ [ "yes" = = $( ask_yes_or_no "Do you run this on a *remote* VPS?" ) ] ]
then
echo "Ok, then your IP are probably wrong, we will use the backup file to recover it so that you can connect after reboot"
echo -e "\e[32m"
read -p "Press any key to continue... " -n1 -s
echo -e "\e[0m"
mv /etc/network/interfaces.backup /etc/network/interfaces
else
sleep 1
fi
2016-06-03 16:27:39 +03:00
clear
echo
echo
2016-12-12 02:15:18 +03:00
2016-06-03 16:27:39 +03:00
cat << LETSENC
+-----------------------------------------------+
| Ok, now the last part - a proper SSL cert. |
| |
| The following script will install a trusted |
| SSL certificate through Let' s Encrypt. |
+-----------------------------------------------+
LETSENC
# Let's Encrypt
function ask_yes_or_no( ) {
read -p " $1 ([y]es or [N]o): "
case $( echo $REPLY | tr '[A-Z]' '[a-z]' ) in
y| yes) echo "yes" ; ;
*) echo "no" ; ;
esac
}
if [ [ "yes" = = $( ask_yes_or_no "Do you want to install SSL?" ) ] ]
then
2016-09-25 23:48:36 +03:00
bash $SCRIPTS /activate-ssl.sh
2016-06-03 16:27:39 +03:00
else
2016-09-25 23:48:36 +03:00
echo
2016-06-03 16:27:39 +03:00
echo " OK, but if you want to run it later, just type: sudo bash $SCRIPTS /activate-ssl.sh "
echo -e "\e[32m"
read -p "Press any key to continue... " -n1 -s
echo -e "\e[0m"
fi
2016-12-02 18:23:35 +03:00
# Change Trusted Domain and CLI
bash $SCRIPTS /trusted.sh
rm $SCRIPTS /trusted.sh
2016-12-02 19:05:20 +03:00
rm $SCRIPTS /update-config.php
2016-12-02 18:23:35 +03:00
2016-06-03 16:27:39 +03:00
# Reboot
reboot
exit 0