summaryrefslogtreecommitdiff
path: root/source3/script
diff options
context:
space:
mode:
authorKarolin Seeger <kseeger@samba.org>2008-02-28 15:49:57 +0100
committerKarolin Seeger <kseeger@samba.org>2008-02-28 15:53:43 +0100
commite1b32594c70ee57f16c84adb7910aa5c84a560f8 (patch)
tree6abd929e1bd75db182387f0bdde8d7771506f345 /source3/script
parent707012ab5f8b9a14766f11a2358403593c30758d (diff)
downloadsamba-e1b32594c70ee57f16c84adb7910aa5c84a560f8.tar.gz
samba-e1b32594c70ee57f16c84adb7910aa5c84a560f8.tar.bz2
samba-e1b32594c70ee57f16c84adb7910aa5c84a560f8.zip
Remove smbmount.
Karolin (This used to be commit 5fbd98f7065268ae134108310119078ad8f62322)
Diffstat (limited to 'source3/script')
-rwxr-xr-xsource3/script/installbin.sh.in9
-rwxr-xr-xsource3/script/installman.sh1
-rwxr-xr-xsource3/script/uninstallbin.sh.in6
3 files changed, 0 insertions, 16 deletions
diff --git a/source3/script/installbin.sh.in b/source3/script/installbin.sh.in
index 59a6c31ca8..c607d9e445 100755
--- a/source3/script/installbin.sh.in
+++ b/source3/script/installbin.sh.in
@@ -19,15 +19,6 @@ for p in $*; do
fi
cp $p $DESTDIR/$BINDIR/
chmod $INSTALLPERMS $DESTDIR/$BINDIR/$p2
-
- # this is a special case, mount needs this in a specific location
- if [ $p2 = smbmount ]; then
- if [ ! -d $DESTDIR/@rootsbindir@ ]; then
- mkdir $DESTDIR/@rootsbindir@
- fi
- echo "Creating sym link $DESTDIR/@rootsbindir@/mount.smbfs to $BINDIR/$p2 "
- ln -sf $BINDIR/$p2 $DESTDIR/@rootsbindir@/mount.smbfs
- fi
done
diff --git a/source3/script/installman.sh b/source3/script/installman.sh
index 7edc707ab0..869ce6ee38 100755
--- a/source3/script/installman.sh
+++ b/source3/script/installman.sh
@@ -49,7 +49,6 @@ for lang in $langs; do
# Check if this man page if required by the configured feature set
case "${MP_BASENAME}" in
smbsh.1) test -z "${SMBWRAPPER}" && continue ;;
- smbmnt.8|smbmount.8|smbumount.8) test -z "${SMBMOUNT_PROGS}" && continue ;;
*) ;;
esac
diff --git a/source3/script/uninstallbin.sh.in b/source3/script/uninstallbin.sh.in
index e1bbf6ecb1..8064db8d95 100755
--- a/source3/script/uninstallbin.sh.in
+++ b/source3/script/uninstallbin.sh.in
@@ -26,12 +26,6 @@ for p in $*; do
echo "Cannot remove $DESTDIR/$BINDIR/$p2 ... does $USER have privileges? "
fi
fi
-
- # this is a special case, mount needs this in a specific location
- if test "$p2" = smbmount -a -f "$DESTDIR/sbin/mount.smbfs"; then
- echo "Removing $DESTDIR/sbin/mount.smbfs "
- rm -f "$DESTDIR/@rootsbindir@/sbin/mount.smbfs"
- fi
done