search for: serverlst

Displaying 2 results from an estimated 2 matches for "serverlst".

Did you mean: serverlist
2004 Aug 06
3
subscription services on icecast2
oddsock wrote: > there are currently no subscription based implementations built in > icecast2. > I don't kow if anyone remembers myplay.com - but we basically built it on top of icecast with smart access controls suitable for subscription services. Sure, that was icecast v1.0 but it ultimately isn't that different. Of course... it still takes some time. The real work is all
2004 Aug 06
1
capturing pid from command line
..., ps auxw | fgrep icecast | fgrep -v fgrep | awk '{print $2}' a:/, <p>On Mon, 3 Nov 2003, Dave St John wrote: > Anyone know of or how to capture the pid via the command line in bash? > > i.e. i use this to capture shoutcast's process id > #!/bin/bash > SRV=`cat serverlst.txt` > > rm -rf pids/* > > > for c in $SRV ; do > > nohup ./sc_serv servers/$c > /dev/null 2>&1 & > > echo "$! - $c" | tee pids/$c.pid > > done > > that works successfully with shoutcast but not with icecast2, ideas anyone? > > &g...