2010-10-09 08:43:44 +00:00
|
|
|
---
|
|
|
|
programs/_plutorun/_plutorun.in | 2 +-
|
|
|
|
programs/_realsetup/_realsetup.in | 2 +-
|
|
|
|
programs/loggerfix | 5 +++++
|
|
|
|
3 files changed, 7 insertions(+), 2 deletions(-)
|
|
|
|
|
2010-02-20 04:25:47 +00:00
|
|
|
--- /dev/null
|
2011-02-20 15:18:26 +00:00
|
|
|
+++ b/programs/loggerfix
|
2008-08-20 22:00:41 +00:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+#!/bin/sh
|
|
|
|
+# use filename instead of /dev/null to log, but dont log to flash or ram
|
|
|
|
+# pref. log to nfs mount
|
|
|
|
+echo "$*" >> /dev/null
|
|
|
|
+exit 0
|
2011-02-20 15:18:26 +00:00
|
|
|
--- a/programs/_plutorun/_plutorun.in
|
|
|
|
+++ b/programs/_plutorun/_plutorun.in
|
2011-04-09 16:18:39 +00:00
|
|
|
@@ -157,7 +157,7 @@ then
|
2008-08-20 22:00:41 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
- if test ! -w "`dirname $stderrlog`"
|
2011-02-20 15:18:26 +00:00
|
|
|
+ if test ! -w "${stderrlog%/*}"
|
2008-08-20 22:00:41 +00:00
|
|
|
then
|
|
|
|
echo Cannot write to directory to create \"$stderrlog\".
|
|
|
|
exit 1
|
2011-02-20 15:18:26 +00:00
|
|
|
--- a/programs/_realsetup/_realsetup.in
|
|
|
|
+++ b/programs/_realsetup/_realsetup.in
|
2011-04-09 16:18:39 +00:00
|
|
|
@@ -291,7 +291,7 @@ case "$1" in
|
2010-10-02 16:53:46 +00:00
|
|
|
|
|
|
|
# misc pre-Pluto setup
|
|
|
|
|
|
|
|
- perform test -d $subsysdir "&&" touch $subsyslock
|
2011-02-20 15:21:56 +00:00
|
|
|
+ perform test -d "${subsyslock%/*}" "&&" touch $subsyslock "&&" rm -f $subsyslock
|
2010-10-02 16:53:46 +00:00
|
|
|
|
|
|
|
manualconns
|
|
|
|
|