repo: resdb action: commit revision: path_from: revision_from: 49fa2b238b220eff410c42abbea8eb8c57b7c64b: path_to: revision_to:
commit 49fa2b238b220eff410c42abbea8eb8c57b7c64b Author: NickDate: Tue Jun 15 20:12:25 2010 +0000 added an export script for dn42 diff --git a/scripts/export/dn42_registry b/scripts/export/dn42_registry new file mode 100755 index 0000000000000000000000000000000000000000..88059262b409cbe26bbd48007ac383a1d0d9090a --- /dev/null +++ b/scripts/export/dn42_registry @@ -0,0 +1,20 @@ +#!/bin/sh +if ! ./scripts/check_db_safety; then + exit 1 +fi +mkdir -p export/dn42/data/dns || exit 1 +for d in db/dom/dn42/* ; do + domain="`basename $d`.dn42" + owner="`cat $d/owner | tr a-z A-Z`-DN42" + ( + echo -e "domain:\t\t$domain" + for ns in $d/ns/* ; do + nsname="`basename $ns`" + nsip="`cat $ns`" + echo -e "nserver:\t$nsname $nsip" + done + echo -e "status:\t\tconnect" + echo -e "admin-c:\t$owner" + echo -e "tech-c:\t\t$owner" + ) > "export/dn42/data/dns/$domain" +done
-----END OF PAGE-----