mirror of
https://github.com/myvesta/vesta.git
synced 2025-01-12 14:02:54 -08:00
45 lines
1.3 KiB
Bash
Executable File
45 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# info: backup all users
|
|
# options: NONE
|
|
#
|
|
# The function backups all system users.
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Variable&Function #
|
|
#----------------------------------------------------------#
|
|
|
|
# Importing system enviroment as we run this script
|
|
# mostly by cron wich not read it by itself
|
|
source /etc/profile
|
|
|
|
# Includes
|
|
source $VESTA/func/main.sh
|
|
source $VESTA/conf/vesta.conf
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Action #
|
|
#----------------------------------------------------------#
|
|
|
|
for user in $(ls $VESTA/data/users); do
|
|
check_suspend=$(grep "SUSPENDED='no'" $VESTA/data/users/$user/user.conf)
|
|
log=$VESTA/log/backup.log
|
|
if [ ! -z "$check_suspend" ]; then
|
|
echo -e "================================" >> $log
|
|
echo -e "$user" >> $log
|
|
echo -e "--------------------------------\n" >> $log
|
|
$BIN/v-backup-user $user >> $log 2>&1
|
|
echo -e "\n--------------------------------\n\n" >> $log
|
|
fi
|
|
done
|
|
|
|
#----------------------------------------------------------#
|
|
# Vesta #
|
|
#----------------------------------------------------------#
|
|
|
|
# No Logging
|
|
#log_event "$OK" "$EVENT"
|
|
|
|
exit
|