mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Changed -web (webpage) to -a (admin)
This commit is contained in:
parent
33b6fe72da
commit
f50cbe74cb
2 changed files with 5 additions and 5 deletions
|
@ -13,9 +13,9 @@ args=("$@")
|
|||
|
||||
helpFunc() {
|
||||
cat << EOM
|
||||
::: Set options for the web interface of pihole
|
||||
::: Set admin options for the web interface of pihole
|
||||
:::
|
||||
::: Usage: pihole -web [options]
|
||||
::: Usage: pihole -a [options]
|
||||
:::
|
||||
::: Options:
|
||||
::: -p, password Set web interface password, an empty input will remove any previously set password
|
||||
|
|
6
pihole
6
pihole
|
@ -185,7 +185,7 @@ helpFunc() {
|
|||
::: Control all PiHole specific functions!
|
||||
:::
|
||||
::: Usage: pihole [options]
|
||||
::: Add -h after -w (whitelist), -b (blacklist), -c (chronometer), or -web (webpage) for more information on usage
|
||||
::: Add -h after -w (whitelist), -b (blacklist), -c (chronometer), or -a (admin) for more information on usage
|
||||
:::
|
||||
::: Options:
|
||||
::: -w, whitelist Whitelist domains
|
||||
|
@ -200,7 +200,7 @@ helpFunc() {
|
|||
::: -v, version Show current versions
|
||||
::: -q, query Query the adlists for a specific domain
|
||||
::: -l, logging Enable or Disable logging (pass 'on' or 'off')
|
||||
::: -web, webpage Webpage options
|
||||
::: -a, admin Admin webpage options
|
||||
::: uninstall Uninstall Pi-Hole from your system :(!
|
||||
::: status Is Pi-Hole Enabled or Disabled
|
||||
::: enable Enable Pi-Hole DNS Blocking
|
||||
|
@ -234,6 +234,6 @@ case "${1}" in
|
|||
"disable" ) piholeEnable 0;;
|
||||
"status" ) piholeStatus "$2";;
|
||||
"restartdns" ) restartDNS;;
|
||||
"-web" | "webpage" ) webpageFunc "$@";;
|
||||
"-a" | "admin" ) webpageFunc "$@";;
|
||||
* ) helpFunc;;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue