Files
RouterichAX3000_configs/off_configure_zaprets.sh
2025-02-15 01:32:47 +05:00

21 lines
349 B
Bash

#!/bin/sh
DIR="/etc/config"
DIR_BACKUP="/root/backup"
config_files="dhcp
youtubeUnblock
https-dns-proxy"
echo "Restore configs..."
for file in $config_files
do
cp -f "$DIR_BACKUP/$file" "$DIR/$file"
done
echo "Restart service..."
service youtubeUnblock restart
service https-dns-proxy restart
service dnsmasq restart
service odhcpd restart