[PATCH sandbox v5 14/20] Image: Add network support

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



From: Eren Yagdiran <erenyagdiran@xxxxxxxxx>

Virt-sandbox-image will pass exact network arguments to virt-sandbox

Signed-off-by: Daniel P. Berrange <berrange@xxxxxxxxxx>
---
 libvirt-sandbox/image/cli.py | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/libvirt-sandbox/image/cli.py b/libvirt-sandbox/image/cli.py
index a06eb9c..30e2558 100755
--- a/libvirt-sandbox/image/cli.py
+++ b/libvirt-sandbox/image/cli.py
@@ -123,6 +123,12 @@ def run(args):
             cmd.append("-c")
             cmd.append(args.connect)
         params = ['-m','host-image:/=%s,format=%s' %(diskfile,format)]
+
+        networkArgs = args.network
+        if networkArgs is not None:
+            params.append('-N')
+            params.append(networkArgs)
+
         cmd = cmd + params + ['--'] + commandToRun
         subprocess.call(cmd)
         os.unlink(diskfile)
@@ -214,6 +220,8 @@ def gen_run_args(subparser):
     parser.add_argument("args",
                         nargs=argparse.REMAINDER,
                         help=_("command arguments to run"))
+    parser.add_argument("-N","--network",
+                        help=_("Network params for running template"))
     parser.set_defaults(func=run)
 
 def main():
-- 
2.4.3

--
libvir-list mailing list
libvir-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/libvir-list



[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]