diff options
| author | root <root@krebs> | 2011-08-22 15:13:34 +0200 | 
|---|---|---|
| committer | root <root@krebs> | 2011-08-22 15:13:34 +0200 | 
| commit | 77653ab3cb741537e475c2556b6c164b74657e99 (patch) | |
| tree | d9cc3fd9b712082ff2572046d92dbdb532780f96 | |
| parent | 2be46b6392bd35dabf850f92d0829b452296e12b (diff) | |
| parent | 963b1ab3b05651afeec350e054a258595d067e26 (diff) | |
Merge branch 'master' of github.com:/krebscode/painload
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | cholerab/shirts/bestellliste | 11 | ||||
| -rw-r--r-- | ovh/soapi/Makefile | 25 | ||||
| -rwxr-xr-x | ovh/soapi/domainCapabilities | 24 | ||||
| -rwxr-xr-x | ovh/soapi/domainList | 24 | ||||
| -rwxr-xr-x | ovh/soapi/zoneEntryList | 24 | 
6 files changed, 105 insertions, 5 deletions
| @@ -3,3 +3,5 @@ a.out  /bin/  /node/src  /node/out +/ovh/soapi/src +/ovh/soapi/SOAPpy diff --git a/cholerab/shirts/bestellliste b/cholerab/shirts/bestellliste index d097ff7d..e23a963f 100644 --- a/cholerab/shirts/bestellliste +++ b/cholerab/shirts/bestellliste @@ -1,5 +1,6 @@ -tv:       2 M -          1 S +                GEZ +tv:       2 M   j +          1 S   j  ulrich:   1 M  felix:    2 M            1 S @@ -7,8 +8,8 @@ Lassulus: 2 M  Pfleidi:  1 L  Tensai:   1 L  Momo:     1 XXL -hadez:    1 L -          1 M +hadez:    1 L   j +          1 M   j  Phil:     1 S  Lukas:    1 M  Jan:      1 2XL @@ -18,6 +19,6 @@ Lotho:    1 XL  Sascha:   1 XL  Moritz:   1 M  RIPE:     1 XL -kh:       1 L +kh:       1 L   j  miefda:   1 L            1 XL diff --git a/ovh/soapi/Makefile b/ovh/soapi/Makefile new file mode 100644 index 00000000..6a4a3a6b --- /dev/null +++ b/ovh/soapi/Makefile @@ -0,0 +1,25 @@ +.PHONY: all install +all: select-target + +exes := $(shell \ +	find . -mindepth 1 -maxdepth 1 -type f -executable -exec basename \{\} \;) + +target_exes := $(addprefix ../../bin/,$(exes)) + +install: $(target_exes) + +../../bin/%: % SOAPpy +		ln -vsnf ../ovh/soapi/$* $@ + +src: +	mkdir $@ + +src/SOAPpy: src +	cd $< && \ +		svn co https://pywebsvcs.svn.sourceforge.net/svnroot/pywebsvcs/trunk/SOAPpy + +src/SOAPpy/build/lib/SOAPpy: src/SOAPpy +	cd $< && python setup.py build + +SOAPpy: src/SOAPpy/build/lib/SOAPpy +	ln -snf $< diff --git a/ovh/soapi/domainCapabilities b/ovh/soapi/domainCapabilities new file mode 100755 index 00000000..edce3f0d --- /dev/null +++ b/ovh/soapi/domainCapabilities @@ -0,0 +1,24 @@ +#!/usr/bin/python + +from os import environ +import pprint +from SOAPpy import WSDL + +soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] + +#login +session = soap.login(username, password, 'de', 0) +print "login successfull" + +#domainCapabilities +result = soap.domainCapabilities(session, 'krebsco.de') +print "domainCapabilities successfull" +pp = pprint.PrettyPrinter(indent=4) +pp.pprint(result) # your code here ... + +#logout +soap.logout(session) +print "logout successfull" diff --git a/ovh/soapi/domainList b/ovh/soapi/domainList new file mode 100755 index 00000000..3f829ebe --- /dev/null +++ b/ovh/soapi/domainList @@ -0,0 +1,24 @@ +#!/usr/bin/python + +from os import environ +import pprint +from SOAPpy import WSDL + +soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] + +#login +session = soap.login(username, password, 'de', 0) +print "login successfull" + +#domainHostList +result = soap.domainList(session) +print "domainList successfull" +pp = pprint.PrettyPrinter(indent=4) +pp.pprint(result) # your code here ... + +#logout +soap.logout(session) +print "logout successfull" diff --git a/ovh/soapi/zoneEntryList b/ovh/soapi/zoneEntryList new file mode 100755 index 00000000..7c032462 --- /dev/null +++ b/ovh/soapi/zoneEntryList @@ -0,0 +1,24 @@ +#!/usr/bin/python + +from os import environ +import pprint +from SOAPpy import WSDL + +soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] + +#login +session = soap.login(username, password, 'de', 0) +print "login successfull" + +#zoneEntryList +result = soap.zoneEntryList(session, 'krebsco.de') +print "zoneEntryList successfull" +pp = pprint.PrettyPrinter(indent=4) +pp.pprint(result) # your code here ... + +#logout +soap.logout(session) +print "logout successfull" | 
