f11fd9f2ab
nn is a menu based (point and shoot) netnews reader with a complete set of features to satisfy both the expert and the novice user. Since its first release in Denmark in 1984 (!), in Europe in 1988, and the global release in June 1989, it has replaced rn and other well-known news readers at many sites. from aaron w. hsu (MAINTAINER) with tweaks by ajacoutot@ and me
35 lines
603 B
Plaintext
35 lines
603 B
Plaintext
$OpenBSD: patch-inst_sh,v 1.1.1.1 2008/11/17 08:42:13 jasper Exp $
|
|
--- inst.sh.orig Mon Sep 29 19:35:08 2008
|
|
+++ inst.sh Mon Sep 29 19:36:00 2008
|
|
@@ -14,10 +14,6 @@ mkdir)
|
|
exit 1
|
|
fi
|
|
chmod $3 $2
|
|
- if ./usercheck 0 ; then
|
|
- chgrp $GROUP $2
|
|
- chown $OWNER $2
|
|
- fi
|
|
echo Created directory $2
|
|
fi
|
|
exit 0
|
|
@@ -25,19 +21,11 @@ mkdir)
|
|
copy)
|
|
cp $4 $3
|
|
chmod $2 $3/$4
|
|
- if ./usercheck 0 ; then
|
|
- chgrp $GROUP $3/$4
|
|
- chown $OWNER $3/$4
|
|
- fi
|
|
echo "$4 -> $3/$4"
|
|
exit 0
|
|
;;
|
|
chmod)
|
|
chmod $2 $3
|
|
- if ./usercheck 0 ; then
|
|
- chgrp $GROUP $3
|
|
- chown $OWNER $3
|
|
- fi
|
|
exit 0
|
|
;;
|
|
esac
|