diff options
Diffstat (limited to 'filehooker/root-image/krebs/bin/tor_announce.ship')
-rwxr-xr-x | filehooker/root-image/krebs/bin/tor_announce.ship | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/filehooker/root-image/krebs/bin/tor_announce.ship b/filehooker/root-image/krebs/bin/tor_announce.ship new file mode 100755 index 00000000..bf9d58dc --- /dev/null +++ b/filehooker/root-image/krebs/bin/tor_announce.ship @@ -0,0 +1,17 @@ +#!/bin/sh +#@include core +. /krebs/lib/core +#@include network +. /krebs/lib/network +#@include tor +. /krebs/lib/tor + +test -w "$torrc" || ( error "$torrc is not writable!"; exit 1 ) || exit 1 + +configure_hidden_service +test ! -e $hidden_service_dir/hostname && \ + info "hidden service file does not exist, restarting tor" && \ + systemctl restart tor && \ + sleep 1 + +cat $hidden_service_dir/hostname | send_irc |