File tree 5 files changed +135
-75
lines changed
5 files changed +135
-75
lines changed Original file line number Diff line number Diff line change 10
10
steps :
11
11
-
12
12
name : Checkout repository
13
- uses : actions/checkout@v3.2 .0
13
+ uses : actions/checkout@v3.3 .0
14
14
-
15
15
name : Spell-Checking
16
16
uses : codespell-project/actions-codespell@master
Original file line number Diff line number Diff line change 9
9
name : editorconfig-checker
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v3.2 .0
12
+ - uses : actions/checkout@v3.3 .0
13
13
- uses : editorconfig-checker/action-editorconfig-checker@main # current tag v1.0.0 is really out-of-date
14
14
- run : editorconfig-checker
Original file line number Diff line number Diff line change 11
11
name : Syncing branches
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v3.2 .0
14
+ uses : actions/checkout@v3.3 .0
15
15
- name : Opening pull request
16
16
run : gh pr create -B development -H master --title 'Sync master back into development' --body 'Created by Github action' --label 'Internal'
17
17
env :
Original file line number Diff line number Diff line change @@ -7,14 +7,18 @@ PADD (formerly Chronometer2) is a more expansive version of the original chronom
7
7
*** Note:** PADD has been adopted by the Pi-hole team, thanks to JPMCK for creating this helpful tool!
8
8
9
9
## Setup PADD
10
-
11
- * More in-depth information about setting up PADD can be found in this repo’s [ wiki] ( https://github.com/jpmck/PADD/wiki/Setup ) .*
10
+ * More in-depth information about setting up PADD can be found in this repo’s [ wiki] ( https://github.com/pi-hole/PADD/wiki/Setup ) .*
12
11
13
12
- Get a copy of PADD by running:
14
13
15
14
``` bash
16
15
cd ~
17
- wget -N https://raw.githubusercontent.com/pi-hole/PADD/master/padd.sh
16
+ wget -O padd.sh https://install.padd.sh
17
+ ```
18
+ or
19
+ ``` bash
20
+ cd ~
21
+ curl -sSL https://install.padd.sh -o padd.sh
18
22
```
19
23
20
24
- Make PADD executable by running
@@ -46,15 +50,15 @@ cd ~ ; echo "if [ \"\$TERM\" == \"linux\" ] ; then\n while :\n do\n ./padd.
46
50
- Reboot your Pi-Hole by running ` sudo reboot ` . PADD should now run when your Pi-Hole has completed booting.
47
51
48
52
## Updating PADD
49
-
50
- - Just run
51
-
53
+ - Just run the same commands you used to install
52
54
``` bash
53
55
cd ~
54
- wget -N https://raw.githubusercontent.com/pi-hole/PADD/master/padd.sh
56
+ wget -O padd.sh https://install.padd.sh
57
+ ```
58
+ ``` bash
59
+ cd ~
60
+ curl -sSL https://install.padd.sh -o padd.sh
55
61
```
56
-
57
- ** Note: if you are already running Chronometer2 v1.3.1 or below, you’ll need to follow [ these instructions] ( https://github.com/jpmck/PADD/wiki/Updating-from-Chronometer2 ) !**
58
62
59
63
## Running Pi-hole in a Docker Container
60
64
If you're running Pi-hole in the official Docker Container, ` padd.sh ` is pre-installed and named ` padd ` . It can be used with the following command:
You can’t perform that action at this time.
0 commit comments