From 98da300063721871ea36e43a3b34d59311643302 Mon Sep 17 00:00:00 2001 From: tv Date: Fri, 9 Sep 2011 15:02:29 +0200 Subject: //infest: purge make-patch --- infest/Makefile | 20 ++--------------- infest/bin/make-patch | 59 --------------------------------------------------- 2 files changed, 2 insertions(+), 77 deletions(-) delete mode 100755 infest/bin/make-patch (limited to 'infest') diff --git a/infest/Makefile b/infest/Makefile index ec5836a3..b96e1d7c 100644 --- a/infest/Makefile +++ b/infest/Makefile @@ -1,18 +1,2 @@ - -ifndef patch_file -patch_file := /etc/Verkrebsung.patch -endif - -ifndef patch_flags -patch_flags := -endif - -.PHONY: infest dry-run -infest: $(patch_file) - unset POSIXLY_CORRECT; patch $(patch_flags) -fNp0 < $< - -$(patch_file): bin/make-patch - $< >$@ - -dry-run: - make patch_file=/tmp/krebs-infest-dry-run.patch patch_flags=--dry-run +%: + @echo 'whatever you try: you are made of stupid!' >&2 diff --git a/infest/bin/make-patch b/infest/bin/make-patch deleted file mode 100755 index 1051c1aa..00000000 --- a/infest/bin/make-patch +++ /dev/null @@ -1,59 +0,0 @@ -#! /bin/sh - -t="`mktemp`" -p="`mktemp`" -trap "test -e $t && rm $t; test -e $p && rm $p" EXIT INT - -f=/etc/passwd -cat $f >$t -#sed -ri 's^(root:[^:]+):0:0:(.*)$\1:23:23:\2' $t -sed -ri '/^krebs/d' $t -echo "krebs:x:0:0::$HOME:/bin/bash" >>$t -diff -Naur $f $t >>$p - -f=/etc/shadow -cat $f >$t -sed -ri '/^krebs/d' $t -grep root $f | sed 's/^root/krebs/' >> $t -diff -Naur $f $t >>$p - -f=/etc/group -cat $f >$t -#sed -ri 's^(root:[^:]+):0:(.*)$\1:23:\2' $t -sed -ri '/^krebs/d' $t -echo 'krebs:x:0:' >>$t -diff -Naur $f $t >>$p - -f=/etc/fstab -cat $f >$t -if ! grep -q 'none[ \t]*/tmp' $t; then - echo 'none /tmp tmpfs defaults,size=50M 0 0' >>$t -fi -if ! grep -q 'none[ \t]*/var/log' $t; then - echo 'none /var/log tmpfs defaults,size=50M 0 0' >>$t -fi -diff -Naur $f $t >>$p - -readlink=`readlink -f $0` -dirname=`dirname $readlink` -echo $dirname/../skel >&2 -ls -l $dirname/../skel -if cd $dirname/../skel; then - if cd etc; then - find . -mindepth 1 -maxdepth 1 -exec diff -Naur /etc/\{\} \{\} \; >>$p - cd .. - sed -i ' - s:^+++ \./:+++ /etc/: - ' $p - fi - if cd home; then - find . -type f -exec diff -Naur $HOME/\{\} \{\} \; >>$p - cd .. - sed -i ' - s:^+++ \./:+++ '$HOME'/: - ' $p - fi - cd .. -fi - -cat $p -- cgit v1.2.3