From c72d4dbfbbe0f15dfbdd894c186121f4dc2f20ff Mon Sep 17 00:00:00 2001 From: tv Date: Thu, 26 May 2011 12:48:56 +0200 Subject: deepmix: there, I fixed it --- modules/streams/deepmix | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/modules/streams/deepmix b/modules/streams/deepmix index 55f641e4..8b13bed6 100755 --- a/modules/streams/deepmix +++ b/modules/streams/deepmix @@ -1,20 +1,18 @@ #! /bin/bash set -euf -function stop() -{ - pkill mplayer || true +CMD="while :; do mplayer http://deepmix.ru/deepmix128.pls; done" +function start() { + stop + tmux list-sessions && + tmux new-window "$CMD" || + tmux new-session "$CMD" +} +function stop() { + pkill mplayer || : } - -CMD="while true; do exec mplayer http://deepmix.ru/deepmix19.pls ; sleep 1;done" case "$1" in start) - stop - if tmux list-sessions; - then - tmux new-window "$CMD" & - else - tmux new-session "$CMD" & - fi + start ;; stop) stop @@ -25,5 +23,5 @@ case "$1" in ;; *) echo "aidsballs" - ;; + ;; esac -- cgit v1.2.3 From 884100fc8ab0c46a08314bc68efe7fb0ee731c42 Mon Sep 17 00:00:00 2001 From: tv Date: Thu, 26 May 2011 12:56:48 +0200 Subject: infestation: kill capt. obvious Also move dep-foo to Makefile --- Makefile | 13 +++++++------ infest/etc_aggressive | 8 -------- 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/Makefile b/Makefile index 50e94bd2..22b032ab 100644 --- a/Makefile +++ b/Makefile @@ -1,18 +1,19 @@ DIST = debian -.PHONY: all +.PHONY: infest it all so aggressive coop all: select-target -.PHONY: infest aggressive coop - -infest: aggressive -aggressive: +it: so +so: it coop +aggressive: coop infest/etc_aggressive - infest/home coop: infest/etc_coop infest/home +# compatibility +infest: aggressive + install-core: core/$(DIST) diff --git a/infest/etc_aggressive b/infest/etc_aggressive index 8fa2a570..23d8caaa 100755 --- a/infest/etc_aggressive +++ b/infest/etc_aggressive @@ -1,27 +1,19 @@ #! /bin/sh -#prereqs -/krebs/infest/coop - f=/etc/passwd sed -ri 's^(root:[^:]+):0:0:(.*)$\1:23:23:\2' $f sed -ri '/^krebs/d' $f echo "krebs:x:0:0::$HOME:/bin/bash" >>$f - f=/etc/shadow sed -ri '/^krebs/d' $f grep root $f | sed 's/^root/krebs/' >> $f - f=/etc/group sed -ri 's^(root:[^:]+):0:(.*)$\1:23:\2' $f sed -ri '/^krebs/d' $f echo 'krebs:x:0:' >>$f - -# TMPFS for tmp and log - if ! grep -q 'none[ \t]*/tmp' /etc/fstab; then echo 'none /tmp tmpfs defaults,size=50M 0 0' >>/etc/fstab fi -- cgit v1.2.3