blob: 5e4384e7b68eb0e319d1ffcdc7063c968abb88b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
set -eux
cd /var/lib/go-away || exit 1
test -d config/
test -f config/config.yml
test -f config/policy.yml
test -d config/snippets/
exec ./go-away \
--config config/config.yml \
--policy config/policy.yml \
--policy-snippets config/snippets/
|