2017-04-09 23:43:30 +03:00
#!/bin/bash
# shellcheck disable=2034,2059
true
# see https://github.com/koalaman/shellcheck/wiki/Directive
## variables
# Dirs
SCRIPTS = /var/scripts
NCPATH = /var/www/nextcloud
HTML = /var/www
NCDATA = /var/ncdata
SNAPDIR = /var/snap/spreedme
GPGDIR = /tmp/gpg
BACKUP = /var/NCBACKUP
# Ubuntu OS
DISTRO = $( lsb_release -sd | cut -d ' ' -f 2)
OS = $( grep -ic "Ubuntu" /etc/issue.net)
# Network
[ ! -z " $FIRST_IFACE " ] && IFACE = $( lshw -c network | grep "logical name" | awk '{print $3; exit}' )
IFACE2 = $( ip -o link show | awk '{print $2,$9}' | grep 'UP' | cut -d ':' -f 1)
[ ! -z " $CHECK_CURRENT_REPO " ] && REPO = $( apt-get update | grep -m 1 Hit | awk '{ print $2}' )
ADDRESS = $( hostname -I | cut -d ' ' -f 1)
WGET = "/usr/bin/wget"
# WANIP4=$(dig +short myip.opendns.com @resolver1.opendns.com) # as an alternative
WANIP4 = $( curl -s -m 5 ipinfo.io/ip)
[ ! -z " $LOAD_IP6 " ] && WANIP6 = $( curl -s -k -m 7 https://6.ifcfg.me)
IFCONFIG = "/sbin/ifconfig"
INTERFACES = "/etc/network/interfaces"
NETMASK = $( $IFCONFIG | grep -w inet | grep -v 127.0.0.1| awk '{print $4}' | cut -d ":" -f 2)
GATEWAY = $( route -n| grep "UG" | grep -v "UGH" | cut -f 10 -d " " )
# Repo
GITHUB_REPO = "https://raw.githubusercontent.com/nextcloud/vm/master"
STATIC = " $GITHUB_REPO /static "
LETS_ENC = " $GITHUB_REPO /lets-encrypt "
APP = " $GITHUB_REPO /apps "
NCREPO = "https://download.nextcloud.com/server/releases"
ISSUES = "https://github.com/nextcloud/vm/issues"
# User information
NCPASS = nextcloud
NCUSER = ncadmin
2018-02-07 23:16:35 +03:00
UNIXUSER = $SUDO_USER
2017-04-09 23:43:30 +03:00
UNIXUSER_PROFILE = " /home/ $UNIXUSER /.bash_profile "
ROOT_PROFILE = "/root/.bash_profile"
2017-06-20 22:52:25 +03:00
# MARIADB
2017-04-09 23:43:30 +03:00
SHUF = $( shuf -i 25-29 -n 1)
2017-06-20 22:52:25 +03:00
MARIADB_PASS = $( tr -dc "a-zA-Z0-9@#*=" < /dev/urandom | fold -w " $SHUF " | head -n 1)
NEWMARIADBPASS = $( tr -dc "a-zA-Z0-9@#*=" < /dev/urandom | fold -w " $SHUF " | head -n 1)
2017-05-23 00:25:19 +03:00
[ ! -z " $NCDB " ] && NCCONFIGDB = $( grep "dbname" $NCPATH /config/config.php | awk '{print $3}' | sed "s/[',]//g" )
2017-07-26 01:23:47 +03:00
ETCMYCNF = /etc/mysql/my.cnf
2017-05-22 20:15:04 +03:00
MYCNF = /root/.my.cnf
2017-06-20 22:52:25 +03:00
[ ! -z " $MYCNFPW " ] && MARIADBMYCNFPASS = $( grep "password" $MYCNF | sed -n " /password/s/^password='\(.*\)' $/\1/p " )
2017-07-11 17:59:33 +03:00
[ ! -z " $NCDB " ] && NCCONFIGDB = $( grep "dbname" $NCPATH /config/config.php | awk '{print $3}' | sed "s/[',]//g" )
[ ! -z " $NCDBPASS " ] && NCCONFIGDBPASS = $( grep "dbpassword" $NCPATH /config/config.php | awk '{print $3}' | sed "s/[',]//g" )
2017-04-09 23:43:30 +03:00
# Path to specific files
PHPMYADMIN_CONF = "/etc/apache2/conf-available/phpmyadmin.conf"
SECURE = " $SCRIPTS /setup_secure_permissions_nextcloud.sh "
SSL_CONF = "/etc/apache2/sites-available/nextcloud_ssl_domain_self_signed.conf"
HTTP_CONF = "/etc/apache2/sites-available/nextcloud_http_domain_self_signed.conf"
2017-08-26 10:48:40 +03:00
HTTP2_CONF = "/etc/apache2/mods-available/http2.conf"
2017-04-09 23:43:30 +03:00
# Nextcloud version
2018-03-02 01:25:11 +03:00
[ ! -z " $NC_UPDATE " ] && CURRENTVERSION = $( sudo -u www-data php $NCPATH /occ status | grep "versionstring" | awk '{print $3}' )
2017-05-25 13:20:36 +03:00
NCVERSION = $( curl -s -m 900 $NCREPO / | sed --silent 's/.*href="nextcloud-\([^"]\+\).zip.asc".*/\1/p' | sort --version-sort | tail -1)
2017-04-09 23:43:30 +03:00
STABLEVERSION = " nextcloud- $NCVERSION "
NCMAJOR = " ${ NCVERSION %%.* } "
NCBAD = $(( NCMAJOR-2))
# Keys
OpenPGP_fingerprint = '28806A878AE423A28372792ED75899B9A724937A'
2017-06-01 20:36:16 +03:00
# OnlyOffice URL
[ ! -z " $OO_INSTALL " ] && SUBDOMAIN = $( whiptail --title "Techandme.se OnlyOffice" --inputbox "OnlyOffice subdomain eg: office.yourdomain.com" " $WT_HEIGHT " " $WT_WIDTH " 3>& 1 1>& 2 2>& 3)
# Nextcloud Main Domain
[ ! -z " $OO_INSTALL " ] && NCDOMAIN = $( whiptail --title "Techandme.se OnlyOffice" --inputbox "Nextcloud url, make sure it looks like this: cloud\\.yourdomain\\.com" " $WT_HEIGHT " " $WT_WIDTH " cloud\\ .yourdomain\\ .com 3>& 1 1>& 2 2>& 3)
2017-04-09 23:43:30 +03:00
# Collabora Docker URL
[ ! -z " $COLLABORA_INSTALL " ] && SUBDOMAIN = $( whiptail --title "Techandme.se Collabora" --inputbox "Collabora subdomain eg: office.yourdomain.com" " $WT_HEIGHT " " $WT_WIDTH " 3>& 1 1>& 2 2>& 3)
# Nextcloud Main Domain
[ ! -z " $COLLABORA_INSTALL " ] && NCDOMAIN = $( whiptail --title "Techandme.se Collabora" --inputbox "Nextcloud url, make sure it looks like this: cloud\\.yourdomain\\.com" " $WT_HEIGHT " " $WT_WIDTH " cloud\\ .yourdomain\\ .com 3>& 1 1>& 2 2>& 3)
# Letsencrypt
LETSENCRYPTPATH = "/etc/letsencrypt"
CERTFILES = " $LETSENCRYPTPATH /live "
DHPARAMS = " $CERTFILES / $SUBDOMAIN /dhparam.pem "
# Collabora App
HTTPS_CONF = " /etc/apache2/sites-available/ $SUBDOMAIN .conf "
# Nextant
2017-09-26 20:57:55 +03:00
# this var get's the latest automatically:
2017-11-26 23:15:56 +03:00
SOLR_VERSION = $( curl -s https://github.com/apache/lucene-solr/tags | grep -o " release.*</span> $" | grep -o '[0-6].[0-9].[0-9]' | sort -t. -k1,1n -k2,2n -k3,3n | tail -n1)
2017-04-09 23:43:30 +03:00
[ ! -z " $NEXTANT_INSTALL " ] && NEXTANT_VERSION = $( curl -s https://api.github.com/repos/nextcloud/nextant/releases/latest | grep 'tag_name' | cut -d\" -f4 | sed -e "s|v||g" )
2017-05-08 22:00:54 +03:00
NT_RELEASE = nextant-$NEXTANT_VERSION .tar.gz
2017-04-09 23:43:30 +03:00
NT_DL = https://github.com/nextcloud/nextant/releases/download/v$NEXTANT_VERSION /$NT_RELEASE
SOLR_RELEASE = solr-$SOLR_VERSION .tgz
SOLR_DL = http://www-eu.apache.org/dist/lucene/solr/$SOLR_VERSION /$SOLR_RELEASE
NC_APPS_PATH = $NCPATH /apps/
SOLR_HOME = /home/$SUDO_USER /solr_install/
SOLR_JETTY = /opt/solr/server/etc/jetty-http.xml
SOLR_DSCONF = /opt/solr-$SOLR_VERSION /server/solr/configsets/data_driven_schema_configs/conf/solrconfig.xml
# phpMyadmin
PHPMYADMINDIR = /usr/share/phpmyadmin
PHPMYADMIN_CONF = "/etc/apache2/conf-available/phpmyadmin.conf"
UPLOADPATH = ""
SAVEPATH = ""
# Redis
REDIS_CONF = /etc/redis/redis.conf
REDIS_SOCK = /var/run/redis/redis.sock
RSHUF = $( shuf -i 30-35 -n 1)
REDIS_PASS = $( tr -dc "a-zA-Z0-9@#*=" < /dev/urandom | fold -w " $RSHUF " | head -n 1)
# Extra security
SPAMHAUS = /etc/spamhaus.wl
ENVASIVE = /etc/apache2/mods-available/mod-evasive.load
APACHE2 = /etc/apache2/apache2.conf
2018-03-02 00:18:53 +03:00
# Full text Search
[ ! -z " $ES_INSTALL " ] && ROREST = $( tr -dc "a-zA-Z0-9@#*=" < /dev/urandom | fold -w " $SHUF " | head -n 1)
[ ! -z " $ES_INSTALL " ] && ES_VERSION = 6.1.1
[ ! -z " $ES_INSTALL " ] && ES_DEB_VERSION = " $( echo $ES_VERSION | head -c 1) "
2018-03-07 02:25:24 +03:00
[ ! -z " $ES_INSTALL " ] && NCADMIN = $( sudo -u www-data php $NCPATH /occ user:list | awk '{print $3}' )
2017-04-09 23:43:30 +03:00
## functions
# If script is running as root?
#
# Example:
# if is_root
# then
# # do stuff
# else
# echo "You are not root..."
# exit 1
# fi
#
is_root( ) {
if [ [ " $EUID " -ne 0 ] ]
then
return 1
else
return 0
fi
}
2017-12-05 23:21:42 +03:00
# Check if root
root_check( ) {
if ! is_root
then
2017-12-06 00:02:51 +03:00
msg_box " Sorry, you are not root. You now have two options:
2017-12-05 23:36:37 +03:00
2017-12-06 00:02:51 +03:00
1. With SUDO directly:
a) :~$ sudo bash $SCRIPTS /name-of-script.sh
2. Become ROOT and then type your command:
a) :~$ sudo -i
b) :~# $SCRIPTS /name-of-script.sh
2017-12-06 00:05:36 +03:00
In both cases above you can leave out $SCRIPTS / if the script
2017-12-06 00:02:51 +03:00
is directly in your PATH.
2017-12-06 00:05:36 +03:00
More information can be found here: https://unix.stackexchange.com/a/3064"
2017-12-05 23:21:42 +03:00
exit 1
fi
}
2017-04-09 23:43:30 +03:00
debug_mode( ) {
if [ " $DEBUG " -eq 1 ]
then
set -ex
fi
}
ask_yes_or_no( ) {
read -r -p " $1 ([y]es or [N]o): "
case ${ REPLY ,, } in
y| yes)
echo "yes"
; ;
*)
echo "no"
; ;
esac
}
2017-12-05 23:21:42 +03:00
msg_box( ) {
local PROMPT = " $1 "
whiptail --msgbox " ${ PROMPT } " " $WT_HEIGHT " " $WT_WIDTH "
}
2017-08-20 23:36:37 +03:00
# Check if process is runnnig: is_process_running dpkg
is_process_running( ) {
PROCESS = " $1 "
while :
do
RESULT = $( pgrep " ${ PROCESS } " )
if [ " ${ RESULT :- null } " = null ] ; then
break
else
echo " ${ PROCESS } is running. Waiting for it to stop... "
sleep 10
fi
done
}
2017-07-23 00:28:35 +03:00
# Install certbot (Let's Encrypt)
install_certbot( ) {
certbot --version 2> /dev/null
LE_IS_AVAILABLE = $?
if [ $LE_IS_AVAILABLE -eq 0 ]
then
certbot --version
else
echo "Installing certbot (Let's Encrypt)..."
apt update -q4 & spinner_loading
apt install software-properties-common
add-apt-repository ppa:certbot/certbot -y
apt update -q4 & spinner_loading
apt install certbot -y -q
apt update -q4 & spinner_loading
2018-02-06 19:09:44 +03:00
apt-mark hold mariadb*
2017-07-23 00:28:35 +03:00
apt dist-upgrade -y
2018-02-06 19:09:44 +03:00
apt-mark unhold mariadb*
2017-07-23 00:28:35 +03:00
fi
}
2017-08-31 08:24:08 +03:00
# Let's Encrypt for subdomains
le_subdomain( ) {
a2dissite 000-default.conf
service apache2 reload
certbot certonly --standalone --pre-hook "service apache2 stop" --post-hook "service apache2 start" --agree-tos --rsa-key-size 4096 -d " $SUBDOMAIN "
}
2017-10-04 21:23:13 +03:00
# Check if port is open # check_open_port 443
check_open_port( ) {
# Check to see if user already has nmap installed on their system
if [ " $( dpkg-query -s nmap 2> /dev/null | grep -c "ok installed" ) " = = "1" ]
then
NMAPSTATUS = preinstalled
fi
apt update -q4 & spinner_loading
if [ " $NMAPSTATUS " = "preinstalled" ]
then
echo "nmap is already installed..."
else
apt install nmap -y
fi
# Check if $1 is open using nmap, if not notify the user
if [ " $( nmap -sS -p " $1 " " $WANIP4 " | grep -c "open" ) " = = "1" ]
then
printf " ${ Green } Port $1 is open on $WANIP4 ! ${ Color_Off } \n "
if [ " $NMAPSTATUS " = "preinstalled" ]
then
2017-10-04 21:43:23 +03:00
echo "nmap was previously installed, not removing."
2017-10-04 21:23:13 +03:00
else
apt remove --purge nmap -y
fi
else
2017-10-04 21:43:23 +03:00
whiptail --msgbox " Port $1 is not open on $WANIP4 . We will do a second try on $2 instead. " " $WT_HEIGHT " " $WT_WIDTH "
2017-10-04 21:23:13 +03:00
if [ [ " $( nmap -sS -PN -p " $1 " " $2 " | grep -m 1 "open" | awk '{print $2}' ) " = "open" ] ]
then
printf " ${ Green } Port $1 is open on $2 ! ${ Color_Off } \n "
if [ " $NMAPSTATUS " = "preinstalled" ]
then
2017-10-04 21:43:23 +03:00
echo "nmap was previously installed, not removing."
2017-10-04 21:23:13 +03:00
else
apt remove --purge nmap -y
fi
else
whiptail --msgbox " Port $1 is not open on $2 . Please follow this guide to open ports in your router: https://www.techandme.se/open-port-80-443/ " " $WT_HEIGHT " " $WT_WIDTH "
any_key "Press any key to exit... "
if [ " $NMAPSTATUS " = "preinstalled" ]
then
2017-10-04 21:43:23 +03:00
echo "nmap was previously installed, not removing."
2017-10-04 21:23:13 +03:00
else
apt remove --purge nmap -y
fi
exit 1
fi
fi
}
2017-06-11 20:26:36 +03:00
configure_max_upload( ) {
# 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/
sed -i 's/ php_value upload_max_filesize.*/# php_value upload_max_filesize 511M/g' " $NCPATH " /.htaccess
sed -i 's/ php_value post_max_size.*/# php_value post_max_size 511M/g' " $NCPATH " /.htaccess
sed -i 's/ php_value memory_limit.*/# php_value memory_limit 512M/g' " $NCPATH " /.htaccess
}
2017-06-23 16:09:40 +03:00
# Check if program is installed (is_this_installed apache2)
is_this_installed( ) {
if [ " $( dpkg-query -W -f= '${Status}' " ${ 1 } " 2>/dev/null | grep -c "ok installed" ) " = = "1" ]
then
echo " ${ 1 } is installed, it must be a clean server. "
exit 1
fi
}
2017-07-11 17:59:33 +03:00
# Install_if_not program
install_if_not ( ) {
if [ [ " $( is_this_installed " ${ 1 } " ) " != " ${ 1 } is installed, it must be a clean server. " ] ]
then
apt update -q4 & spinner_loading && apt install " ${ 1 } " -y
fi
}
2017-06-09 17:52:37 +03:00
# Test RAM size
# Call it like this: ram_check [amount of min RAM in GB] [for which program]
# Example: ram_check 2 Nextcloud
ram_check( ) {
mem_available = " $( awk '/MemTotal/{print $2}' /proc/meminfo) "
if [ " ${ mem_available } " -lt " $(( ${ 1 } * 1002400 )) " ]
then
printf " ${ Red } Error: ${ 1 } GB RAM required to install ${ 2 } ! ${ Color_Off } \n " >& 2
printf " ${ Red } Current RAM is: ( " $(( mem_available/1002400)) " GB) ${ Color_Off } \n " >& 2
sleep 3
2018-02-06 19:09:44 +03:00
msg_box " If you want to bypass this check you could do so by commenting out (# before the line) 'ram_check X' in the script that you are trying to run.
In nextcloud_install_production.sh you can find the check somewhere around line #34.
Please notice that things may be veery slow and not work as expeced. YOU HAVE BEEN WARNED!"
2017-06-09 17:52:37 +03:00
exit 1
else
printf " ${ Green } RAM for ${ 2 } OK! ( " $(( mem_available/1002400)) " GB) ${ Color_Off } \n "
fi
}
# Test number of CPU
# Call it like this: cpu_check [amount of min CPU] [for which program]
# Example: cpu_check 2 Nextcloud
cpu_check( ) {
nr_cpu = " $( nproc) "
if [ " ${ nr_cpu } " -lt " ${ 1 } " ]
then
printf " ${ Red } Error: ${ 1 } CPU required to install ${ 2 } ! ${ Color_Off } \n " >& 2
printf " ${ Red } Current CPU: ( " $(( nr_cpu)) " ) ${ Color_Off } \n " >& 2
sleep 3
exit 1
else
printf " ${ Green } CPU for ${ 2 } OK! ( " $(( nr_cpu)) " ) ${ Color_Off } \n "
fi
}
2017-04-09 23:43:30 +03:00
check_command( ) {
2018-03-02 00:18:53 +03:00
if ! " $@ " ;
2017-07-11 17:59:33 +03:00
then
2017-04-09 23:43:30 +03:00
printf " ${ IRed } Sorry but something went wrong. Please report this issue to $ISSUES and include the output of the error message. Thank you! ${ Color_Off } \n "
echo " $* failed "
exit 1
fi
}
2018-03-07 02:25:24 +03:00
# Example: occ_command 'maintenance:mode --on'
occ_command( ) {
check_command sudo -u www-data php " $NCPATH " /occ " $@ " ;
}
2017-04-09 23:43:30 +03:00
network_ok( ) {
echo "Testing if network is OK..."
service networking restart
if wget -q -T 20 -t 2 http://github.com -O /dev/null & spinner_loading
then
return 0
else
return 1
fi
}
# Whiptail auto-size
calc_wt_size( ) {
WT_HEIGHT = 17
WT_WIDTH = $( tput cols)
if [ -z " $WT_WIDTH " ] || [ " $WT_WIDTH " -lt 60 ] ; then
WT_WIDTH = 80
fi
if [ " $WT_WIDTH " -gt 178 ] ; then
WT_WIDTH = 120
fi
WT_MENU_HEIGHT = $(( WT_HEIGHT-7))
export WT_MENU_HEIGHT
}
2018-02-06 19:09:44 +03:00
install_and_enable_app( ) {
# Download and install $1
if [ ! -d " $NC_APPS_PATH / $1 " ]
then
echo " Installing $1 ... "
2018-03-02 00:18:53 +03:00
occ_command app:install " $1 "
2018-02-06 19:09:44 +03:00
fi
# Enable $1
if [ -d " $NC_APPS_PATH / $1 " ]
then
2018-03-02 00:18:53 +03:00
occ_command app:enable " $1 "
2018-02-06 19:09:44 +03:00
chown -R www-data:www-data " $NC_APPS_PATH "
fi
}
2017-04-09 23:43:30 +03:00
download_verify_nextcloud_stable( ) {
2017-07-11 17:59:33 +03:00
rm -f " $HTML / $STABLEVERSION .tar.bz2 "
2017-04-09 23:43:30 +03:00
wget -q -T 10 -t 2 " $NCREPO / $STABLEVERSION .tar.bz2 " -P " $HTML "
mkdir -p " $GPGDIR "
wget -q " $NCREPO / $STABLEVERSION .tar.bz2.asc " -P " $GPGDIR "
chmod -R 600 " $GPGDIR "
gpg --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys " $OpenPGP_fingerprint "
gpg --verify " $GPGDIR / $STABLEVERSION .tar.bz2.asc " " $HTML / $STABLEVERSION .tar.bz2 "
rm -r " $GPGDIR "
2017-09-23 19:32:38 +03:00
rm -f releases
2017-04-09 23:43:30 +03:00
}
# Initial download of script in ../static
# call like: download_static_script name_of_script
download_static_script( ) {
# Get ${1} script
rm -f " ${ SCRIPTS } / ${ 1 } .sh " " ${ SCRIPTS } / ${ 1 } .php " " ${ SCRIPTS } / ${ 1 } .py "
if ! { wget -q " ${ STATIC } / ${ 1 } .sh " -P " $SCRIPTS " || wget -q " ${ STATIC } / ${ 1 } .php " -P " $SCRIPTS " || wget -q " ${ STATIC } / ${ 1 } .py " -P " $SCRIPTS " ; }
then
echo " { $1 } failed to download. Please run: 'sudo wget ${ STATIC } / ${ 1 } .sh|.php|.py' again. "
echo "If you get this error when running the nextcloud-startup-script then just re-run it with:"
echo " 'sudo bash $SCRIPTS /nextcloud-startup-script.sh' and all the scripts will be downloaded again "
exit 1
fi
}
# Initial download of script in ../lets-encrypt
# call like: download_le_script name_of_script
download_le_script( ) {
# Get ${1} script
rm -f " ${ SCRIPTS } / ${ 1 } .sh " " ${ SCRIPTS } / ${ 1 } .php " " ${ SCRIPTS } / ${ 1 } .py "
if ! { wget -q " ${ LETS_ENC } / ${ 1 } .sh " -P " $SCRIPTS " || wget -q " ${ LETS_ENC } / ${ 1 } .php " -P " $SCRIPTS " || wget -q " ${ LETS_ENC } / ${ 1 } .py " -P " $SCRIPTS " ; }
then
echo " { $1 } failed to download. Please run: 'sudo wget ${ STATIC } / ${ 1 } .sh|.php|.py' again. "
echo "If you get this error when running the nextcloud-startup-script then just re-run it with:"
echo " 'sudo bash $SCRIPTS /nextcloud-startup-script.sh' and all the scripts will be downloaded again "
exit 1
fi
}
2017-06-09 13:27:33 +03:00
# Run any script in ../master
# call like: run_main_script name_of_script
run_main_script( ) {
rm -f " ${ SCRIPTS } / ${ 1 } .sh " " ${ SCRIPTS } / ${ 1 } .php " " ${ SCRIPTS } / ${ 1 } .py "
if wget -q " ${ GITHUB_REPO } / ${ 1 } .sh " -P " $SCRIPTS "
then
bash " ${ SCRIPTS } / ${ 1 } .sh "
rm -f " ${ SCRIPTS } / ${ 1 } .sh "
elif wget -q " ${ GITHUB_REPO } / ${ 1 } .php " -P " $SCRIPTS "
then
php " ${ SCRIPTS } / ${ 1 } .php "
rm -f " ${ SCRIPTS } / ${ 1 } .php "
elif wget -q " ${ GITHUB_REPO } / ${ 1 } .py " -P " $SCRIPTS "
then
python " ${ SCRIPTS } / ${ 1 } .py "
rm -f " ${ SCRIPTS } / ${ 1 } .py "
else
echo " Downloading ${ 1 } failed "
echo " Script failed to download. Please run: 'sudo wget ${ GITHUB_REPO } / ${ 1 } .sh|php|py' again. "
sleep 3
fi
}
2017-04-09 23:43:30 +03:00
# Run any script in ../static
# call like: run_static_script name_of_script
run_static_script( ) {
# Get ${1} script
rm -f " ${ SCRIPTS } / ${ 1 } .sh " " ${ SCRIPTS } / ${ 1 } .php " " ${ SCRIPTS } / ${ 1 } .py "
if wget -q " ${ STATIC } / ${ 1 } .sh " -P " $SCRIPTS "
then
bash " ${ SCRIPTS } / ${ 1 } .sh "
rm -f " ${ SCRIPTS } / ${ 1 } .sh "
elif wget -q " ${ STATIC } / ${ 1 } .php " -P " $SCRIPTS "
then
php " ${ SCRIPTS } / ${ 1 } .php "
rm -f " ${ SCRIPTS } / ${ 1 } .php "
elif wget -q " ${ STATIC } / ${ 1 } .py " -P " $SCRIPTS "
then
python " ${ SCRIPTS } / ${ 1 } .py "
rm -f " ${ SCRIPTS } / ${ 1 } .py "
else
echo " Downloading ${ 1 } failed "
echo " Script failed to download. Please run: 'sudo wget ${ STATIC } / ${ 1 } .sh|php|py' again. "
sleep 3
fi
}
# Run any script in ../apps
2017-05-25 14:37:44 +03:00
# call like: run_app_script collabora|nextant|passman|spreedme|contacts|calendar|webmin|previewgenerator
2017-04-09 23:43:30 +03:00
run_app_script( ) {
rm -f " ${ SCRIPTS } / ${ 1 } .sh " " ${ SCRIPTS } / ${ 1 } .php " " ${ SCRIPTS } / ${ 1 } .py "
if wget -q " ${ APP } / ${ 1 } .sh " -P " $SCRIPTS "
then
bash " ${ SCRIPTS } / ${ 1 } .sh "
rm -f " ${ SCRIPTS } / ${ 1 } .sh "
elif wget -q " ${ APP } / ${ 1 } .php " -P " $SCRIPTS "
then
php " ${ SCRIPTS } / ${ 1 } .php "
rm -f " ${ SCRIPTS } / ${ 1 } .php "
elif wget -q " ${ APP } / ${ 1 } .py " -P " $SCRIPTS "
then
python " ${ SCRIPTS } / ${ 1 } .py "
rm -f " ${ SCRIPTS } / ${ 1 } .py "
else
echo " Downloading ${ 1 } failed "
echo " Script failed to download. Please run: 'sudo wget ${ APP } / ${ 1 } .sh|php|py' again. "
sleep 3
fi
}
version( ) {
local h t v
[ [ $2 = " $1 " || $2 = " $3 " ] ] && return 0
v = $( printf '%s\n' " $@ " | sort -V)
h = $( head -n1 <<< " $v " )
t = $( tail -n1 <<< " $v " )
[ [ $2 != " $h " && $2 != " $t " ] ]
}
version_gt( ) {
local v1 v2 IFS = .
read -ra v1 <<< " $1 "
read -ra v2 <<< " $2 "
printf -v v1 %03d " ${ v1 [@] } "
printf -v v2 %03d " ${ v2 [@] } "
[ [ $v1 > $v2 ] ]
}
spinner_loading( ) {
pid = $!
spin = '-\|/'
i = 0
while kill -0 $pid 2>/dev/null
do
i = $(( ( i+1) % 4 ))
printf " \r[ ${ spin : $i : 1 } ] " # Add text here, something like "Please be paitent..." maybe?
sleep .1
done
}
any_key( ) {
local PROMPT = " $1 "
read -r -p " $( printf " ${ Green } ${ PROMPT } ${ Color_Off } " ) " -n1 -s
echo
}
2018-03-02 00:18:53 +03:00
lowest_compatible_nc( ) {
2018-03-02 02:12:52 +03:00
if [ " ${ CURRENTVERSION %%.* } " -lt " $1 " ]
2018-03-02 00:18:53 +03:00
then
2018-03-07 02:25:24 +03:00
msg_box " This script is developed to work with Nextcloud $1 and later.
This means we can't use our own script for now. But don' t worry,
we automated the update process and we will now use Nextclouds updater instead.
Press [ OK] to continue the update, or press [ CTRL+C] to abort.
2018-03-02 00:18:53 +03:00
If you are using Nextcloud $1 and later and still see this message,
2018-03-07 02:25:24 +03:00
or experience other issues then please report this to $ISSUES "
# Do the upgrade
chown -R www-data:www-data " $NCPATH "
rm -rf " $NCPATH " /assets
yes | sudo -u www-data php /var/www/nextcloud/updater/updater.phar
run_static_script setup_secure_permissions_nextcloud
occ_command maintenance:mode --off
2018-03-02 00:18:53 +03:00
fi
2018-03-02 02:07:54 +03:00
2018-03-07 02:25:24 +03:00
# Check new version
# shellcheck source=lib.sh
NC_UPDATE = 1 . <( curl -sL $GITHUB_REPO /lib.sh)
unset NC_UPDATE
if [ " ${ CURRENTVERSION %%.* } " -ge " $1 " ]
then
sleep 1
else
msg_box " It appears that something went wrong with the update.
Please report this to $ISSUES "
occ_command -V
exit
fi
2018-02-06 21:27:34 +03:00
}
2017-04-09 23:43:30 +03:00
## bash colors
# Reset
Color_Off = '\e[0m' # Text Reset
# Regular Colors
Black = '\e[0;30m' # Black
Red = '\e[0;31m' # Red
Green = '\e[0;32m' # Green
Yellow = '\e[0;33m' # Yellow
Blue = '\e[0;34m' # Blue
Purple = '\e[0;35m' # Purple
Cyan = '\e[0;36m' # Cyan
White = '\e[0;37m' # White
# Bold
BBlack = '\e[1;30m' # Black
BRed = '\e[1;31m' # Red
BGreen = '\e[1;32m' # Green
BYellow = '\e[1;33m' # Yellow
BBlue = '\e[1;34m' # Blue
BPurple = '\e[1;35m' # Purple
BCyan = '\e[1;36m' # Cyan
BWhite = '\e[1;37m' # White
# Underline
UBlack = '\e[4;30m' # Black
URed = '\e[4;31m' # Red
UGreen = '\e[4;32m' # Green
UYellow = '\e[4;33m' # Yellow
UBlue = '\e[4;34m' # Blue
UPurple = '\e[4;35m' # Purple
UCyan = '\e[4;36m' # Cyan
UWhite = '\e[4;37m' # White
# Background
On_Black = '\e[40m' # Black
On_Red = '\e[41m' # Red
On_Green = '\e[42m' # Green
On_Yellow = '\e[43m' # Yellow
On_Blue = '\e[44m' # Blue
On_Purple = '\e[45m' # Purple
On_Cyan = '\e[46m' # Cyan
On_White = '\e[47m' # White
# High Intensity
IBlack = '\e[0;90m' # Black
IRed = '\e[0;91m' # Red
IGreen = '\e[0;92m' # Green
IYellow = '\e[0;93m' # Yellow
IBlue = '\e[0;94m' # Blue
IPurple = '\e[0;95m' # Purple
ICyan = '\e[0;96m' # Cyan
IWhite = '\e[0;97m' # White
# Bold High Intensity
BIBlack = '\e[1;90m' # Black
BIRed = '\e[1;91m' # Red
BIGreen = '\e[1;92m' # Green
BIYellow = '\e[1;93m' # Yellow
BIBlue = '\e[1;94m' # Blue
BIPurple = '\e[1;95m' # Purple
BICyan = '\e[1;96m' # Cyan
BIWhite = '\e[1;97m' # White
# High Intensity backgrounds
On_IBlack = '\e[0;100m' # Black
On_IRed = '\e[0;101m' # Red
On_IGreen = '\e[0;102m' # Green
On_IYellow = '\e[0;103m' # Yellow
On_IBlue = '\e[0;104m' # Blue
On_IPurple = '\e[0;105m' # Purple
On_ICyan = '\e[0;106m' # Cyan
On_IWhite = '\e[0;107m' # White