Mercurial > dnsbl
annotate Makefile.am @ 145:9b9bab1d3c21 stable-5-25
dump effective dnsbl_list with -c switch
author | carl |
---|---|
date | Sun, 15 Oct 2006 12:41:46 -0700 |
parents | aa07452e641b |
children | 8d7c439bb6fa |
rev | line source |
---|---|
105 | 1 SUBDIRS = src man html info |
112 | 2 hackdir = $(sysconfdir)/dnsbl |
108 | 3 hack_SCRIPTS = dnsbl |
117 | 4 hack_DATA = dnsbl.conf hosts-ignore.conf html-tags.conf tld.conf cctld.conf |
108 | 5 CLEANFILES = dnsbl xml/dnsbl xml/Makefile |
112 | 6 EXTRA_DIST = dnsbl.rc $(hack_DATA) dnsbl.spec $(wildcard xml/h*) $(wildcard xml/M*) $(wildcard xml/d*) |
105 | 7 |
108 | 8 dnsbl: $(srcdir)/dnsbl.rc |
9 rm -f dnsbl | |
10 echo "#!" $(BASH) >dnsbl | |
11 cat $(srcdir)/dnsbl.rc | \ | |
105 | 12 sed -e "s,SBINDIR,$(sbindir),g" | \ |
108 | 13 sed -e "s,SYSCONFDIR,$(sysconfdir),g" >>dnsbl |
105 | 14 |
108 | 15 chkconfig: dnsbl |
116
0094678a16d0
update all systems from tarball, make chkconfig creates dnsbl user if needed
carl
parents:
112
diff
changeset
|
16 /usr/bin/getent passwd dnsbl || /usr/sbin/useradd -r -d /etc/dnsbl -M -c "dnsbl pseudo-user" -s /sbin/nologin dnsbl |
112 | 17 mv -f $(sysconfdir)/dnsbl/dnsbl /etc/rc.d/init.d |
108 | 18 /sbin/chkconfig --del dnsbl |
19 /sbin/chkconfig --add dnsbl | |
105 | 20 |