X-Git-Url: https://git.hcoop.net/hcoop/domtool2.git/blobdiff_plain/540f03e7eb111c7e8e53751fe7f3b9675e7e05dc..385c3534feda76934476fd3a058574fc84e302da:/scripts/domtool-publish diff --git a/scripts/domtool-publish b/scripts/domtool-publish index 3279588..fad7e85 100755 --- a/scripts/domtool-publish +++ b/scripts/domtool-publish @@ -2,11 +2,18 @@ case $1 in apache) - /usr/bin/rsync --delete /var/domtool/vhosts/ /etc/apache2/vhosts/ + /usr/bin/rsync -r --delete /var/domtool/vhosts/ /etc/apache2/vhosts/ /etc/init.d/apache2 reload ;; + apache-down) + /etc/init.d/apache2 stop + ;; + apache-undown) + /usr/bin/rsync -r --delete /var/domtool/vhosts/ /etc/apache2/vhosts/ + /etc/init.d/apache2 start + ;; bind) - /usr/bin/rsync --delete /var/domtool/zones/ /etc/bind/zones/ + /usr/bin/rsync -r --delete /var/domtool/zones/ /etc/bind/zones/ /bin/cp /var/domtool/named.conf.local /etc/bind/ /etc/init.d/bind9 reload ;;