summaryrefslogtreecommitdiff
path: root/nautilus-installer
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 /nautilus-installer
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.
Diffstat (limited to 'nautilus-installer')
-rw-r--r--nautilus-installer/src/prescript12
1 files changed, 12 insertions, 0 deletions
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