Foundation for a scoped sudoers: route every genuine system-admin command (systemctl/ufw/ufw-docker/nft/apt/apt-get/pacman/sysctl/useradd/usermod/ service/wg/wg-quick/cscli/loginctl) through runSystem instead of raw sudo across 28 active scripts. runSystem is 'sudo "$@"' so this is byte-identical in every mode (safe on live installs) — it just collects all real-root use at one chokepoint that will define the eventual /etc/sudoers.d allowlist. Also: revert a crowdsec advice message the sweep wrongly rewrote (the admin types sudo, not runSystem), and give crontab_check_processor.sh the same startup bootstrap as the task processor — it runs standalone via cron and already used runFileOp/runFileWrite (undefined there), so it was silently broken; now it sources the helpers + docker-type config. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
53 lines
2.0 KiB
Bash
Executable File
53 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
wireguardUninstall()
|
|
{
|
|
isHeader "Wireguard Uninstaller"
|
|
isNotice "***WARNING*** This will uninstall WireGuard and remove all the configuration files!"
|
|
isNotice "Please backup the /etc/wireguard directory if you want to keep your configuration files."
|
|
echo ""
|
|
isQuestion "Do you really want to remove WireGuard? (y/n): "
|
|
read -p "" WIREGUARD_REMOVE
|
|
|
|
if [[ $WIREGUARD_REMOVE == [yY] ]]; then
|
|
if [[ "$OS_TYPE" == "Ubuntu" || "$OS_TYPE" == "Debian" ]]; then
|
|
result=$(runSystem systemctl stop "wg-quick@${CFG_WG_SERVER_NIC}")
|
|
checkSuccess "Stopped wg-quick@${CFG_WG_SERVER_NIC} service."
|
|
|
|
result=$(runSystem systemctl disable "wg-quick@${CFG_WG_SERVER_NIC}")
|
|
checkSuccess "Disabled wg-quick@${CFG_WG_SERVER_NIC} service."
|
|
|
|
if [[ "$OS_TYPE" == "Ubuntu" || "$OS_TYPE" == "Debian" ]]; then
|
|
result=$(runSystem apt-get remove -y wireguard wireguard-tools qrencode)
|
|
checkSuccess "Removed wireguard wireguard-tools qrencode"
|
|
fi
|
|
|
|
result=$(sudo rm -rf /etc/wireguard)
|
|
checkSuccess "Deleted /etc/wireguard folder."
|
|
result=$(sudo rm -f /etc/sysctl.d/wg.conf)
|
|
checkSuccess "Delete /etc/sysctl.d/wg.conf file."
|
|
|
|
result=$(runSystem sysctl --system)
|
|
checkSuccess "Reloaded sysctl"
|
|
|
|
portUnuse wireguardstandalone $CFG_WG_SERVER_PORT install;
|
|
portClose wireguardstandalone $CFG_WG_SERVER_PORT/udp install;
|
|
|
|
# Check if WireGuard is running
|
|
systemctl is-active --quiet "wg-quick@${CFG_WG_SERVER_NIC}"
|
|
WIREGUARD_RUNNING=$?
|
|
|
|
if [[ ${WIREGUARD_RUNNING} -eq 0 ]]; then
|
|
isError "WireGuard failed to uninstall properly."
|
|
wireguardManageMenu;
|
|
else
|
|
isSuccessful "WireGuard uninstalled successfully."
|
|
wireguardManageMenu;
|
|
fi
|
|
fi
|
|
else
|
|
echo ""
|
|
isNotice "Removal aborted!"
|
|
fi
|
|
}
|