| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- #!/bin/bash
- # Check version
- source /usr/local/vesta/conf/vesta.conf
- if [ "$VERSION" != '0.9.7' ]; then
- exit
- fi
- # Rename web system service
- sed -i "s/apache/httpd/g" /usr/local/vesta/conf/vesta.conf
- # Rename dns system service
- sed -i "s/bind/named/g" /usr/local/vesta/conf/vesta.conf
- # Rename nginx config
- mv /etc/nginx/conf.d/vesta_users.conf /etc/nginx/conf.d/vesta.conf 2>/dev/null
- rm -f /etc/nginx/conf.d/vesta_ip.conf 2>/dev/null
- # Update user packages
- PKG=/usr/local/vesta/data/packages
- for package in $(ls $PKG); do
- default=$(grep "^TEMPLATE='" $PKG/$package | cut -f2 -d \')
- if [ ! -z "$default" ]; then
- tpl="WEB_TEMPLATE='$default'"
- tpl="$tpl\nPROXY_TEMPLATE='default'"
- tpl="$tpl\nDNS_TEMPLATE='default'"
- sed -i "s/^TEMPLATE=.*/$tpl/g" $PKG/$package
- fi
- done
- # Update users
- USR=/usr/local/vesta/data/users
- for user in $(ls $USR); do
- default=$(grep "^TEMPLATE='" $USR/$user/user.conf | cut -f2 -d \')
- if [ ! -z "$default" ]; then
- tpl="WEB_TEMPLATE='$default'"
- tpl="$tpl\nPROXY_TEMPLATE='default'"
- tpl="$tpl\nDNS_TEMPLATE='default'"
- sed -i "s/^TEMPLATE=.*/$tpl/g" $USR/$user/user.conf
- fi
- done
- # Rename NGINX to PROXY key
- sed -i "s/NGINX/PROXY/g" /usr/local/vesta/data/users/*/web.conf
- # Check template structure
- TPL='/usr/local/vesta/data/templates/web'
- if [ -e "$TPL/apache" ]; then
- mv $TPL/apache $TPL/httpd
- fi
- # Remove unused email template
- if [ -e $TPL/email_reset_password.tpl ]; then
- rm -f $TPL/email_reset_password.tpl
- fi
- # Update httpd templates
- if [ ! -z "$(ls $TPL | grep apache_)" ]; then
- mkdir -p $TPL/httpd
- mv $TPL/apache_* $TPL/httpd/
- for template in $(ls $TPL/httpd); do
- new_name=$(echo $template | sed -e "s/apache_//")
- mv -f $TPL/httpd/$template $TPL/httpd/$new_name
- done
- fi
- if [ -e "$TPL/httpd" ]; then
- sed -i -e "s/%elog%//g" \
- -e "s/%cgi%//g" \
- -e "s/%cgi_option%/+ExecCGI/g" $TPL/httpd/*
- fi
- # Update nginx templates
- if [ ! -z "$(ls $TPL/| grep nginx_)" ];then
- mkdir -p $TPL/nginx
- mv $TPL/nginx_* $TPL/nginx/
- for template in $(ls $TPL/nginx/); do
- new_name=$(echo $template |sed -e "s/nginx_//")
- mv -f $TPL/nginx/$template $TPL/nginx/$new_name
- done
- fi
- if [ -e "$TPL/ngingx.ip.tpl" ]; then
- mv $TPL/ngingx.ip.tpl $TPL/nginx/proxy_ip.tpl
- fi
- if [ -e "$TPL/nginx/ip.tpl" ]; then
- mv $TPL/nginx/ip.tpl $TPL/nginx/proxy_ip.tpl
- fi
- if [ -e "$TPL/nginx" ]; then
- sed -i -e "s/%elog%//g" \
- -e "s/nginx_extentions/proxy_extentions/g" $TPL/nginx/*
- fi
- # Move Awstats templates
- if [ -e "$TPL/awstats.tpl" ]; then
- mkdir -p $TPL/awstats
- mv $TPL/awstats.tpl $TPL/awstats
- mv $TPL/awstats_index.tpl $TPL/awstats/index.tpl
- mv $TPL/awstats_nav.tpl $TPL/awstats/nav.tpl
- fi
- # Move Webalizer templates
- if [ -e "$TPL/webalizer.tpl" ]; then
- mkdir -p $TPL/webalizer
- mv $TPL/webalizer.tpl $TPL/webalizer
- fi
- # Update proxy ip configuration
- for ip in $(ls /usr/local/vesta/data/ips); do
- cat $TPL/nginx/proxy_ip.tpl |\
- sed -e "s/%ip%/$ip/g" \
- -e "s/%web_port%/8080/g" \
- -e "s/%proxy_port%/80/g" \
- > /etc/nginx/conf.d/$ip.conf
- done
- # Remove broken symlink protection
- sed -i '/Symlinks protection/d' /etc/nginx/nginx.conf
- sed -i '/disable_symlinks.*/d' /etc/nginx/nginx.conf
- # Update version
- sed -i 's/0.9.7/0.9.8/' /usr/local/vesta/conf/vesta.conf
- exit
|