/usr/share/pacemaker/tests/shell/crm-interface is in pacemaker-dev 1.1.6-2ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 57 58 59 60 61 | crm_setup() {
$CRM_NO_REG options check-frequency on-verify
$CRM_NO_REG options check-mode relaxed
}
crm_mksample() {
cp empty.xml sample.xml
CIB_file=sample.xml $CRM_NO_REG<<EOF
configure
erase
erase nodes
node node1
primitive p0 ocf:pacemaker:Dummy
primitive p1 ocf:pacemaker:Dummy
primitive p2 ocf:heartbeat:Delay \
params startdelay=2 mondelay=2 stopdelay=2
primitive p3 ocf:pacemaker:Dummy
primitive st stonith:null params hostlist=node1
clone c1 p1
ms m1 p2
property default-action-timeout=60s
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
}
|