Skip to content

Commit

Permalink
r6783: Fixes for Solaris 9.
Browse files Browse the repository at this point in the history
(This used to be commit cf4d9dc)
  • Loading branch information
John Terpstra authored and Gerald (Jerry) Carter committed Oct 10, 2007
1 parent 4a5a402 commit eef4ad4
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 10 deletions.
9 changes: 7 additions & 2 deletions packaging/Solaris/makepkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,11 @@ add_dynamic_entries()
echo f none bin/smbsh 0755 root other
fi

echo "#\n# nss_winbind.so\n#"
echo "#\n# nss_winbind.so and nss_wins.so\n#"
echo f none /lib/nss_winbind.so.1=lib/nss_winbind.so.1 0755 root other
echo f none /lib/nss_wins.so.1=lib/nss_wins.so.1 0755 root other
# echo s none /lib/nss_winbind.so.1=/usr/lib/nss_winbind.so.1 0755 root other
# echo s none /lib/nss_wins.so.1=/usr/lib/nss_wins.so.1 0755 root other
if [ -f lib/pam_winbind.so ]; then
echo f none /usr/lib/security/pam_winbind.so=lib/pam_winbind.so 0755 root other
fi
Expand Down Expand Up @@ -146,6 +148,7 @@ SBINDIR=`bin/smbd -b | grep SBINDIR | awk '{print $2}'`
BINDIR=`bin/smbd -b | grep BINDIR | grep -v SBINDIR | awk '{print $2}'`
SWATDIR=`bin/smbd -b | grep SWATDIR | awk '{print $2}'`
CONFIGFILE=`bin/smbd -b | grep CONFIGFILE | awk '{print $2}'`
LOCKDIR=`bin/smbd -b | grep LOCKDIR | awk '{print $2}'`
CONFIGDIR=`dirname $CONFIGFILE`
LOGFILEBASE=`bin/smbd -b | grep LOGFILEBASE | awk '{print $2}'`
LIBDIR=`bin/smbd -b | grep LIBDIR | awk '{print $2}'`
Expand All @@ -154,8 +157,9 @@ PRIVATE_DIR=`bin/smbd -b | grep PRIVATE_DIR | awk '{print $2}'`
DOCDIR=$INSTALL_BASE/docs

##
## copy some misc files that are ont done as part of 'make install'
## copy some misc files that are not done as part of 'make install'
##
cp -fp nsswitch/libnss_wins.so $TMPINSTALLDIR/$LIBDIR/nss_wins.so.1
cp -fp nsswitch/libnss_winbind.so $TMPINSTALLDIR/$LIBDIR/nss_winbind.so.1
if [ -f nsswitch/pam_winbind.so ]; then
cp -fp nsswitch/pam_winbind.so $TMPINSTALLDIR/$LIBDIR/pam_winbind.so
Expand Down Expand Up @@ -198,6 +202,7 @@ done
##
echo "CONFIGDIR=$CONFIGDIR" >> pkginfo
echo "LOGFILEBASE=$LOGFILEBASE" >> pkginfo
echo "LOCKDIR=$LOCKDIR" >> pkginfo
echo "PIDDIR=$PIDDIR" >> pkginfo
echo "PRIVATE_DIR=$PRIVATE_DIR" >> pkginfo

Expand Down
4 changes: 3 additions & 1 deletion packaging/Solaris/pkginfo.master
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ DESC=File and printer sharing for Windows workstations
HOTLINE=Please contact your local UNIX support group
[email protected]
CLASSES=none
BASEDIR=__BASEDIR__
INTONLY=1
ISTATES="S s 1 2 3"
RSTATES="S s 1 2 3"
BASEDIR=__BASEDIR__
2 changes: 2 additions & 0 deletions packaging/Solaris/prototype.master
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ d none $CONFIGDIR ? ? ?
d initscript /etc/init.d ? ? ?
f initscript /etc/init.d/samba=scripts/samba.init 0744 root sys
d initscript /etc/rc3.d ? ? ?
f initscript /sbin/samba=scripts/samba.init 0750 root root
#
# Stuff to set up SWAT
#
Expand All @@ -27,6 +28,7 @@ e swat /etc/inet/inetd.conf=scripts/inetd.conf ? ? ?
d none docs 755 root other
d none man 755 root other
d none $CONFIGDIR 755 root sys
d none $LOCKDIR 755 root other
d none $PRIVATE_DIR 700 root sys
d none sbin 0755 root other
d none bin 0755 root other
Expand Down
19 changes: 12 additions & 7 deletions packaging/Solaris/samba.init.master
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,14 @@ case "$1" in
'start')
#
# Edit these lines to suit your installation (paths, workgroup, host)
# Add the following parameters to nmbd, smbd, winbindd if needed
# (this may be needed for custom file locations)
# -D -s$BASE/lib/smb.conf
#
BASE=__BASEDIR__/samba
$BASE/bin/smbd -D -s$BASE/lib/smb.conf
$BASE/bin/nmbd -D -s$BASE/lib/smb.conf
BASE=__BASEDIR__
$BASE/sbin/nmbd
$BASE/sbin/smbd
$BASE/sbin/winbindd
;;
'stop')
killproc nmbd
Expand All @@ -37,12 +41,13 @@ case "$1" in
'restart')
killproc nmbd
killproc smbd
BASE=__BASEDIR__/samba
$BASE/bin/smbd -D -s$BASE/lib/smb.conf
$BASE/bin/nmbd -D -l$BASE/var/log -s$BASE/lib/smb.conf
BASE=__BASEDIR__
$BASE/sbin/nmbd
$BASE/sbin/smbd
$BASE/sbin/winbindd
;;

*)
echo "Usage: /etc/init.d/samba.server { start | stop | restart }"
echo "Usage: /etc/init.d/samba { start | stop | restart }"
;;
esac

0 comments on commit eef4ad4

Please sign in to comment.