Merge pull request #176 from robertbaldyga/config-type-field
tests: Add field 'type' to example dut config
This commit is contained in:
commit
343d041160
@ -1,3 +1,7 @@
|
|||||||
|
# DUT type should be either "local" or "ssh"
|
||||||
|
# if ssh is selected, then ip, user and password fields are required
|
||||||
|
type: "local"
|
||||||
|
|
||||||
# ip: "x.x.x.x"
|
# ip: "x.x.x.x"
|
||||||
# user: "example_user"
|
# user: "example_user"
|
||||||
# password: "example_password"
|
# password: "example_password"
|
||||||
@ -7,11 +11,11 @@
|
|||||||
working_dir: "/tmp/open-cas-linux/"
|
working_dir: "/tmp/open-cas-linux/"
|
||||||
|
|
||||||
disks:
|
disks:
|
||||||
- path: '/dev/device_name1' # disk device path
|
- path: "/dev/device_name1" # disk device path
|
||||||
serial: 'ABC' # disk serial number
|
serial: "ABC" # disk serial number
|
||||||
type: 'nand' # disk type
|
type: "nand" # disk type
|
||||||
blocksize: 512 # 512B
|
blocksize: 512 # 512B
|
||||||
- path: '/dev/device_name2'
|
- path: "/dev/device_name2"
|
||||||
serial: 'DEF'
|
serial: "DEF"
|
||||||
type: 'hdd'
|
type: "hdd"
|
||||||
blocksize: 512
|
blocksize: 512
|
||||||
|
Loading…
Reference in New Issue
Block a user