diff options
Diffstat (limited to 'ovh/README')
-rw-r--r-- | ovh/README | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ovh/README b/ovh/README new file mode 100644 index 00000000..43020fd9 --- /dev/null +++ b/ovh/README @@ -0,0 +1,22 @@ +#? /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=... + +zoneExport > /tmp/foo +$EDITOR /tmp/foo +zoneImport < /tmp/foo + +# Have a nice day!^_^ |