Create gemini_chk

This commit is contained in:
kodlz 2022-10-16 14:53:51 +02:00 committed by GitHub
parent 9ee3e43ae5
commit cb8e50f290
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
gemini_chk Normal file
View file

@ -0,0 +1,12 @@
#!/bin/bash
# make sure the pihole-gemini script is being run by gravity.sh
GEMINI='su -c /usr/local/bin/pihole-gemini - <gemini user>'
GRAVITY=/opt/pihole/gravity.sh
TRIGGER=$(sed -e '$!{h;d;}' -e x $GRAVITY)
if [ "$TRIGGER" != "$GEMINI" ]
then
# insert the gemini commandline before the last line of the script
sed -i "$ i$GEMINI" $GRAVITY
fi