diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2006-07-12 00:16:32 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2006-07-12 00:16:32 +0000 |
commit | 16b56ac16cabedd75caae5f2f7906cb63544e472 (patch) | |
tree | 524182c9ba98eb8d1327f47095ea38de500464db /net/samba3/files/patch-script_installbin.sh.in | |
parent | - Update to 1.5 (diff) |
- Upgrade to 3.0.23 (including security fix).
o Improved 'make test'
o New offline mode in winbindd.
o New Kerberos support for pam_winbind.so.
o New handling of unmapped users and groups.
o New non-root share management tools.
o Improved support for local and BUILTIN groups.
o Winbind IDMAP integration with RFC2307 schema objects supported
by Windows 2003 R2.
o Rewritten 'net ads join' to mimic Windows XP without requiring
administrative rights to join a domain.
PR: ports/100100
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=167548
Diffstat (limited to 'net/samba3/files/patch-script_installbin.sh.in')
-rw-r--r-- | net/samba3/files/patch-script_installbin.sh.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/net/samba3/files/patch-script_installbin.sh.in b/net/samba3/files/patch-script_installbin.sh.in new file mode 100644 index 000000000000..62743918b3e1 --- /dev/null +++ b/net/samba3/files/patch-script_installbin.sh.in @@ -0,0 +1,15 @@ +--- script/installbin.sh.in.orig Sun Jun 25 04:08:55 2006 ++++ script/installbin.sh.in Sun Jun 25 04:10:00 2006 +@@ -13,11 +13,7 @@ + for p in $*; do + p2=`basename $p` + echo "Installing $p as $DESTDIR/$BINDIR/$p2 " +- if [ -f $DESTDIR/$BINDIR/$p2 ]; then +- rm -f $DESTDIR/$BINDIR/$p2.old +- mv $DESTDIR/$BINDIR/$p2 $DESTDIR/$BINDIR/$p2.old +- fi +- cp $p $DESTDIR/$BINDIR/ ++ cp -f $p $DESTDIR/$BINDIR/ + chmod $INSTALLPERMS $DESTDIR/$BINDIR/$p2 + + # this is a special case, mount needs this in a specific location |