added warnings to pihole and reverse-proxy about sysctl configuration

This commit is contained in:
Snogard 2023-07-23 17:34:40 +02:00
parent 3d45ea5716
commit a25d70001d
3 changed files with 14 additions and 3 deletions

View File

@ -51,6 +51,10 @@ podman create \
$imageName
#systemd
# systemd
create_systemd_services $podName
systemctl --user enable --now $containerName
systemctl --user enable --now $containerName
# warnings
echo "Remember to add "net.ipv4.ip_unprivileged_port_start=53" to your /etc/sysctl.conf if you are running this container in rootless mode"

View File

@ -54,4 +54,8 @@ podman create \
# systemd
create_systemd_services $containerName
systemctl --user enable --now $containerName
systemctl --user enable --now $containerName
# warnings
echo "Remember to add "net.ipv4.ip_unprivileged_port_start=80" to your /etc/sysctl.conf if you are running this container in rootless mode"

View File

@ -125,6 +125,9 @@ for val in $configureList; do
fi
done
# ---------------------------
# TODO auto update sysconfig
echo -e "Configurations Updated\n"
echo "Update complete"