Mercurial > sat_docs
view scripts/dns_srv/configure_dns_srv.sh @ 103:e69883c1ec30
docker (libervia_cont): added a "status" command:
- if libervia container is not running, it exits with error code 1
- if libervia container is running but no server is launched, it exits with error code 2
- if libervia container is running and server is launcher, it exits with error code 0 (success)
server detection is done by doing a simple grep on logs, that's not perfectly reliable (ports can be changed in configuration, even if that doesn't really make sense in Docker context) but should be good enough for this purpose.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 27 Feb 2016 00:45:40 +0100 |
parents | 358a4fc0e091 |
children |
line wrap: on
line source
#!/bin/bash # This script allows you to quickly change your bind9 configuration: # - define an internal domain and bind it to 127.0.0.1 # - add SRV records to use this domain with your local XMPP server # # It will mess up your actual bind9 configuration. It should not be used on # production servers but only on your development machine with local servers. # USE AT YOUR OWN RISK! Be sure to BACKUP /etc/bind and /var/cache/bind before! # # Configuration files based on: # - http://www.madboa.com/geek/soho-bind # - http://wiki.xmpp.org/web/SRV_Records # - http://prosody.im/doc/dns # # For this to work, Prosody configuration must define the domain as a VirtualHost. # It is also assumed that the Prosody "directory" option is set to "/var/cache/bind". # # Finally, you may want to modify your SàT configuration file to set the option # "new_account_domain" to that domain passed in $1 in order to register new # account from Libervia, and the "jid" option of sat_pubsub should be set to # "sat-pubsub.<domain>" for the (micro)blogging feature to work. # # You can also check this page with additional information about how to restore # your previously configured domains (if any...) after having ran the script: # http://wiki.goffi.org/wiki/How_to_change_your_Libervia%27s_domain_name/en if [ $# -lt 2 ]; then echo "Usage: `basename $0` <domain> <c2s_port>" exit 1 fi HOSTNAME=`cat /etc/hostname` DOMAIN=$1 C2S_PORT=$2 DATE=`date +%s` mkdir -p /tmp/$DATE/ cp -r template/* /tmp/$DATE/ cd /tmp/$DATE for FILE in `find . -type f`; do sed -e s/\<domain\>/$DOMAIN/g -e s/\<hostname\>/$HOSTNAME/g -e s/\<date\>/$DATE/g -e s/\<c2s_port\>/$C2S_PORT/g $FILE > `echo $FILE | sed -e 's/^.//' -e s/my.domain/$DOMAIN/` done /etc/init.d/bind9 restart tail /var/log/syslog