Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / test / cli / ceph-conf / invalid-args.t
1   $ cat >test.conf <<EOF
2   > [bar]
3   > bar = green
4   > EOF
5
6 # TODO output an error
7   $ ceph-conf -c test.conf broken
8   [1]
9
10   $ ceph-conf -c test.conf --name total.garbage
11   error parsing 'total.garbage': expected string of the form TYPE.ID, valid types are: auth, mon, osd, mds, mgr, client
12   [1]
13
14   $ ceph-conf -c test.conf -s bar
15   You must give an action, such as --lookup or --list-all-sections.
16   Pass --help for more help.
17   [1]