Searched defs:clone (Results 1 - 4 of 4) sorted by relevance
| /lxc/src/python-lxc/examples/ |
| H A D | api_test.py | 194 clone = container.clone(CLONE_NAME) variable 195 assert(clone is not False) 197 print ("Renaming the clone to '%s'" % RENAME_NAME) 198 rename = clone.rename(RENAME_NAME)
|
| /lxc/src/lxc/tools/ |
| H A D | lxc_copy.c | 108 lxc-copy clone a container\n\ 115 -s, --snapshot create snapshot instead of clone\n\ 185 printf("Error: You must provide a NEWNAME for the clone.\n"); 366 struct lxc_container *clone; local 368 clone = c->clone(c, newname, newpath, flags, bdevtype, NULL, fssize, 370 if (!clone) { 372 fprintf(stderr, "clone failed\n"); 378 lxc_container_put(clone); 390 struct lxc_container *clone; local [all...] |
| /lxc/src/python-lxc/lxc/ |
| H A D | __init__.py | 235 def clone(self, newname, config_path=None, flags=0, bdevtype=None, member in class:Container 253 if _lxc.Container.clone(self, **args): 502 # clone: clone flags
|
| /lxc/src/lxc/ |
| H A D | lxccontainer.h | 558 * \param hookargs Additional arguments to pass to the clone hook script. 567 struct lxc_container *(*clone)(struct lxc_container *c, const char *newname, member in struct:lxc_container
|
Completed in 56 milliseconds