You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
750 B
22 lines
750 B
#!/bin/bash
|
|
|
|
# Hestia Control Panel upgrade script for target version 1.3.1
|
|
|
|
#######################################################################################
|
|
####### Place additional commands below. #######
|
|
#######################################################################################
|
|
|
|
# Remove duplicate values in U_SYS_USERS variable for ips
|
|
for ip in $($BIN/v-list-sys-ips plain | cut -f1); do
|
|
current_usr=$(grep "U_SYS_USERS=" $HESTIA/data/ips/$ip | cut -f 2 -d \')
|
|
|
|
new_usr=$(echo "$current_usr" \
|
|
| sed "s/,/\n/g" \
|
|
| sort -u \
|
|
| sed ':a;N;$!ba;s/\n/,/g')
|
|
|
|
if [ -n "$new_usr" ]; then
|
|
sed -i "s/U_SYS_USERS='$current_usr'/U_SYS_USERS='$new_usr'/g" $HESTIA/data/ips/$ip
|
|
fi
|
|
done
|