diff options
author | Sigrid <ftrvxmtrx@gmail.com> | 2021-04-13 13:25:24 +0200 |
---|---|---|
committer | Sigrid <ftrvxmtrx@gmail.com> | 2021-04-13 13:25:24 +0200 |
commit | c613382caf1c0bffa38dc09f113d8c11dbc47628 (patch) | |
tree | e64f3ea81364882dd0a89fc7c38d1a988fa3f03d /rc | |
parent | c6cdee420da18fc02c44c257505f3c43a331c7a4 (diff) | |
download | plan9front-c613382caf1c0bffa38dc09f113d8c11dbc47628.tar.xz |
remove juke (use play or zuke instead)
Diffstat (limited to 'rc')
-rwxr-xr-x | rc/bin/juke | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/rc/bin/juke b/rc/bin/juke deleted file mode 100755 index 6a523d847..000000000 --- a/rc/bin/juke +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/rc -rfork e -wide=`{echo $vgasize | sed 's/(.*)x.*x.*/\1 > 240/' | hoc} -debug=0 -tflag='' -wflag='' -host='' -flags=() -sname=$user -if (! ~ $wide 1) { - flags=($flags -t) -} -while(! ~ $#* 0) { - switch ($1) { - case -d - debug=$2 - shift - case -t - tflag='-t' - case -h - host=$2 - shift - case -w - wflags='-w' - case -s - sname=$2 - shift - case -* - echo usage: juke [-d level] [-tw] [-s srv] [-h srvhost] >[1=2] - exit usage - } - shift -} -if (! test -f /mnt/playlist) { - if (! ~ $debug '0') echo mounting playlistfs - if (! test -e /srv/playlist.$sname && ! ~ $host ''){ - import -a $host /srv /srv - } - if (! mount -b /srv/playlist.$sname /mnt >/dev/null >[2]/dev/null){ - rm -f /srv/playlist.$sname - if (! ~ $debug '0') echo starting playlistfs - games/playlistfs -s $sname -d $debug - } -} -if (~ `{ls /mnt/juke >[2]/dev/null | sed '1q'} '') { - if (! test -e /srv/jukefs.$sname && ! ~ $host ''){ - import -a $host /srv /srv - } - if (! mount -b /srv/jukefs.$sname /mnt >/dev/null >[2]/dev/null){ - if (! ~ $debug '0') echo games/jukefs - games/jukefs -s $sname - } -} -if (~ $wflags '-w') { - exec games/jukebox -w -d $debug $tflag & -} -exec games/jukebox -d $debug $tflag |