homelab/wizard/config/configure.sh

69 lines
1.4 KiB
Bash
Raw Permalink Normal View History

#!/bin/vbash
if [ "$(id -g -n)" != 'vyattacfg' ] ; then
exec sg vyattacfg -c "/bin/vbash $(readlink -f $0) $@"
fi
source /opt/vyatta/etc/functions/script-template
source vyos_secrets.env
2024-02-14 10:47:46 -08:00
configure
echo "===== Configure firewall... ====="
{
source firewall.sh > /dev/null
} || {
echo "===== Failed to configure firewall ====="
}
echo "===== Configure interfaces... ====="
{
source interfaces.sh > /dev/null
} || {
echo "===== Failed to configure interfaces ====="
}
echo "===== Configure NAT... ====="
{
source nat.sh > /dev/null
} || {
echo "===== Failed to configure NAT ====="
}
echo "===== Configure QoS... ====="
{
source qos.sh > /dev/null
} || {
echo "===== Failed to configure QoS ====="
}
echo "===== Configure services... ====="
{
source service.sh > /dev/null
} || {
echo "===== Failed to configure services ====="
}
echo "===== Configure system... ====="
{
source system.sh > /dev/null
} || {
echo "===== Failed to configure system ====="
}
2024-02-14 12:35:16 -08:00
if compare | grep -q 'No changes between working and active configurations.'
then
2024-02-14 12:35:16 -08:00
echo "No changes to commit."
exit
else
{ # compare, try commit, save, exit
2024-02-14 12:47:23 -08:00
compare | strip-private
commit && save && exit
} || { # catch, exit discard and print a very basic error message
exit discard
echo "Failed to commit and save the configuration."
}
fi