1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
crm_mksample() {
cp empty.xml sample.xml
CIB_file=sample.xml $CRM_NO_REG<<EOF
configure
erase
erase nodes
node node1
primitive p0 ocf:heartbeat:Dummy
primitive p1 ocf:heartbeat:Dummy
primitive p2 ocf:heartbeat:Delay \
params startdelay=2 mondelay=2 stopdelay=2
primitive p3 ocf:heartbeat:Dummy
primitive st stonith:null params hostlist=node1
clone c1 p1
ms m1 p2
commit
end
EOF
}
crm_show() {
CIB_file=sample.xml $CRM<<EOF
configure
_regtest on
erase
erase nodes
`cat`
show
commit
EOF
}
crm_showxml() {
CIB_file=sample.xml $CRM<<EOF
configure
_regtest on
erase
erase nodes
`cat`
show xml
commit
EOF
}
crm_session() {
CIB_file=sample.xml $CRM <<EOF
`cat`
EOF
}
crm_single() {
CIB_file=sample.xml $CRM $*
}
crm_showobj() {
CIB_file=sample.xml $CRM<<EOF
configure
_regtest on
show xml $1
EOF
}
|