diff options
-rw-r--r-- | packaging/SGI/STATUS..LCK | 0 | ||||
-rwxr-xr-x | packaging/SGI/idb.pl | 1 | ||||
-rwxr-xr-x | packaging/SGI/inetd.sh | 4 | ||||
-rwxr-xr-x | packaging/SGI/startswat.sh | 4 |
4 files changed, 4 insertions, 5 deletions
diff --git a/packaging/SGI/STATUS..LCK b/packaging/SGI/STATUS..LCK deleted file mode 100644 index e69de29bb2d..00000000000 --- a/packaging/SGI/STATUS..LCK +++ /dev/null diff --git a/packaging/SGI/idb.pl b/packaging/SGI/idb.pl index 4d472dc070d..7f9565694bf 100755 --- a/packaging/SGI/idb.pl +++ b/packaging/SGI/idb.pl @@ -233,7 +233,6 @@ while (@swatfiles) { print IDB "d 0755 root sys usr/samba/var $SRCPFX/packaging/SGI $PKG.sw.base\n"; print IDB "d 0755 root sys usr/samba/var/locks $SRCPFX/packaging/SGI $PKG.sw.base\n"; -print IDB "f 0644 root sys usr/samba/var/locks/STATUS..LCK $SRCPFX/packaging/SGI/STATUS..LCK $PKG.sw.base\n"; if ($PKG eq "samba_irix") { while(@books) { diff --git a/packaging/SGI/inetd.sh b/packaging/SGI/inetd.sh index 8c4c6cb8d8b..2f6d250d416 100755 --- a/packaging/SGI/inetd.sh +++ b/packaging/SGI/inetd.sh @@ -8,8 +8,8 @@ chkconfig samba off # # add SAMBA deamons to inetd.conf # -cp /etc/inetd.conf /etc/inetd.O -sed -e "/^netbios/D" -e "/^#SAMBA/D" /etc/inetd.O > /etc/inetd.conf +cp /etc/inetd.conf /etc/inetd.conf.O +sed -e "/^netbios/D" -e "/^#SAMBA/D" /etc/inetd.conf.O > /etc/inetd.conf echo '#SAMBA services' >> /etc/inetd.conf echo netbios-ssn stream tcp nowait root /usr/samba/bin/smbd smbd >> /etc/inetd.conf echo netbios-ns dgram udp wait root /usr/samba/bin/nmbd nmbd -S >> /etc/inetd.conf diff --git a/packaging/SGI/startswat.sh b/packaging/SGI/startswat.sh index c2fc9fb467d..d509b3b961a 100755 --- a/packaging/SGI/startswat.sh +++ b/packaging/SGI/startswat.sh @@ -2,8 +2,8 @@ # # 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 +cp /etc/inetd.conf /etc/inetd.conf.O +sed -e "/^swat/D" -e "/^#SWAT/D" /etc/inetd.conf.O > /etc/inetd.conf echo '#SWAT services' >> /etc/inetd.conf echo swat stream tcp nowait root /usr/samba/bin/swat swat >> /etc/inetd.conf |