Compare commits
No commits in common. "3971ab3f201c713ea1ba6df123b9bf0986365abd" and "6ac58634b89dc44d4f5d898ad16781db1761db97" have entirely different histories.
3971ab3f20
...
6ac58634b8
@ -2,9 +2,9 @@
|
||||
|
||||
set -e
|
||||
|
||||
if [ `which "unbound-$1" 2>/dev/null` ]; then
|
||||
if [ `which unbound-$1 2>/dev/null` ]; then
|
||||
set -- unbound-"$@"
|
||||
elif [ ! `which "$1" 2>/dev/null` ]; then
|
||||
elif [ ! `which $1 2>/dev/null` ]; then
|
||||
set -- unbound -dv "$@"
|
||||
fi
|
||||
|
||||
|
@ -7,7 +7,7 @@ import (
|
||||
)
|
||||
|
||||
func init() {
|
||||
router.GET("/api/grades/", remoteValidatorHandler(apiHandler(computeGrades)))
|
||||
router.GET("/api/grades/", apiHandler(computeGrades))
|
||||
}
|
||||
|
||||
func computeGrades(_ httprouter.Params, _ []byte) (interface{}, error) {
|
||||
|
@ -780,7 +780,7 @@ files:
|
||||
- path: /usr/sbin/join-maatma
|
||||
contents: |
|
||||
#!/bin/sh
|
||||
[ -s "/var/lib/adlin/wireguard/adlin.token" ] && echo "A token is already defined. You'll erase it if you continue."
|
||||
[ -s "/var/lib/adlin/wireguard/adlin.token" ] && echo "A token is already defined. You'll erase it it you continue."
|
||||
echo -n "Please copy your token here: "
|
||||
read WGTOKEN
|
||||
mkdir -p /var/lib/adlin/wireguard/
|
||||
|
Reference in New Issue
Block a user