blob: 8e1fe24afc346c2bd62abb43173e0cbd671023d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#? /bin/sh
# This is the project to use the SOAP connector of OVH to change zone
# entries for krebsco.de
set -euf
# install ovh soapi
cd /path/to/krebscode/painload
make -C ovh/soapi install
# edit the zone
export PATH="$PWD/bin${PATH+:$PATH}"
export KREBS_OVH_USER=...
export KREBS_OVH_PASS=...
zoneEntryAdd "krebsco.de" "subdomain" "A" "a.b.c.d."
# ZoneExport Broken since 2012-07-16
# zoneExport > /tmp/foo
# $EDITOR /tmp/foo
# zoneImport < /tmp/foo
# Have a nice day!^_^
|