5f1236d412
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9133 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
186 lines
4.8 KiB
Plaintext
186 lines
4.8 KiB
Plaintext
start:chdef_null
|
|
cmd:chdef
|
|
check:rc!=0
|
|
check:output=~Usage
|
|
end
|
|
|
|
start:chdef_t_o_attr
|
|
cmd:chdef -t network -o testnetwork net=111.222.33.0 mask=255.255.255.254
|
|
check:rc==0
|
|
cmd:lsdef -t network -l testnetwork
|
|
check:rc==0
|
|
check:output=~net=111.222.33.0
|
|
check:output=~mask=255.255.255.254
|
|
cmd:chdef -t network -o testnetwork net=111.222.34.0 mask=255.255.255.254 gateway=111.222.34.1
|
|
check:rc==0
|
|
cmd:lsdef -t network -l testnetwork
|
|
check:rc==0
|
|
check:output=~net=111.222.34.0
|
|
check:output=~mask=255.255.255.254
|
|
check:output=~gateway=111.222.34.1
|
|
cmd:rmdef -t network testnetwork
|
|
end
|
|
|
|
start:chdef_p_t_o_attr
|
|
cmd:mkdef -t node -o testnode groups=all
|
|
check:rc==0
|
|
cmd:chdef -p -t node -o testnode groups=aix
|
|
check:rc==0
|
|
cmd:lsdef -t node -l testnode
|
|
check:output=~groups=all,aix
|
|
cmd:rmdef -t node testnode
|
|
end
|
|
|
|
start:chdef_m_t_o_attr
|
|
cmd:mkdef -t node -o testnode groups=all,testgroup
|
|
check:rc==0
|
|
cmd:chdef -m -t node -o testnode groups=testgroup
|
|
check:rc==0
|
|
cmd:lsdef -t node -l testnode
|
|
check:output!~testgroup
|
|
cmd:rmdef -t node testnode
|
|
end
|
|
|
|
start:chdef_z
|
|
cmd:mkdef -t node -o testnode groups=all
|
|
check:rc==0
|
|
cmd:lsdef -l $$CN -z > /tmp/testnode.stanza
|
|
check:rc==0
|
|
cmd:perl -pi -e 's/$$CN/testnode/g' /tmp/testnode.stanza
|
|
cmd:cat /tmp/testnode.stanza | chdef -z
|
|
check:rc==0
|
|
cmd:lsdef -l testnode -z > /tmp/testnode1.stanza
|
|
check:rc==0
|
|
cmd:diff -w /tmp/testnode.stanza /tmp/testnode1.stanza
|
|
check:rc==0
|
|
cmd:rm -f /tmp/testnode1.stanza
|
|
cmd:rm -f /tmp/testnode.stanza
|
|
cmd:rmdef -t node testnode
|
|
end
|
|
|
|
start:chdef_t_o_attr_noderange
|
|
cmd:chdef -t node -o orignode mgt=fsp cons=hmc pprofile=orignode groups=lpar,all
|
|
check:rc==0
|
|
cmd:lsdef -l orignode -z > /tmp/orignode.stanza
|
|
check:rc==0
|
|
cmd:perl -pi -e 's/orignode/testnode/g' /tmp/orignode.stanza
|
|
cmd:cat /tmp/orignode.stanza | chdef -z
|
|
check:rc==0
|
|
cmd:lsdef -l testnode -z > /tmp/testnode.stanza
|
|
check:rc==0
|
|
cmd:diff /tmp/orignode.stanza /tmp/testnode.stanza
|
|
check:rc==0
|
|
cmd:rm -f /tmp/orignode.stanza
|
|
cmd:rm -f /tmp/testnode.stanza
|
|
cmd:rmdef -t node testnode
|
|
cmd:rmdef -t node orignode
|
|
end
|
|
|
|
start:chdef_group
|
|
description:chdef with node group
|
|
cmd:mkdef -t node -o testnode1-testnode2 mgt=hmc cons=hmc groups=all,systemp
|
|
check:rc==0
|
|
cmd:mkdef -t node -o testnode3-testnode4 mgt=ipmi cons=ipmi groups=all,systemx
|
|
check:rc==0
|
|
cmd:mkdef -t group -o testgrp members=testnode1,testnode3
|
|
check:rc==0
|
|
cmd:lsdef -s testgrp
|
|
check:rc==0
|
|
check:output=~testnode1
|
|
check:output=~testnode3
|
|
check:output!~testnode2
|
|
check:output!~testnode4
|
|
cmd:chdef -t group -o testgrp -p members=testnode2,testnode4
|
|
check:rc==0
|
|
cmd:lsdef -s testgrp
|
|
check:rc==0
|
|
check:output=~testnode1
|
|
check:output=~testnode3
|
|
check:output=~testnode2
|
|
check:output=~testnode4
|
|
cmd:chdef -t group -o testgrp -m members=testnode1,testnode2
|
|
check:rc==0
|
|
cmd:lsdef -s testgrp
|
|
check:rc==0
|
|
check:output!~testnode1
|
|
check:output=~testnode3
|
|
check:output!~testnode2
|
|
check:output=~testnode4
|
|
cmd:rmdef -t group testgrp
|
|
check:rc==0
|
|
cmd:rmdef -t node -o testnode1-testnode4
|
|
check:rc==0
|
|
end
|
|
|
|
start:chdef_dynamic_group
|
|
description:chdef with dynamic node group
|
|
cmd:mkdef -t node -o testnode1-testnode2 mgt=hmc cons=hmc groups=all,systemp
|
|
check:rc==0
|
|
cmd:mkdef -t node -o testnode3-testnode4 mgt=hmc cons=ipmi groups=all,systemx
|
|
check:rc==0
|
|
cmd:mkdef -t group -o dyngrp -d -w cons==hmc
|
|
check:rc==0
|
|
cmd:lsdef -s dyngrp
|
|
check:rc==0
|
|
check:output=~testnode1
|
|
check:output=~testnode2
|
|
check:output!~testnode3
|
|
check:output!~testnode4
|
|
cmd:chdef -t group -o dyngrp -d -w mgt==hmc
|
|
check:rc==0
|
|
cmd:lsdef -s dyngrp
|
|
check:rc==0
|
|
check:output=~testnode1
|
|
check:output=~testnode2
|
|
check:output=~testnode3
|
|
check:output=~testnode4
|
|
cmd:chdef -t group -o dyngrp -d -p -w cons==hmc -w groups=~systemp
|
|
check:rc==0
|
|
cmd:lsdef -s dyngrp
|
|
check:rc==0
|
|
check:output=~testnode1
|
|
check:output=~testnode2
|
|
check:output!~testnode3
|
|
check:output!~testnode4
|
|
cmd:lsdef -t group -o dyngrp
|
|
check:rc==0
|
|
check:output=~wherevals=mgt==hmc::cons==hmc::groups=~systemp
|
|
cmd:chdef -t group -o dyngrp -d -m -w cons==hmc -w groups=~systemp
|
|
check:rc==0
|
|
cmd:lsdef -s dyngrp
|
|
check:output=~testnode1
|
|
check:output=~testnode2
|
|
check:output=~testnode3
|
|
check:output=~testnode4
|
|
cmd:rmdef -t group -o dyngrp
|
|
check:rc==0
|
|
cmd:rmdef -t node -o testnode1-testnode4
|
|
check:rc==0
|
|
end
|
|
|
|
start:chdef_multiple_keys
|
|
description:mkdef support for multiple keys in a table, such as ppcdirect
|
|
cmd: mkdef -t node -o testfsp mgt=fsp cons=fsp groups=all,fsp nodetype=fsp passwd.HMC=abc123 passwd.general=abc123 passwd.admin=abc123
|
|
check:rc==0
|
|
cmd:lsdef testfsp
|
|
check:rc==0
|
|
check:output=~passwd.HMC=abc123
|
|
check:output=~passwd.general=abc123
|
|
check:output=~passwd.admin=abc123
|
|
cmd:chdef -t node -o testfsp groups=fsp passwd.HMC=HMC passwd.general=general passwd.admin=admin
|
|
check:rc==0
|
|
cmd:lsdef testfsp
|
|
check:rc==0
|
|
check:output=~passwd.HMC=HMC
|
|
check:output=~passwd.general=general
|
|
check:output=~passwd.admin=admin
|
|
cmd:rmdef -t node -o testfsp
|
|
check:rc==0
|
|
end
|
|
|
|
start:chdef_t_o_error
|
|
cmd:chdef -t testtype -o testnode groups=all,aix
|
|
check:rc!=0
|
|
check:output=~Error
|
|
end
|