mirror of
https://github.com/iv-org/documentation.git
synced 2024-10-01 01:35:51 -04:00
Gluetun tutorial update: Add a shebang to the script
This commit is contained in:
parent
a651b80c58
commit
ae92fb9d0e
@ -111,6 +111,8 @@ Write a script named `restartvpn.sh` and add this content to it:
|
|||||||
Note: `2>&1` sent STDERR to STDOUT, `tee /path/to/restartvpn.log` will write the output of the script to /path/to/restartvpn.log (in the current directory) (while still printing it to the shell)
|
Note: `2>&1` sent STDERR to STDOUT, `tee /path/to/restartvpn.log` will write the output of the script to /path/to/restartvpn.log (in the current directory) (while still printing it to the shell)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
echo "BEGIN $(date --rfc-3339=seconds)" 2>&1 | tee /path/to/restartvpn.log
|
echo "BEGIN $(date --rfc-3339=seconds)" 2>&1 | tee /path/to/restartvpn.log
|
||||||
|
|
||||||
curl -X GET "http://127.0.0.1:8000/v1/publicip/ip" 2>&1 | tee /path/to/restartvpn.log # Print the original IP
|
curl -X GET "http://127.0.0.1:8000/v1/publicip/ip" 2>&1 | tee /path/to/restartvpn.log # Print the original IP
|
||||||
|
Loading…
Reference in New Issue
Block a user