domtool-publish: try to grab tokens if aklog is available
[hcoop/domtool2.git] / scripts / domtool-publish
CommitLineData
27e20924
AC
1#!/bin/sh -e
2
88c92f35
CE
3# grab tokens in case they were dropped by sudo
4if [ -x "$(which aklog)" ]; then
5 aklog
6fi
7
5543e924 8redo_exim() {
792c84b9 9 sudo -u domtool touch /var/domtool/local_domains.cfg /var/domtool/relay_domains.cfg /var/domtool/mailman_domains.cfg
5543e924
AC
10 /bin/echo -n "domainlist local_domains = " >/etc/exim4/conf.d/main/10_domtool-domains
11 /bin/cat /var/domtool/local_domains.cfg >>/etc/exim4/conf.d/main/10_domtool-domains
12 /bin/echo "" >>/etc/exim4/conf.d/main/10_domtool-domains
13 /bin/echo -n "domainlist relay_to_domains = " >>/etc/exim4/conf.d/main/10_domtool-domains
14 /bin/cat /var/domtool/relay_domains.cfg >>/etc/exim4/conf.d/main/10_domtool-domains
15 /bin/echo "" >>/etc/exim4/conf.d/main/10_domtool-domains
16 /bin/echo -n "domainlist mm_domains = " >>/etc/exim4/conf.d/main/10_domtool-domains
17 /bin/cat /var/domtool/mailman_domains.cfg >>/etc/exim4/conf.d/main/10_domtool-domains
18 /bin/echo "" >>/etc/exim4/conf.d/main/10_domtool-domains
4bfa6af3 19 service exim4 reload
5543e924
AC
20}
21
27e20924
AC
22case $1 in
23 apache)
71ba8736 24 /usr/bin/rsync -r --delete /var/domtool/vhosts/ /etc/apache2/vhosts/
4bfa6af3 25 service apache2 reload
27e20924 26 ;;
8e965b2d 27 apache-down)
4bfa6af3 28 service apache2 stop
8e965b2d
AC
29 ;;
30 apache-undown)
71ba8736 31 /usr/bin/rsync -r --delete /var/domtool/vhosts/ /etc/apache2/vhosts/
4bfa6af3 32 service apache2 start
8e965b2d 33 ;;
55d4a268
AC
34 apache1.3)
35 /usr/bin/rsync -r --delete /var/domtool/vhosts/ /etc/apache/vhosts/
4bfa6af3 36 service apache reload
55d4a268
AC
37 ;;
38 apache1.3-down)
4bfa6af3 39 service apache stop
55d4a268
AC
40 ;;
41 apache1.3-undown)
42 /usr/bin/rsync -r --delete /var/domtool/vhosts/ /etc/apache/vhosts/
4bfa6af3 43 service apache start
55d4a268 44 ;;
27e20924 45 bind)
71ba8736 46 /usr/bin/rsync -r --delete /var/domtool/zones/ /etc/bind/zones/
6b1ff6b1 47 /bin/chown -R bind /etc/bind/zones
27e20924 48 /bin/cp /var/domtool/named.conf.local /etc/bind/
438b8bdd
CE
49 /bin/chown root:bind /etc/bind/named.conf.local
50 /bin/chmod 644 /etc/bind/named.conf.local
4bfa6af3 51 service bind9 restart
27e20924
AC
52 ;;
53 exim)
792c84b9 54 sudo -u domtool touch /var/domtool/aliases /var/domtool/aliases.default
80fb3843 55 /bin/cp /var/domtool/aliases /etc/aliases.hosted
cd040866 56 /bin/cp /var/domtool/aliases.default /etc/aliases.wildcard
5543e924 57 redo_exim
27e20924
AC
58 ;;
59 mailman)
1edf2ddd
AC
60 /bin/echo "HCOOP_VHOSTS = {" >/etc/mailman/vhosts_cfg.py
61 /bin/cat /var/domtool/mailman.map >>/etc/mailman/vhosts_cfg.py
62 /bin/echo "}" >>/etc/mailman/vhosts_cfg.py
4bfa6af3 63 service mailman reload
5543e924 64 redo_exim
27e20924 65 ;;
08688401 66 courier)
8ca17b9a
CE
67 VMAILDB=`domtool-config -path vmaildb`
68 if [ -z "$VMAILDB" ]; then
69 echo "domtool-config not found, not syncing courier vmail userdb"
70 exit 1
71 fi
72 /usr/bin/rsync -r --delete ${VMAILDB}/ /etc/courier/userdb
7aa78013 73 /usr/sbin/makeuserdb
fb9aeb18 74 /bin/chown -R domtool:nogroup /etc/courier/userdb
2bc5ed22
AC
75 /bin/cat /etc/courier/userdb/* >/etc/courier/exim
76 /bin/chmod o-r /etc/courier/exim
77 /usr/sbin/exim_dbmbuild /etc/courier/exim /etc/courier/exim.dat
78 /bin/chgrp mail /etc/courier/exim.dat
79 /bin/chmod o-r /etc/courier/exim.dat
80 ;;
ebb51f80
CE
81 spamassassin)
82 SHAREDROOT=`domtool-config -path shared-root`
83 /usr/bin/rsync -r --delete ${SHAREDROOT}/email/spamassassin/addrs/ /etc/spamassassin/addrs
84 ;;
2bc5ed22
AC
85 smtplog)
86 /bin/grep $2 /var/log/exim4/mainlog
08688401 87 ;;
c17d0537 88 apache-fixperms)
fb9aeb18 89 /bin/chown -R domtool:nogroup /var/log/apache2/user
c17d0537
AC
90 ;;
91 apache1.3-fixperms)
fb9aeb18 92 /bin/chown -R domtool:nogroup /var/log/apache/user
c17d0537 93 ;;
563e7792
AC
94 users)
95 /bin/cp /var/domtool/waklog.conf /etc/apache2/
4bfa6af3 96 service apache2 reload
563e7792 97 ;;
73b95423 98 firewall)
0d3fb301
CE
99 # Ideally this would check if the config worked first
100 # (ferm failing just uses the previous config at
101 # least). Does it need to chown/chmod the generated
102 # rules?
890558f7 103 /bin/cp /var/domtool/firewall/*.conf /etc/ferm/
4bfa6af3 104 service ferm reload
93278775
CE
105 ;;
106 firewallpuppet)
107 # new firewall publishing method that integrates with puppet (sort of)
108 /bin/cp /var/domtool/firewall/*.conf /etc/ferm/
109 if [ ! -d /etc/puppetlabs ]; then
110 # legacy node
4bfa6af3 111 service ferm reload
93278775
CE
112 exit
113 fi
114 if ( /usr/sbin/ferm --noexec /etc/ferm/ferm.conf ); then
115 for chain in FERM-INPUT FERM-OUTPUT; do
116 /sbin/iptables -F $chain
117 /sbin/ip6tables -F $chain
118
119 /usr/sbin/ferm --domain ip --noexec --lines /etc/ferm/ferm.conf | iptables-restore --noflush
120 /usr/sbin/ferm --domain ip6 --noexec --lines /etc/ferm/ferm.conf | ip6tables-restore --noflush
121 done
122 else
123 echo "firewall: ferm failed, aborting regeneration."
124 fi
73b95423 125 ;;
27e20924 126 *)
73b95423 127 echo "Usage: domtool-publish [apache|bind|courier|exim|mailman|smtplog STRING|users|firewall]"
27e20924 128 ;;
51be7da6 129esac