diff options
| author | Vincenzo Maffione <v.maffione@gmail.com> | 2017-04-12 12:12:26 +0200 | 
|---|---|---|
| committer | Vincenzo Maffione <v.maffione@gmail.com> | 2017-04-12 12:12:26 +0200 | 
| commit | c5471a128e2164abe113f4b0bf1276673e6c01d0 (patch) | |
| tree | e59e7513e5ede9ce509f6ef2b1b7b4b7be7b6edf /examples | |
| parent | 9202aadd1f2c635f2bf0ccfba8ea1d8d1eeab923 (diff) | |
| download | rumba-c5471a128e2164abe113f4b0bf1276673e6c01d0.tar.gz rumba-c5471a128e2164abe113f4b0bf1276673e6c01d0.zip  | |
examples: minor changes to use "root" user and password
Diffstat (limited to 'examples')
| -rwxr-xr-x | examples/example.py | 3 | ||||
| -rwxr-xr-x | examples/two-layers.py | 3 | 
2 files changed, 4 insertions, 2 deletions
diff --git a/examples/example.py b/examples/example.py index 0d8fcd9..54ecd37 100755 --- a/examples/example.py +++ b/examples/example.py @@ -31,7 +31,8 @@ b = Node("b",           dif_registrations = {n1 : [e1]})  tb = qemu.Testbed(exp_name = "example1", -                  username = "vmaffione", +                  username = "root", +                  password = "root",                    bzimage = '/home/vmaffione/git/rlite/demo/buildroot/bzImage',                    initramfs = '/home/vmaffione/git/rlite/demo/buildroot/rootfs.cpio') diff --git a/examples/two-layers.py b/examples/two-layers.py index 687c99f..9032588 100755 --- a/examples/two-layers.py +++ b/examples/two-layers.py @@ -43,7 +43,8 @@ d = Node("d",           dif_registrations = {n3: [n2], n2 : [e3]})  tb = qemu.Testbed(exp_name = "twolayers", -                  username = "vmaffione", +                  username = "root", +                  password = "root",                    bzimage = '/home/vmaffione/git/rlite/demo/buildroot/bzImage',                    initramfs = '/home/vmaffione/git/rlite/demo/buildroot/rootfs.cpio')  | 
