-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pi-hole for Android 1.6 - Sync with upstream - Build pi-hole-FTL instead of downloding binary - Shutdown and PowerOff options in Web Admin are now working - Added systemctl-shim to enable systemctl functionality To update Pi-hole when upstream publishes new releases, connect to the Pi-hole instance via SSH or RDP and run the following command: p4a-install The equivalent command pihole -up will quit, reporting an unsupported distro.
- Loading branch information
1 parent
b22b064
commit e2fbed3
Showing
13 changed files
with
629 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Pi-hole for Android 1.6 [20220908] | ||
|
||
Pi-hole Stats -> padd | ||
Install or Update -> p4a-install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
service pihole-FTL stop | ||
service unbound stop | ||
service lighttpd stop | ||
service xrdp stop | ||
service crond stop | ||
service syslog-ng stop | ||
bash -c "unchroot am start -a com.android.internal.intent.action.REQUEST_SHUTDOWN" > /dev/null 2>&1 | ||
bash -c "unchroot am start -n android/com.android.internal.app.ShutdownActivity" > /dev/null 2>&1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
service pihole-FTL stop | ||
service unbound stop | ||
service lighttpd stop | ||
service xrdp stop | ||
service crond stop | ||
service syslog-ng stop | ||
bash -c "unchroot am start -a android.intent.action.REBOOT" > /dev/null 2>&1 |
Oops, something went wrong.