Scripts: Add dist/remove-wait-online.sh

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer 2023-10-14 17:28:32 +02:00
parent 8dc222d584
commit c5dc0af24c

13
scripts/dist/remove-wait-online.sh vendored Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env bash
# This script disables the wait-online service to prevent the system from waiting for a network connection.
# bash <(curl -s https://raw.githubusercontent.com/photoprism/photoprism/develop/scripts/dist/remove-wait-online.sh)
set -e
echo "Disabling the wait-online service..."
sudo systemctl disable systemd-networkd-wait-online.service && \
sudo systemctl mask systemd-networkd-wait-online.service
echo "Done."