(targetdir)
| 367 | rsynccall = ["rsync","-ax","--delete"] + [targetdir,"/etc/"] |
| 368 | check_call( rsynccall ) |
| 369 | def remove_backup(targetdir): |
| 370 | check_call( ["rm","-rf",targetdir] ) |
| 371 | |
| 372 | def list_zonespods(host): |
| 373 | text = urllib.request.urlopen('http://%s:8096/client/api?command=listPods'%host).read(-1) |
nothing calls this directly
no test coverage detected