summaryrefslogtreecommitdiffstats
path: root/filehooker/root-image/krebs/bin/start-ncdc.ship
blob: e190ec067b32a6ca7bc73b58061c118042537689 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env ship
set -euf
#@include filehooker
. /krebs/lib/filehooker
#@include network
ncdc_user="hooker"
useradd -m $ncdc_user ||:

dc_hub="adcs://elch.nsupdate.info:2781"
ncdc_configure_hub "$dc_hub" "elch"

nick=$(get_hostname)
ncdc_configure_nick "$nick"

share_all_partitions

sudo -u $ncdc_user /usr/bin/tmux new-session -s dcpp -n ncdc -d ncdc
exit 0