feat: disable geoclue by default

This commit is contained in:
qoijjj
2024-07-22 17:38:27 -07:00
committed by GitHub
parent 5fe5ccc67d
commit 23fde33ad6
2 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# Tell build process to exit if there are any errors.
set -oue pipefail
echo "Disabling the location service"
systemctl disable geoclue
systemctl mask geoclue

View File

@@ -8,3 +8,4 @@ scripts:
- httpsmirrors.sh
- createmissingdirectories.sh
- removesuid.sh
- disablegeoclue.sh