the beginnings of a description of how to setup a Samba appliance
authorAndrew Tridgell <tridge@samba.org>
Tue, 9 May 2000 04:02:31 +0000 (04:02 +0000)
committerAndrew Tridgell <tridge@samba.org>
Tue, 9 May 2000 04:02:31 +0000 (04:02 +0000)
(This used to be commit ec2b77e97d8beaee9d2352411da01b302d0875c3)

examples/appliance/Makefile [new file with mode: 0644]
examples/appliance/README [new file with mode: 0644]

diff --git a/examples/appliance/Makefile b/examples/appliance/Makefile
new file mode 100644 (file)
index 0000000..d6f4080
--- /dev/null
@@ -0,0 +1,54 @@
+# Samba appliance Makefile
+# use at your own risk!
+
+PREFIX=/usr/local/samba
+CONFIGOPTS=--with-pam --prefix=$(PREFIX)
+
+
+all: headb tngb
+
+config:
+       (cd head/source; CFLAGS="-Wall -g" ./configure $(CONFIGOPTS))
+       (cd tng;  CFLAGS="-Wall -g" ./configure $(CONFIGOPTS) --enable-shared=no)
+
+headb:
+       (cd head/source; make)  
+
+tngb:
+       (cd tng; make bin/samedit bin/winbindd nsswitch)
+
+clean:
+       (cd head/source; make clean)
+       (cd tng; make clean)
+
+distclean:
+       (cd head/source; make clean; rm -f config.cache; rm -f Makefile)
+       (cd tng; make clean; rm -f config.cache; rm -f Makefile)
+
+install: installhead installtng
+
+installbin: installheadbin installtng
+
+installhead:
+       (cd head/source; make install)
+
+installheadbin:
+       (cd head/source; make installbin)
+
+installtng: tngb
+       (cd tng; \
+       rm -f $(PREFIX)/bin/samedit $(PREFIX)/bin/winbindd; \
+       cp bin/samedit bin/winbindd $(PREFIX)/bin; \
+       rm -f /lib/libnss_ntdom.so.2 /lib/security/pam_winbind.so; \
+       cp nsswitch/libnss_ntdom.so /lib/libnss_ntdom.so.2; \
+       cp nsswitch/pam_winbind.so /lib/security/)
+
+stop:
+       -killall winbindd smbd nmbd
+
+start:
+       $(PREFIX)/bin/smbd
+       $(PREFIX)/bin/nmbd
+       $(PREFIX)/bin/winbindd
+
+restart: stop start
diff --git a/examples/appliance/README b/examples/appliance/README
new file mode 100644 (file)
index 0000000..a286d7f
--- /dev/null
@@ -0,0 +1,3 @@
+This is the beginnings of how to setup Samba as a network
+appliance. 
+