mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 17:10:33 -04:00
Create rc.d-style local startup script Fix omissions in pkg/PLIST Remove erroneous PREFIX in Makefile (and modify PLIST to match) Remove IS_INTERACTIVE (assume installation will run as root) Use union diffs instead of context diffs.
21 lines
509 B
Text
21 lines
509 B
Text
--- scripts/run_daemon.orig Mon Dec 18 20:27:42 1995
|
|
+++ scripts/run_daemon Thu Oct 3 20:08:24 1996
|
|
@@ -9,8 +9,8 @@
|
|
#
|
|
# bambi@Bond.edu.au
|
|
|
|
-INST_DIR=/usr/local/Minerva
|
|
-ADMIN="you@some.machine"
|
|
+INST_DIR=@@PREFIX@@
|
|
+ADMIN="root@@@HOSTNAME@@"
|
|
PROG=$1
|
|
|
|
if test ! -d "${INST_DIR}/debug"
|
|
@@ -34,6 +34,6 @@
|
|
|
|
" > mail.tmp
|
|
cat output >> mail.tmp
|
|
- /usr/ucb/mail -s "Minerva Daemon Crash Report" ${ADMIN} < mail.tmp
|
|
+ /usr/bin/mail -s "Minerva Daemon Crash Report" ${ADMIN} < mail.tmp
|
|
sleep 15
|
|
done
|