File: setup.sh

package info (click to toggle)
samba 3.0.24-6etch10
  • links: PTS
  • area: main
  • in suites: etch
  • size: 49,836 kB
  • ctags: 44,390
  • sloc: ansic: 335,711; sh: 8,133; perl: 7,045; makefile: 3,107; python: 2,370; exp: 1,147; yacc: 881; awk: 486; csh: 58; sed: 45
file content (27 lines) | stat: -rwxr-xr-x 916 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
#
# Note: This file MUST be edited to suit the target OS environment.
#

echo "Setting up for SWAT - The Samba Web Administration Tool"

echo 'swat		901/tcp' >> /etc/services
uniq /etc/services /tmp/tempserv
cp /tmp/tempserv /etc/services
rm /tmp/tempserv
echo 'swat	stream	tcp	nowait.400	root	/usr/local/samba/bin/swat swat' >> /etc/inetd.conf
uniq /etc/inetd.conf /tmp/tempinetd
cp /tmp/tempinetd /etc/inetd.conf
rm /tmp/tempinetd
echo "Creating Symbolic Links for Start up Scripts"
cp -f samba.init /sbin/init.d
chown bin.bin /sbin/init.d/samba.init
chmod 750 /sbin/init.d/samba.init
ln -sf /sbin/init.d/samba.init /sbin/rc0.d/K01samba
ln -sf /sbin/init.d/samba.init /sbin/rc2.d/K91samba
ln -sf /sbin/init.d/samba.init /sbin/rc3.d/S91samba
echo "Done. Now settting up samba command"
ln /sbin/init.d/samba.init /sbin/samba
echo "Done."
echo "To start / stop samba:"
echo "	execute:  samba [start | stop]