summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-05-10 14:47:12 +0000
committerAndrew Tridgell <tridge@samba.org>2000-05-10 14:47:12 +0000
commit1c0cfff309be9360fa55ca2c72f6efd093f5a062 (patch)
tree2b2c3372c0fa47d22d4e91a3cda96b9b0e5ec590 /examples
parent4f21301ea65886f3ad73706ea63d06912d899ad1 (diff)
downloadsamba-1c0cfff309be9360fa55ca2c72f6efd093f5a062.tar.gz
samba-1c0cfff309be9360fa55ca2c72f6efd093f5a062.tar.bz2
samba-1c0cfff309be9360fa55ca2c72f6efd093f5a062.zip
updated appliance Makefile
(This used to be commit bfa14cff8c0a1a7a18cb649dc33d5aabc9cd53ac)
Diffstat (limited to 'examples')
-rw-r--r--examples/appliance/Makefile17
1 files changed, 15 insertions, 2 deletions
diff --git a/examples/appliance/Makefile b/examples/appliance/Makefile
index d6f40801c8..dcb0a1a81a 100644
--- a/examples/appliance/Makefile
+++ b/examples/appliance/Makefile
@@ -39,8 +39,8 @@ 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; \
+ rm -f /lib/libnss_winbind.so.2 /lib/security/pam_winbind.so; \
+ cp nsswitch/libnss_winbind.so /lib/libnss_winbind.so.2; \
cp nsswitch/pam_winbind.so /lib/security/)
stop:
@@ -52,3 +52,16 @@ start:
$(PREFIX)/bin/winbindd
restart: stop start
+
+updatehead:
+ (cd head; cvs -z9 update -d)
+
+updatetng:
+ (cd tng; cvs -z9 update -d)
+
+update: updatehead updatetng
+
+checkout:
+ -mkdir head tng
+ (cd head ; cvs -z9 co samba; mv samba head)
+ (cd head ; cvs -z9 co -r SAMBA_TNG samba/source; mv source tng)