summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>1998-08-07 18:56:12 +0000
committerHerb Lewis <herb@samba.org>1998-08-07 18:56:12 +0000
commit05e6d0bcc19019c5cdba150ba84f911cf5f51381 (patch)
tree9f08c5526df9c6534c2bc426eb765ab83921a7bd
parenta4b872451e5195063d657bff8763227e9f82b4b9 (diff)
downloadsamba-05e6d0bcc19019c5cdba150ba84f911cf5f51381.tar.gz
samba-05e6d0bcc19019c5cdba150ba84f911cf5f51381.tar.bz2
samba-05e6d0bcc19019c5cdba150ba84f911cf5f51381.zip
add startswat.sh to automate starting swat with inetd
update make scripts to use new autoconfigure setup (This used to be commit 737a58c1568fd76afe32a78895ee09b1543a595d)
-rwxr-xr-xpackaging/SGI/idb.pl1
-rwxr-xr-xpackaging/SGI/mkrelease.sh27
-rwxr-xr-xpackaging/SGI/startswat.sh21
3 files changed, 38 insertions, 11 deletions
diff --git a/packaging/SGI/idb.pl b/packaging/SGI/idb.pl
index 424c4ed130..a211322fa9 100755
--- a/packaging/SGI/idb.pl
+++ b/packaging/SGI/idb.pl
@@ -166,6 +166,7 @@ while (@sorted) {
}
}
+print IDB "f 0755 root sys usr/samba/startswat.sh packaging/SGI/startswat.sh samba.sw.base\n";
print IDB "d 0755 root sys usr/samba/swat/ packaging/SGI/swat samba.sw.base\n";
while (@swatfiles) {
$nextfile = shift @swatfiles;
diff --git a/packaging/SGI/mkrelease.sh b/packaging/SGI/mkrelease.sh
index e42f76e207..6f4b600f41 100755
--- a/packaging/SGI/mkrelease.sh
+++ b/packaging/SGI/mkrelease.sh
@@ -11,12 +11,9 @@ if [ "$1" = "clean" ]; then
shift
fi
-echo Create SGI specific Makefile
-./makefile.pl $1 # create the Makefile for the specified OS ver
-
if [ "$doclean" = "clean" ]; then
cd ../../source
- make -f ../packaging/SGI/Makefile clean
+ make clean
cd ../packaging/SGI
rm -rf bins catman html codepages swat samba.idb samba.spec
fi
@@ -31,18 +28,26 @@ if [ $errstat -ne 0 ]; then
exit $errstat;
fi
-# build the sources
-#
-echo Making binaries
+cd ../../source
+echo Create SGI specific Makefile
+./configure --prefix=/usr --mandir=/usr/src/man
errstat=$?
if [ $errstat -ne 0 ]; then
echo "Error $errstat creating Makefile\n";
exit $errstat;
fi
-cd ../../source
-# make -f ../packaging/SGI/Makefile clean
-make -f ../packaging/SGI/Makefile all
+
+# build the sources
+#
+echo Making binaries
+
+if [ "$1" = "5" ]; then
+ make "CFLAGS=-O -g3" all
+else
+ make "CFLAGS=-O -g3 -n32" all
+fi
+
errstat=$?
if [ $errstat -ne 0 ]; then
echo "Error $errstat building sources\n";
@@ -73,5 +78,5 @@ if [ ! -d bins ]; then
fi
# do the packaging
-/usr/sbin/gendist -rbase / -sbase ../.. -idb samba.idb -spec samba.spec -dist ./bins -all
+/usr/sbin/gendist -rbase / -sbase ../.. -idb samba.idb -spec samba.spec -dist ./bins -nostrip -all
diff --git a/packaging/SGI/startswat.sh b/packaging/SGI/startswat.sh
new file mode 100755
index 0000000000..c2fc9fb467
--- /dev/null
+++ b/packaging/SGI/startswat.sh
@@ -0,0 +1,21 @@
+#! /bin/sh
+#
+# add SWAT deamon to inetd.conf
+#
+cp /etc/inetd.conf /etc/inetd.O
+sed -e "/^swat/D" -e "/^#SWAT/D" /etc/inetd.O > /etc/inetd.conf
+echo '#SWAT services' >> /etc/inetd.conf
+echo swat stream tcp nowait root /usr/samba/bin/swat swat >> /etc/inetd.conf
+
+#
+# add SWAT service port to /etc/services
+#
+cp /etc/services /etc/services.O
+sed -e "/^swat/D" -e "/^#SWAT/D" /etc/services.O > /etc/services
+echo '#SWAT services' >> /etc/services
+echo 'swat 901/tcp # SWAT' >> /etc/services
+
+#
+# restart inetd to start SWAT
+#
+/etc/killall -HUP inetd