summaryrefslogtreecommitdiffstats
path: root/elchos/root-image/krebs/bin/start-ncdc.ship
blob: 37d7cf450c473127c21fd9ef99d6d8bb9b829bf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env ship
set -euf
#@include filehooker
. /krebs/lib/filehooker
#@include network

# load elch-config
. /krebs/config.sh
ncdc_user="elch"

useradd -m $ncdc_user ||:

sudo -u $ncdc_user /usr/bin/tmux new-session -s dcpp -n ncdc -d ncdc 2>/dev/null || echo "ncdc is already running"

nick=$(cat /etc/hostname)
echo "using nick $nick"
ncdc_configure_nick "$nick"
sleep 1
dc_hub="$DC_HUB"
echo "connecting to $dc_hub"
ncdc_configure_hub "$dc_hub" "elch"


share_all_partitions

exit 0