mirror of
https://github.com/sstent/containers.git
synced 2025-12-06 08:01:51 +00:00
8 lines
219 B
Bash
8 lines
219 B
Bash
#!/bin/sh
|
|
CFGFILE=/etc/sockd.conf
|
|
PIDFILE=/tmp/sockd.pid
|
|
WORKERS=10
|
|
echo "Sleeping for 20"
|
|
#sleep 5
|
|
echo "/usr/sbin/danted -f $CFGFILE -p $PIDFILE -N $WORKERS -d 5 &"
|
|
/usr/sbin/danted -f $CFGFILE -p $PIDFILE -N $WORKERS |