summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Estrugo <ramiro@src.gnome.org>2000-11-02 21:01:38 +0000
committerRamiro Estrugo <ramiro@src.gnome.org>2000-11-02 21:01:38 +0000
commitce5362eafbf2374eb335fc3c02b8fddf3efbe173 (patch)
treeedabbde3e54ea4abf114ad86ce13de056d34d7df
parent0d02965091ea3aed3030ec9b74fecf5ac5d18bdb (diff)
downloadnautilus-ce5362eafbf2374eb335fc3c02b8fddf3efbe173.tar.gz
Fix bug 4374. Add Nautilus launcher to installer prescript.
* nautilus-installer/src/prescript: Fix bug 4374. Add Nautilus launcher to installer prescript.
-rw-r--r--ChangeLog5
-rw-r--r--nautilus-installer/src/prescript12
2 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 40ab7c45a..a67538e5b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-02 Ramiro Estrugo <ramiro@eazel.com>
+
+ * nautilus-installer/src/prescript:
+ Fix bug 4374. Add Nautilus launcher to installer prescript.
+
2000-11-02 Mike Fleming <mfleming@eazel.com>
* components/mozilla/mozilla-events.cpp:
diff --git a/nautilus-installer/src/prescript b/nautilus-installer/src/prescript
index c9ff0bf42..806f9a926 100644
--- a/nautilus-installer/src/prescript
+++ b/nautilus-installer/src/prescript
@@ -21,3 +21,15 @@ if test $UID -ne 0; then
xhost - localhost
exit
fi
+
+# Start the nautilus launcher if needed
+ps ax | grep -w 'nautilus-launcher-applet' > /dev/null 2>&1
+
+rv=$?
+
+echo $rv
+
+if [ $rv -ne 0 ]
+then
+ nautilus-launcher-applet &
+fi