diff --git a/pengine/regression.core.sh.in b/pengine/regression.core.sh.in index 75c2a1309f..16707ccbc0 100644 --- a/pengine/regression.core.sh.in +++ b/pengine/regression.core.sh.in @@ -1,286 +1,303 @@ # Copyright (C) 2004 Andrew Beekhof # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This software is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # verbose=0 num_failed=0 num_tests=0 force_local=0 VALGRIND_CMD="" diff_opts="--ignore-all-space -u -N" test_home=`dirname $0` test_name=`basename $0` function info() { printf "$*\n" } function error() { printf " * ERROR: $*\n" } function failed() { printf " * FAILED: $*\n" } function show_test() { name=$1; shift printf " Test %-25s $*\n" "$name:" } info "Test home is:\t$test_home" io_dir=$test_home/test10 test_binary=@abs_top_builddir@/tools/crm_simulate PCMK_schema_directory=@abs_top_builddir@/xml failed=$test_home/.regression.failed.diff single_test= while true ; do case "$1" in -V|--verbose) verbose=1; shift;; -v|--valgrind) export G_SLICE=always-malloc VALGRIND_CMD="valgrind -q --log-file=%q{valgrind_output} --show-reachable=no --leak-check=full --trace-children=no --time-stamp=yes --num-callers=20 --suppressions=$test_home/ptest.supp" test_binary= shift;; --valgrind-dhat) VALGRIND_CMD="valgrind --log-file=%q{valgrind_output} --show-top-n=100 --num-callers=4 --time-stamp=yes --trace-children=no --tool=exp-dhat --suppressions=$test_home/ptest.supp" test_binary= shift;; --valgrind-skip-output) VALGRIND_SKIP_OUTPUT=1 shift;; --run) single_test="$2"; shift; shift; break;; -b|--binary) test_binary=$2; PCMK_schema_directory=""; shift; shift;; -?|--help) echo "$0 [--binary name] [--force-local]"; shift; exit 0;; --) shift ; break ;; "") break;; *) echo "unknown option: $1"; exit 1;; esac done if [ "x$test_binary" = "x" ]; then test_binary=@sbindir@/crm_simulate PCMK_schema_directory=@CRM_DTD_DIRECTORY@ elif [ ! -x $test_binary ]; then test_binary=@sbindir@/crm_simulate PCMK_schema_directory=@CRM_DTD_DIRECTORY@ fi export PCMK_schema_directory if [ "x$test_binary" = "x" ]; then info "crm_simulate not installed. Aborting." exit 1 fi info "Test binary is:\t$test_binary" info "Schema home is:\t$PCMK_schema_directory" if [ "x$VALGRIND_CMD" != "x" ]; then info "Activating memory testing with valgrind"; fi info " " test_cmd="$VALGRIND_CMD $test_binary" #echo $test_cmd if [ `whoami` != root ]; then declare -x CIB_shadow_dir=/tmp fi function do_test { did_fail=0 expected_rc=0 num_tests=`expr $num_tests + 1` base=$1; shift name=$1; shift input=$io_dir/${base}.xml output=$io_dir/${base}.out expected=$io_dir/${base}.exp dot_png=$io_dir/${base}.png dot_expected=$io_dir/${base}.dot dot_output=$io_dir/${base}.pe.dot scores=$io_dir/${base}.scores score_output=$io_dir/${base}.scores.pe + stderr_output=$io_dir/${base}.stderr + + summary=$io_dir/${base}.summary + summary_output=$io_dir/${base}.summary.pe + valgrind_output=$io_dir/${base}.valgrind export valgrind_output - stderr_output=$io_dir/${base}.stderr if [ "x$1" = "x--rc" ]; then expected_rc=$2 shift; shift; fi show_test "$base" "$name" if [ ! -f $input ]; then error "No input"; did_fail=1 num_failed=`expr $num_failed + $did_fail` return; fi if [ "$create_mode" != "true" -a ! -f $expected ]; then error "no stored output"; # return; fi # ../admin/crm_verify -X $input if [ ! -z $single_test ]; then echo CIB_shadow_dir=$io_dir $test_cmd -x $input -D $dot_output -G $output -S $* CIB_shadow_dir=$io_dir $test_cmd -x $input -D $dot_output -G $output -S $* + else + CIB_shadow_dir=$io_dir $test_cmd -x $input -S &> $summary_output fi CIB_shadow_dir=$io_dir $test_cmd -x $input -D $dot_output -G $output -SQ -s $* 2> $stderr_output > $score_output rc=$? + if [ $rc != $expected_rc ]; then failed "Test returned: $rc"; did_fail=1 echo "CIB_shadow_dir=$io_dir $test_cmd -x $input -D $dot_output -G $output -SQ -s $*" fi if [ -z "$VALGRIND_SKIP_OUTPUT" ]; then if [ -s ${valgrind_output} ]; then error "Valgrind reported errors"; did_fail=1 cat ${valgrind_output} fi rm -f ${valgrind_output} fi if [ -s core ]; then error "Core-file detected: core.${base}"; did_fail=1 rm -f $test_home/core.$base mv core $test_home/core.$base fi if [ -s $stderr_output ]; then error "Output was written to stderr" did_fail=1 cat $stderr_output fi rm -f $stderr_output if [ ! -s $output ]; then error "No graph produced"; did_fail=1 num_failed=`expr $num_failed + $did_fail` rm -f $output return; # else # mv $output $output.sed # cat $output.sed | sed 's/id=.[0-9]*.\ //g' >> $output fi if [ ! -s $dot_output ]; then error "No dot-file summary produced"; did_fail=1 num_failed=`expr $num_failed + $did_fail` rm -f $output return; else echo "digraph \"g\" {" > $dot_output.sort LC_ALL=POSIX sort -u $dot_output | grep -v -e ^}$ -e digraph >> $dot_output.sort echo "}" >> $dot_output.sort mv -f $dot_output.sort $dot_output fi if [ ! -s $score_output ]; then error "No allocation scores produced"; did_fail=1 num_failed=`expr $num_failed + $did_fail` rm $output return; else LC_ALL=POSIX sort $score_output > $score_output.sorted mv -f $score_output.sorted $score_output fi if [ "$create_mode" = "true" ]; then cp "$output" "$expected" cp "$dot_output" "$dot_expected" cp "$score_output" "$scores" + cp "$summary_output" "$summary" info " Created expected outputs" fi + diff $diff_opts $summary $summary_output >/dev/null + rc2=$? + if [ $rc2 != 0 ]; then + failed "summary changed"; + diff $diff_opts $summary $summary_output 2>/dev/null >> $failed + echo "" >> $failed + did_fail=1 + fi + diff $diff_opts $dot_expected $dot_output >/dev/null rc=$? if [ $rc != 0 ]; then failed "dot-file summary changed"; diff $diff_opts $dot_expected $dot_output 2>/dev/null >> $failed echo "" >> $failed did_fail=1 else rm -f $dot_output fi diff $diff_opts $expected $output >/dev/null rc2=$? if [ $rc2 != 0 ]; then failed "xml-file changed"; diff $diff_opts $expected $output 2>/dev/null >> $failed echo "" >> $failed did_fail=1 fi diff $diff_opts $scores $score_output >/dev/null rc=$? if [ $rc != 0 ]; then failed "scores-file changed"; diff $diff_opts $scores $score_output 2>/dev/null >> $failed echo "" >> $failed did_fail=1 fi rm -f $output $score_output num_failed=`expr $num_failed + $did_fail` } function test_results { if [ $num_failed != 0 ]; then if [ -s $failed ]; then if [ "$verbose" = "1" ]; then error "Results of $num_failed failed tests (out of $num_tests)...." less $failed else error "Results of $num_failed failed tests (out of $num_tests) are in $failed...." error "Use $0 -V to display them automatically." fi else error "$num_failed (of $num_tests) tests failed (no diff results)" rm $failed fi fi exit $num_failed } if [ -z $single_test ]; then # zero out the error log > $failed else failed=.single > $failed do_test $single_test "Single shot" $* exit $? fi diff --git a/pengine/test10/1360.summary b/pengine/test10/1360.summary new file mode 100644 index 0000000000..04ec94194a --- /dev/null +++ b/pengine/test10/1360.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Online: [ ssgtest1a ssgtest1b ] + + Resource Group: ClusterAlias + VIP (ocf::testing:VIP-RIP.sh): Started ssgtest1a + Clone Set: dolly [dollies] + Started: [ ssgtest1a ] + +Transition Summary: + * Move dollies:0 (Started ssgtest1a -> ssgtest1b) + +Executing cluster transition: + * Pseudo action: dolly_stop_0 + * Resource action: dollies:0 stop on ssgtest1a + * Pseudo action: dolly_stopped_0 + * Pseudo action: dolly_start_0 + * Pseudo action: all_stopped + * Resource action: dollies:0 start on ssgtest1b + * Pseudo action: dolly_running_0 + +Revised cluster status: +Online: [ ssgtest1a ssgtest1b ] + + Resource Group: ClusterAlias + VIP (ocf::testing:VIP-RIP.sh): Started ssgtest1a + Clone Set: dolly [dollies] + Started: [ ssgtest1b ] + diff --git a/pengine/test10/1484.summary b/pengine/test10/1484.summary new file mode 100644 index 0000000000..e6b090c9b5 --- /dev/null +++ b/pengine/test10/1484.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ hb2 hb1 ] +OFFLINE: [ hb3 ] + + the-future-of-vaj (ocf::heartbeat:Dummy): Started hb2 FAILED + +Transition Summary: + * Stop the-future-of-vaj (hb2) + +Executing cluster transition: + * Resource action: the-future-of-vaj stop on hb2 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ hb2 hb1 ] +OFFLINE: [ hb3 ] + + the-future-of-vaj (ocf::heartbeat:Dummy): Stopped + diff --git a/pengine/test10/1494.summary b/pengine/test10/1494.summary new file mode 100644 index 0000000000..4a285f4b06 --- /dev/null +++ b/pengine/test10/1494.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ hb2 hb1 ] +OFFLINE: [ hb3 ] + + Clone Set: ima_cloneid [ima_rscid] (unique) + ima_rscid:0 (ocf::heartbeat:Dummy): Started hb1 + ima_rscid:1 (ocf::heartbeat:Dummy): Started hb2 + +Transition Summary: + * Stop ima_rscid:0 (hb1) + +Executing cluster transition: + * Pseudo action: ima_cloneid_stop_0 + * Resource action: ima_rscid:0 stop on hb1 + * Pseudo action: ima_cloneid_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ hb2 hb1 ] +OFFLINE: [ hb3 ] + + Clone Set: ima_cloneid [ima_rscid] (unique) + ima_rscid:0 (ocf::heartbeat:Dummy): Stopped + ima_rscid:1 (ocf::heartbeat:Dummy): Started hb2 + diff --git a/pengine/test10/594.summary b/pengine/test10/594.summary new file mode 100644 index 0000000000..0239b46906 --- /dev/null +++ b/pengine/test10/594.summary @@ -0,0 +1,56 @@ + +Current cluster status: +Node hadev3 (879e65f8-4b38-4c56-9552-4752ad436669): UNCLEAN (offline) +Online: [ hadev2 hadev1 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started hadev2 + rsc_hadev3 (ocf::heartbeat:IPaddr): Started hadev1 + rsc_hadev2 (ocf::heartbeat:IPaddr): Started hadev2 + rsc_hadev1 (ocf::heartbeat:IPaddr): Started hadev1 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started hadev2 + child_DoFencing:1 (stonith:ssh): Started hadev1 + child_DoFencing:2 (stonith:ssh): Started hadev1 + +Transition Summary: + * Move DcIPaddr (Started hadev2 -> hadev1) + * Move rsc_hadev2 (Started hadev2 -> hadev1) + * Stop child_DoFencing:0 (hadev2) + * Stop child_DoFencing:2 (hadev1) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on hadev1 + * Resource action: rsc_hadev3 monitor on hadev2 + * Resource action: rsc_hadev2 monitor on hadev1 + * Resource action: child_DoFencing:0 monitor on hadev1 + * Resource action: child_DoFencing:2 monitor on hadev2 + * Pseudo action: DoFencing_stop_0 + * Pseudo action: stonith_up + * Pseudo action: probe_complete + * Resource action: DcIPaddr stop on hadev2 + * Resource action: rsc_hadev2 stop on hadev2 + * Fencing hadev3 + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + * Resource action: DcIPaddr start on hadev1 + * Resource action: rsc_hadev2 start on hadev1 + * Resource action: child_DoFencing:0 stop on hadev2 + * Resource action: child_DoFencing:2 stop on hadev1 + * Pseudo action: DoFencing_stopped_0 + * Cluster action: do_shutdown on hadev2 + * Resource action: DcIPaddr monitor=5000 on hadev1 + * Resource action: rsc_hadev2 monitor=5000 on hadev1 + +Revised cluster status: +Online: [ hadev2 hadev1 ] +OFFLINE: [ hadev3 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started hadev1 + rsc_hadev3 (ocf::heartbeat:IPaddr): Started hadev1 + rsc_hadev2 (ocf::heartbeat:IPaddr): Started hadev1 + rsc_hadev1 (ocf::heartbeat:IPaddr): Started hadev1 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Stopped + child_DoFencing:1 (stonith:ssh): Started hadev1 + child_DoFencing:2 (stonith:ssh): Stopped + diff --git a/pengine/test10/662.summary b/pengine/test10/662.summary new file mode 100644 index 0000000000..678597bc83 --- /dev/null +++ b/pengine/test10/662.summary @@ -0,0 +1,67 @@ + +Current cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n02 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n04 + child_DoFencing:3 (stonith:ssh): Started c001n09 + +Transition Summary: + * Move rsc_c001n02 (Started c001n02 -> c001n03) + * Stop child_DoFencing:0 (c001n02) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n04 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n02 + * Resource action: rsc_c001n09 monitor on c001n04 + * Resource action: rsc_c001n09 monitor on c001n03 + * Resource action: rsc_c001n09 monitor on c001n02 + * Resource action: rsc_c001n02 monitor on c001n04 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n09 + * Resource action: rsc_c001n03 monitor on c001n04 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n09 + * Resource action: rsc_c001n04 monitor on c001n03 + * Resource action: rsc_c001n04 monitor on c001n09 + * Resource action: child_DoFencing:0 monitor on c001n04 + * Resource action: child_DoFencing:0 monitor on c001n09 + * Resource action: child_DoFencing:1 monitor on c001n04 + * Resource action: child_DoFencing:1 monitor on c001n02 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n09 + * Resource action: child_DoFencing:3 monitor on c001n04 + * Resource action: child_DoFencing:3 monitor on c001n03 + * Resource action: child_DoFencing:3 monitor on c001n02 + * Pseudo action: DoFencing_stop_0 + * Pseudo action: probe_complete + * Resource action: rsc_c001n02 stop on c001n02 + * Pseudo action: all_stopped + * Resource action: rsc_c001n02 start on c001n03 + * Resource action: child_DoFencing:0 stop on c001n02 + * Pseudo action: DoFencing_stopped_0 + * Cluster action: do_shutdown on c001n02 + * Resource action: rsc_c001n02 monitor=5000 on c001n03 + +Revised cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Stopped + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n04 + child_DoFencing:3 (stonith:ssh): Started c001n09 + diff --git a/pengine/test10/696.summary b/pengine/test10/696.summary new file mode 100644 index 0000000000..6d9afa0232 --- /dev/null +++ b/pengine/test10/696.summary @@ -0,0 +1,62 @@ + +Current cluster status: +Online: [ hadev1 hadev2 hadev3 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started hadev2 + rsc_hadev1 (ocf::heartbeat:IPaddr): Started hadev3 + rsc_hadev2 (ocf::heartbeat:IPaddr): Started hadev2 + rsc_hadev3 (ocf::heartbeat:IPaddr): Started hadev3 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started hadev2 + child_DoFencing:1 (stonith:ssh): Started hadev3 + child_DoFencing:2 (stonith:ssh): Stopped + +Transition Summary: + * Move rsc_hadev1 (Started hadev3 -> hadev1) + * Start child_DoFencing:2 (hadev1) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on hadev3 + * Resource action: DcIPaddr monitor on hadev1 + * Resource action: rsc_hadev1 monitor on hadev2 + * Resource action: rsc_hadev1 monitor on hadev1 + * Resource action: rsc_hadev2 monitor on hadev3 + * Resource action: rsc_hadev2 monitor on hadev1 + * Resource action: rsc_hadev3 monitor=5000 on hadev3 + * Resource action: rsc_hadev3 monitor on hadev2 + * Resource action: rsc_hadev3 monitor on hadev1 + * Resource action: child_DoFencing:0 monitor=5000 on hadev2 + * Resource action: child_DoFencing:0 monitor on hadev3 + * Resource action: child_DoFencing:0 monitor on hadev1 + * Resource action: child_DoFencing:1 monitor=5000 on hadev3 + * Resource action: child_DoFencing:1 monitor on hadev2 + * Resource action: child_DoFencing:1 monitor on hadev1 + * Resource action: child_DoFencing:2 monitor on hadev3 + * Resource action: child_DoFencing:2 monitor on hadev2 + * Resource action: child_DoFencing:2 monitor on hadev1 + * Pseudo action: DoFencing_start_0 + * Pseudo action: probe_complete + * Resource action: DcIPaddr start on hadev2 + * Resource action: rsc_hadev1 stop on hadev3 + * Resource action: rsc_hadev2 start on hadev2 + * Resource action: child_DoFencing:2 start on hadev1 + * Pseudo action: DoFencing_running_0 + * Pseudo action: all_stopped + * Resource action: DcIPaddr monitor=5000 on hadev2 + * Resource action: rsc_hadev1 start on hadev1 + * Resource action: rsc_hadev2 monitor=5000 on hadev2 + * Resource action: child_DoFencing:2 monitor=5000 on hadev1 + * Resource action: rsc_hadev1 monitor=5000 on hadev1 + +Revised cluster status: +Online: [ hadev1 hadev2 hadev3 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started hadev2 + rsc_hadev1 (ocf::heartbeat:IPaddr): Started hadev1 + rsc_hadev2 (ocf::heartbeat:IPaddr): Started hadev2 + rsc_hadev3 (ocf::heartbeat:IPaddr): Started hadev3 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started hadev2 + child_DoFencing:1 (stonith:ssh): Started hadev3 + child_DoFencing:2 (stonith:ssh): Started hadev1 + diff --git a/pengine/test10/726.summary b/pengine/test10/726.summary new file mode 100644 index 0000000000..100e662c57 --- /dev/null +++ b/pengine/test10/726.summary @@ -0,0 +1,89 @@ + +Current cluster status: +Online: [ test03 test02 sgi2 ibm1 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started test03 + rsc_sgi2 (ocf::heartbeat:IPaddr): Stopped + rsc_ibm1 (ocf::heartbeat:IPaddr): Started test03 + rsc_test02 (ocf::heartbeat:IPaddr): Stopped + rsc_test03 (ocf::heartbeat:IPaddr): Started test03 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started test02 + child_DoFencing:1 (stonith:ssh): Started test03 + child_DoFencing:2 (stonith:ssh): Stopped + child_DoFencing:3 (stonith:ssh): Stopped + +Transition Summary: + * Start rsc_sgi2 (sgi2) + * Move rsc_ibm1 (Started test03 -> ibm1) + * Start rsc_test02 (test02) + * Start child_DoFencing:2 (ibm1) + * Start child_DoFencing:3 (sgi2) + +Executing cluster transition: + * Resource action: DcIPaddr monitor=5000 on test03 + * Resource action: DcIPaddr monitor on ibm1 + * Resource action: DcIPaddr monitor on sgi2 + * Resource action: DcIPaddr monitor on test02 + * Resource action: rsc_sgi2 monitor on ibm1 + * Resource action: rsc_sgi2 monitor on sgi2 + * Resource action: rsc_sgi2 monitor on test02 + * Resource action: rsc_sgi2 monitor on test03 + * Resource action: rsc_ibm1 monitor on ibm1 + * Resource action: rsc_ibm1 monitor on sgi2 + * Resource action: rsc_ibm1 monitor on test02 + * Resource action: rsc_test02 monitor on ibm1 + * Resource action: rsc_test02 monitor on sgi2 + * Resource action: rsc_test02 monitor on test02 + * Resource action: rsc_test02 monitor on test03 + * Resource action: rsc_test03 monitor=5000 on test03 + * Resource action: rsc_test03 monitor on ibm1 + * Resource action: rsc_test03 monitor on sgi2 + * Resource action: rsc_test03 monitor on test02 + * Resource action: child_DoFencing:0 monitor on ibm1 + * Resource action: child_DoFencing:0 monitor on sgi2 + * Resource action: child_DoFencing:1 monitor on ibm1 + * Resource action: child_DoFencing:1 monitor on sgi2 + * Resource action: child_DoFencing:1 monitor on test02 + * Resource action: child_DoFencing:2 monitor on ibm1 + * Resource action: child_DoFencing:2 monitor on sgi2 + * Resource action: child_DoFencing:2 monitor on test02 + * Resource action: child_DoFencing:2 monitor on test03 + * Resource action: child_DoFencing:3 monitor on ibm1 + * Resource action: child_DoFencing:3 monitor on sgi2 + * Resource action: child_DoFencing:3 monitor on test02 + * Resource action: child_DoFencing:3 monitor on test03 + * Pseudo action: DoFencing_start_0 + * Pseudo action: probe_complete + * Resource action: rsc_sgi2 start on sgi2 + * Resource action: rsc_ibm1 stop on test03 + * Resource action: rsc_test02 start on test02 + * Resource action: child_DoFencing:0 start on test02 + * Resource action: child_DoFencing:1 start on test03 + * Resource action: child_DoFencing:2 start on ibm1 + * Resource action: child_DoFencing:3 start on sgi2 + * Pseudo action: DoFencing_running_0 + * Pseudo action: all_stopped + * Resource action: rsc_sgi2 monitor=5000 on sgi2 + * Resource action: rsc_ibm1 start on ibm1 + * Resource action: rsc_test02 monitor=5000 on test02 + * Resource action: child_DoFencing:0 monitor=5000 on test02 + * Resource action: child_DoFencing:1 monitor=5000 on test03 + * Resource action: child_DoFencing:2 monitor=5000 on ibm1 + * Resource action: child_DoFencing:3 monitor=5000 on sgi2 + * Resource action: rsc_ibm1 monitor=5000 on ibm1 + +Revised cluster status: +Online: [ test03 test02 sgi2 ibm1 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started test03 + rsc_sgi2 (ocf::heartbeat:IPaddr): Started sgi2 + rsc_ibm1 (ocf::heartbeat:IPaddr): Started ibm1 + rsc_test02 (ocf::heartbeat:IPaddr): Started test02 + rsc_test03 (ocf::heartbeat:IPaddr): Started test03 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started test02 + child_DoFencing:1 (stonith:ssh): Started test03 + child_DoFencing:2 (stonith:ssh): Started ibm1 + child_DoFencing:3 (stonith:ssh): Started sgi2 + diff --git a/pengine/test10/735.summary b/pengine/test10/735.summary new file mode 100644 index 0000000000..8f33f7780b --- /dev/null +++ b/pengine/test10/735.summary @@ -0,0 +1,52 @@ + +Current cluster status: +Online: [ hadev2 hadev3 ] +OFFLINE: [ hadev1 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started hadev2 + rsc_hadev1 (ocf::heartbeat:IPaddr): Started hadev2 + rsc_hadev2 (ocf::heartbeat:IPaddr): Started hadev2 + rsc_hadev3 (ocf::heartbeat:IPaddr): Stopped + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Stopped + child_DoFencing:1 (stonith:ssh): Stopped + child_DoFencing:2 (stonith:ssh): Stopped + +Transition Summary: + * Move rsc_hadev1 (Started hadev2 -> hadev3) + * Start rsc_hadev3 (hadev3) + * Start child_DoFencing:0 (hadev2) + * Start child_DoFencing:1 (hadev3) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on hadev3 + * Resource action: rsc_hadev2 monitor on hadev3 + * Resource action: rsc_hadev3 start on hadev3 + * Resource action: child_DoFencing:0 monitor on hadev3 + * Resource action: child_DoFencing:2 monitor on hadev3 + * Pseudo action: DoFencing_start_0 + * Pseudo action: probe_complete + * Resource action: rsc_hadev1 stop on hadev2 + * Resource action: rsc_hadev1 start on hadev3 + * Resource action: rsc_hadev3 monitor=5000 on hadev3 + * Resource action: child_DoFencing:0 start on hadev2 + * Resource action: child_DoFencing:1 start on hadev3 + * Pseudo action: DoFencing_running_0 + * Pseudo action: all_stopped + * Resource action: rsc_hadev1 monitor=5000 on hadev3 + * Resource action: child_DoFencing:0 monitor=5000 on hadev2 + * Resource action: child_DoFencing:1 monitor=5000 on hadev3 + +Revised cluster status: +Online: [ hadev2 hadev3 ] +OFFLINE: [ hadev1 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started hadev2 + rsc_hadev1 (ocf::heartbeat:IPaddr): Started hadev2 + rsc_hadev2 (ocf::heartbeat:IPaddr): Started hadev2 + rsc_hadev3 (ocf::heartbeat:IPaddr): Started hadev3 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started hadev2 + child_DoFencing:1 (stonith:ssh): Started hadev3 + child_DoFencing:2 (stonith:ssh): Stopped + diff --git a/pengine/test10/764.summary b/pengine/test10/764.summary new file mode 100644 index 0000000000..13a73f889c --- /dev/null +++ b/pengine/test10/764.summary @@ -0,0 +1,57 @@ + +Current cluster status: +Online: [ posic041 posic043 ] +OFFLINE: [ posic042 posic044 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started posic043 + rsc_posic041 (ocf::heartbeat:IPaddr): Started posic041 + rsc_posic042 (ocf::heartbeat:IPaddr): Started posic041 + rsc_posic043 (ocf::heartbeat:IPaddr): Started posic043 + rsc_posic044 (ocf::heartbeat:IPaddr): Started posic041 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started posic043 + child_DoFencing:1 (stonith:ssh): Started posic041 + child_DoFencing:2 (stonith:ssh): Stopped + child_DoFencing:3 (stonith:ssh): Stopped + +Transition Summary: + * Stop DcIPaddr (Started posic043) + * Stop rsc_posic041 (Started posic041) + * Stop rsc_posic042 (Started posic041) + * Stop rsc_posic043 (Started posic043) + * Stop rsc_posic044 (Started posic041) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on posic041 + * Resource action: rsc_posic041 monitor on posic043 + * Resource action: rsc_posic042 monitor on posic043 + * Resource action: rsc_posic043 monitor on posic041 + * Resource action: rsc_posic044 monitor on posic043 + * Resource action: child_DoFencing:0 monitor=5000 on posic043 + * Resource action: child_DoFencing:1 monitor=5000 on posic041 + * Resource action: child_DoFencing:1 monitor on posic043 + * Resource action: child_DoFencing:2 monitor on posic041 + * Resource action: child_DoFencing:3 monitor on posic041 + * Pseudo action: probe_complete + * Resource action: DcIPaddr stop on posic043 + * Resource action: rsc_posic041 stop on posic041 + * Resource action: rsc_posic042 stop on posic041 + * Resource action: rsc_posic043 stop on posic043 + * Resource action: rsc_posic044 stop on posic041 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ posic041 posic043 ] +OFFLINE: [ posic042 posic044 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Stopped + rsc_posic041 (ocf::heartbeat:IPaddr): Stopped + rsc_posic042 (ocf::heartbeat:IPaddr): Stopped + rsc_posic043 (ocf::heartbeat:IPaddr): Stopped + rsc_posic044 (ocf::heartbeat:IPaddr): Started posic041 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started posic043 + child_DoFencing:1 (stonith:ssh): Started posic041 + child_DoFencing:2 (stonith:ssh): Stopped + child_DoFencing:3 (stonith:ssh): Stopped + diff --git a/pengine/test10/797.summary b/pengine/test10/797.summary new file mode 100644 index 0000000000..8847a4cd94 --- /dev/null +++ b/pengine/test10/797.summary @@ -0,0 +1,74 @@ + +Current cluster status: +Node c001n08 (6427cb5a-c7a5-4bdf-9892-a04ce56f4e6b): UNCLEAN (offline) +Online: [ c001n02 c001n01 c001n03 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh) Started [ c001n01 c001n03 ] + child_DoFencing:1 (stonith:ssh): Started c001n02 + child_DoFencing:2 (stonith:ssh): Started c001n03 + child_DoFencing:3 (stonith:ssh): Stopped + +Transition Summary: + * Stop DcIPaddr (Started c001n03) + * Move rsc_c001n08 (Started c001n02 -> c001n01) + * Move rsc_c001n02 (Started c001n02 -> c001n01) + * Stop rsc_c001n03 (Started c001n03) + * Stop rsc_c001n01 (Started c001n01) + * Restart child_DoFencing:0 (Started c001n01) + * Stop child_DoFencing:1 (c001n02) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n01 + * Resource action: DcIPaddr monitor on c001n02 + * Resource action: rsc_c001n08 monitor on c001n03 + * Resource action: rsc_c001n08 monitor on c001n01 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n01 + * Resource action: rsc_c001n03 monitor on c001n01 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n01 + * Resource action: child_DoFencing:3 monitor on c001n03 + * Resource action: child_DoFencing:3 monitor on c001n01 + * Resource action: child_DoFencing:3 monitor on c001n02 + * Pseudo action: DoFencing_stop_0 + * Pseudo action: probe_complete + * Resource action: DcIPaddr stop on c001n03 + * Resource action: rsc_c001n08 stop on c001n02 + * Resource action: rsc_c001n02 stop on c001n02 + * Resource action: rsc_c001n03 stop on c001n03 + * Resource action: rsc_c001n01 stop on c001n01 + * Resource action: child_DoFencing:0 stop on c001n03 + * Resource action: child_DoFencing:0 stop on c001n01 + * Pseudo action: all_stopped + * Resource action: DcIPaddr delete on c001n03 + * Resource action: child_DoFencing:1 stop on c001n02 + * Pseudo action: DoFencing_stopped_0 + * Pseudo action: DoFencing_start_0 + * Cluster action: do_shutdown on c001n02 + * Cluster action: lrm_refresh on c001n03 + * Resource action: child_DoFencing:0 start on c001n01 + * Resource action: child_DoFencing:0 monitor=5000 on c001n01 + * Pseudo action: DoFencing_running_0 + +Revised cluster status: +Node c001n08 (6427cb5a-c7a5-4bdf-9892-a04ce56f4e6b): UNCLEAN (offline) +Online: [ c001n02 c001n01 c001n03 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n08 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n02 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n03 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n01 (ocf::heartbeat:IPaddr): Stopped + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n01 + child_DoFencing:1 (stonith:ssh): Stopped + child_DoFencing:2 (stonith:ssh): Started c001n03 + child_DoFencing:3 (stonith:ssh): Stopped + diff --git a/pengine/test10/829.summary b/pengine/test10/829.summary new file mode 100644 index 0000000000..02d7c00e72 --- /dev/null +++ b/pengine/test10/829.summary @@ -0,0 +1,65 @@ + +Current cluster status: +Node c001n02 (e9bdfde9-01b0-421f-acd8-8a65a53e775f): UNCLEAN (offline) +Online: [ c001n08 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n02 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n01 + child_DoFencing:3 (stonith:ssh): Started c001n08 + +Transition Summary: + * Move rsc_c001n02 (Started c001n02 -> c001n01) + * Stop child_DoFencing:0 (c001n02) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n01 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: rsc_c001n08 monitor on c001n01 + * Resource action: rsc_c001n08 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n01 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n03 monitor on c001n01 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: rsc_c001n01 monitor on c001n08 + * Resource action: child_DoFencing:0 monitor on c001n01 + * Resource action: child_DoFencing:1 monitor on c001n01 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:3 monitor on c001n01 + * Resource action: child_DoFencing:3 monitor on c001n03 + * Pseudo action: DoFencing_stop_0 + * Pseudo action: stonith_up + * Pseudo action: probe_complete + * Pseudo action: child_DoFencing:0_stop_0 + * Pseudo action: DoFencing_stopped_0 + * Fencing c001n02 + * Pseudo action: stonith_complete + * Pseudo action: rsc_c001n02_stop_0 + * Pseudo action: all_stopped + * Resource action: rsc_c001n02 start on c001n01 + * Resource action: rsc_c001n02 monitor=5000 on c001n01 + +Revised cluster status: +Online: [ c001n08 c001n03 c001n01 ] +OFFLINE: [ c001n02 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n01 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Stopped + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n01 + child_DoFencing:3 (stonith:ssh): Started c001n08 + diff --git a/pengine/test10/994-2.summary b/pengine/test10/994-2.summary new file mode 100644 index 0000000000..066fdc31e3 --- /dev/null +++ b/pengine/test10/994-2.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Online: [ paul ] + + Resource Group: group_1 + datadisk_1 (heartbeat:datadisk): Started paul + Filesystem_2 (ocf::heartbeat:Filesystem): Started paul + IPaddr_5 (ocf::heartbeat:IPaddr): Started paul + postfix_9 (lsb:postfix): Started paul FAILED + depends (lsb:postfix): Started paul + +Transition Summary: + * Recover postfix_9 (Started paul) + * Restart depends (Started paul) + +Executing cluster transition: + * Resource action: depends stop on paul + * Pseudo action: group_1_stop_0 + * Resource action: postfix_9 stop on paul + * Pseudo action: all_stopped + * Pseudo action: group_1_stopped_0 + * Pseudo action: group_1_start_0 + * Resource action: postfix_9 start on paul + * Resource action: postfix_9 monitor=120000 on paul + * Pseudo action: group_1_running_0 + * Resource action: depends start on paul + +Revised cluster status: +Online: [ paul ] + + Resource Group: group_1 + datadisk_1 (heartbeat:datadisk): Started paul + Filesystem_2 (ocf::heartbeat:Filesystem): Started paul + IPaddr_5 (ocf::heartbeat:IPaddr): Started paul + postfix_9 (lsb:postfix): Started paul + depends (lsb:postfix): Started paul + diff --git a/pengine/test10/994.summary b/pengine/test10/994.summary new file mode 100644 index 0000000000..27db890ac4 --- /dev/null +++ b/pengine/test10/994.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ paul ] + + Resource Group: group_1 + datadisk_1 (heartbeat:datadisk): Started paul + Filesystem_2 (ocf::heartbeat:Filesystem): Started paul + IPaddr_5 (ocf::heartbeat:IPaddr): Started paul + postfix_9 (lsb:postfix): Started paul FAILED + +Transition Summary: + * Recover postfix_9 (Started paul) + +Executing cluster transition: + * Pseudo action: group_1_stop_0 + * Resource action: postfix_9 stop on paul + * Pseudo action: all_stopped + * Pseudo action: group_1_stopped_0 + * Pseudo action: group_1_start_0 + * Resource action: postfix_9 start on paul + * Resource action: postfix_9 monitor=120000 on paul + * Pseudo action: group_1_running_0 + +Revised cluster status: +Online: [ paul ] + + Resource Group: group_1 + datadisk_1 (heartbeat:datadisk): Started paul + Filesystem_2 (ocf::heartbeat:Filesystem): Started paul + IPaddr_5 (ocf::heartbeat:IPaddr): Started paul + postfix_9 (lsb:postfix): Started paul + diff --git a/pengine/test10/asymmetric.summary b/pengine/test10/asymmetric.summary new file mode 100644 index 0000000000..9a13341ecd --- /dev/null +++ b/pengine/test10/asymmetric.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ puma3 puma1 ] + + Master/Slave Set: ms_drbd_poolA [ebe3fb6e-7778-426e-be58-190ab1ff3dd3] + Masters: [ puma3 ] + Slaves: [ puma1 ] + vpool_ip_poolA (ocf::heartbeat:IPaddr2): Stopped + drbd_target_poolA (ocf::vpools:iscsi_target): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: ebe3fb6e-7778-426e-be58-190ab1ff3dd3:0 monitor=20000 on puma3 + * Resource action: ebe3fb6e-7778-426e-be58-190ab1ff3dd3:1 monitor=19000 on puma1 + * Resource action: drbd_target_poolA monitor on puma1 + * Resource action: drbd_target_poolA monitor on puma3 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ puma3 puma1 ] + + Master/Slave Set: ms_drbd_poolA [ebe3fb6e-7778-426e-be58-190ab1ff3dd3] + Masters: [ puma3 ] + Slaves: [ puma1 ] + vpool_ip_poolA (ocf::heartbeat:IPaddr2): Stopped + drbd_target_poolA (ocf::vpools:iscsi_target): Stopped + diff --git a/pengine/test10/attrs1.summary b/pengine/test10/attrs1.summary new file mode 100644 index 0000000000..a78bfe26fc --- /dev/null +++ b/pengine/test10/attrs1.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/attrs2.summary b/pengine/test10/attrs2.summary new file mode 100644 index 0000000000..a78bfe26fc --- /dev/null +++ b/pengine/test10/attrs2.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/attrs3.summary b/pengine/test10/attrs3.summary new file mode 100644 index 0000000000..e190bd2542 --- /dev/null +++ b/pengine/test10/attrs3.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/attrs4.summary b/pengine/test10/attrs4.summary new file mode 100644 index 0000000000..e190bd2542 --- /dev/null +++ b/pengine/test10/attrs4.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/attrs5.summary b/pengine/test10/attrs5.summary new file mode 100644 index 0000000000..ae46f11991 --- /dev/null +++ b/pengine/test10/attrs5.summary @@ -0,0 +1,18 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + diff --git a/pengine/test10/attrs6.summary b/pengine/test10/attrs6.summary new file mode 100644 index 0000000000..e190bd2542 --- /dev/null +++ b/pengine/test10/attrs6.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/attrs7.summary b/pengine/test10/attrs7.summary new file mode 100644 index 0000000000..a78bfe26fc --- /dev/null +++ b/pengine/test10/attrs7.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/attrs8.summary b/pengine/test10/attrs8.summary new file mode 100644 index 0000000000..a78bfe26fc --- /dev/null +++ b/pengine/test10/attrs8.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/balanced.summary b/pengine/test10/balanced.summary new file mode 100644 index 0000000000..f271d979b7 --- /dev/null +++ b/pengine/test10/balanced.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ host1 host2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (host2) + * Start rsc2 (host1) + +Executing cluster transition: + * Resource action: rsc1 monitor on host2 + * Resource action: rsc1 monitor on host1 + * Resource action: rsc2 monitor on host2 + * Resource action: rsc2 monitor on host1 + * Pseudo action: probe_complete + * Pseudo action: load_stopped_host2 + * Pseudo action: load_stopped_host1 + * Resource action: rsc1 start on host2 + * Resource action: rsc2 start on host1 + +Revised cluster status: +Online: [ host1 host2 ] + + rsc1 (ocf::pacemaker:Dummy): Started host2 + rsc2 (ocf::pacemaker:Dummy): Started host1 + diff --git a/pengine/test10/base-score.summary b/pengine/test10/base-score.summary new file mode 100644 index 0000000000..5cf17ba466 --- /dev/null +++ b/pengine/test10/base-score.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ puma1 puma2 puma3 puma4 ] + + Dummy (ocf::heartbeat:Dummy): Stopped + +Transition Summary: + * Start Dummy (puma1) + +Executing cluster transition: + * Resource action: Dummy monitor on puma4 + * Resource action: Dummy monitor on puma3 + * Resource action: Dummy monitor on puma2 + * Resource action: Dummy monitor on puma1 + * Pseudo action: probe_complete + * Resource action: Dummy start on puma1 + +Revised cluster status: +Online: [ puma1 puma2 puma3 puma4 ] + + Dummy (ocf::heartbeat:Dummy): Started puma1 + diff --git a/pengine/test10/bnc-515172.summary b/pengine/test10/bnc-515172.summary new file mode 100644 index 0000000000..8eb97393fa --- /dev/null +++ b/pengine/test10/bnc-515172.summary @@ -0,0 +1,34 @@ + +Current cluster status: +Online: [ sles11-ha1 sles11-ha2 sles11-ha3 ] + + Clone Set: Stinith_Clone_Resource [Stonith_Resource] + Started: [ sles11-ha1 sles11-ha2 sles11-ha3 ] + Resource Group: GRP_Web_Server + PRIM_Web_IP1 (ocf::heartbeat:IPaddr): Stopped + Clone Set: pingd_Gateway [Res_Pingd_Gateway] + Started: [ sles11-ha1 sles11-ha2 sles11-ha3 ] + Clone Set: Pingd_Public [Res_Pingd_Public] + Started: [ sles11-ha1 sles11-ha2 sles11-ha3 ] + +Transition Summary: + * Start PRIM_Web_IP1 (sles11-ha2) + +Executing cluster transition: + * Pseudo action: GRP_Web_Server_start_0 + * Resource action: PRIM_Web_IP1 start on sles11-ha2 + * Pseudo action: GRP_Web_Server_running_0 + * Resource action: PRIM_Web_IP1 monitor=5000 on sles11-ha2 + +Revised cluster status: +Online: [ sles11-ha1 sles11-ha2 sles11-ha3 ] + + Clone Set: Stinith_Clone_Resource [Stonith_Resource] + Started: [ sles11-ha1 sles11-ha2 sles11-ha3 ] + Resource Group: GRP_Web_Server + PRIM_Web_IP1 (ocf::heartbeat:IPaddr): Started sles11-ha2 + Clone Set: pingd_Gateway [Res_Pingd_Gateway] + Started: [ sles11-ha1 sles11-ha2 sles11-ha3 ] + Clone Set: Pingd_Public [Res_Pingd_Public] + Started: [ sles11-ha1 sles11-ha2 sles11-ha3 ] + diff --git a/pengine/test10/bug-1572-1.summary b/pengine/test10/bug-1572-1.summary new file mode 100644 index 0000000000..2919f1be47 --- /dev/null +++ b/pengine/test10/bug-1572-1.summary @@ -0,0 +1,84 @@ + +Current cluster status: +Online: [ arc-dknightlx arc-tkincaidlx.wsicorp.com ] + + Master/Slave Set: ms_drbd_7788 [rsc_drbd_7788] + Masters: [ arc-tkincaidlx.wsicorp.com ] + Slaves: [ arc-dknightlx ] + Resource Group: grp_pgsql_mirror + fs_mirror (ocf::heartbeat:Filesystem): Started arc-tkincaidlx.wsicorp.com + pgsql_5555 (ocf::heartbeat:pgsql): Started arc-tkincaidlx.wsicorp.com + IPaddr_147_81_84_133 (ocf::heartbeat:IPaddr): Started arc-tkincaidlx.wsicorp.com + +Transition Summary: + * Stop rsc_drbd_7788:0 (arc-dknightlx) + * Restart rsc_drbd_7788:1 (Master arc-tkincaidlx.wsicorp.com) + * Restart fs_mirror (Started arc-tkincaidlx.wsicorp.com) + * Restart pgsql_5555 (Started arc-tkincaidlx.wsicorp.com) + * Restart IPaddr_147_81_84_133 (Started arc-tkincaidlx.wsicorp.com) + +Executing cluster transition: + * Pseudo action: ms_drbd_7788_pre_notify_demote_0 + * Pseudo action: grp_pgsql_mirror_stop_0 + * Resource action: IPaddr_147_81_84_133 stop on arc-tkincaidlx.wsicorp.com + * Resource action: rsc_drbd_7788:0 notify on arc-dknightlx + * Resource action: rsc_drbd_7788:1 notify on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_confirmed-pre_notify_demote_0 + * Resource action: pgsql_5555 stop on arc-tkincaidlx.wsicorp.com + * Resource action: fs_mirror stop on arc-tkincaidlx.wsicorp.com + * Pseudo action: grp_pgsql_mirror_stopped_0 + * Pseudo action: ms_drbd_7788_demote_0 + * Resource action: rsc_drbd_7788:1 demote on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_demoted_0 + * Pseudo action: ms_drbd_7788_post_notify_demoted_0 + * Resource action: rsc_drbd_7788:0 notify on arc-dknightlx + * Resource action: rsc_drbd_7788:1 notify on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_confirmed-post_notify_demoted_0 + * Pseudo action: ms_drbd_7788_pre_notify_stop_0 + * Resource action: rsc_drbd_7788:0 notify on arc-dknightlx + * Resource action: rsc_drbd_7788:1 notify on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_confirmed-pre_notify_stop_0 + * Pseudo action: ms_drbd_7788_stop_0 + * Resource action: rsc_drbd_7788:0 stop on arc-dknightlx + * Resource action: rsc_drbd_7788:1 stop on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_stopped_0 + * Cluster action: do_shutdown on arc-dknightlx + * Pseudo action: ms_drbd_7788_post_notify_stopped_0 + * Pseudo action: ms_drbd_7788_confirmed-post_notify_stopped_0 + * Pseudo action: ms_drbd_7788_pre_notify_start_0 + * Pseudo action: all_stopped + * Pseudo action: ms_drbd_7788_confirmed-pre_notify_start_0 + * Pseudo action: ms_drbd_7788_start_0 + * Resource action: rsc_drbd_7788:1 start on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_running_0 + * Pseudo action: ms_drbd_7788_post_notify_running_0 + * Resource action: rsc_drbd_7788:1 notify on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_confirmed-post_notify_running_0 + * Pseudo action: ms_drbd_7788_pre_notify_promote_0 + * Resource action: rsc_drbd_7788:1 notify on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_confirmed-pre_notify_promote_0 + * Pseudo action: ms_drbd_7788_promote_0 + * Resource action: rsc_drbd_7788:1 promote on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_promoted_0 + * Pseudo action: ms_drbd_7788_post_notify_promoted_0 + * Resource action: rsc_drbd_7788:1 notify on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_confirmed-post_notify_promoted_0 + * Pseudo action: grp_pgsql_mirror_start_0 + * Resource action: fs_mirror start on arc-tkincaidlx.wsicorp.com + * Resource action: pgsql_5555 start on arc-tkincaidlx.wsicorp.com + * Resource action: pgsql_5555 monitor=30000 on arc-tkincaidlx.wsicorp.com + * Resource action: IPaddr_147_81_84_133 start on arc-tkincaidlx.wsicorp.com + * Resource action: IPaddr_147_81_84_133 monitor=25000 on arc-tkincaidlx.wsicorp.com + * Pseudo action: grp_pgsql_mirror_running_0 + +Revised cluster status: +Online: [ arc-dknightlx arc-tkincaidlx.wsicorp.com ] + + Master/Slave Set: ms_drbd_7788 [rsc_drbd_7788] + Masters: [ arc-tkincaidlx.wsicorp.com ] + Stopped: [ rsc_drbd_7788:0 ] + Resource Group: grp_pgsql_mirror + fs_mirror (ocf::heartbeat:Filesystem): Started arc-tkincaidlx.wsicorp.com + pgsql_5555 (ocf::heartbeat:pgsql): Started arc-tkincaidlx.wsicorp.com + IPaddr_147_81_84_133 (ocf::heartbeat:IPaddr): Started arc-tkincaidlx.wsicorp.com + diff --git a/pengine/test10/bug-1572-2.summary b/pengine/test10/bug-1572-2.summary new file mode 100644 index 0000000000..5820bd3492 --- /dev/null +++ b/pengine/test10/bug-1572-2.summary @@ -0,0 +1,60 @@ + +Current cluster status: +Online: [ arc-dknightlx arc-tkincaidlx.wsicorp.com ] + + Master/Slave Set: ms_drbd_7788 [rsc_drbd_7788] + Masters: [ arc-tkincaidlx.wsicorp.com ] + Slaves: [ arc-dknightlx ] + Resource Group: grp_pgsql_mirror + fs_mirror (ocf::heartbeat:Filesystem): Started arc-tkincaidlx.wsicorp.com + pgsql_5555 (ocf::heartbeat:pgsql): Started arc-tkincaidlx.wsicorp.com + IPaddr_147_81_84_133 (ocf::heartbeat:IPaddr): Started arc-tkincaidlx.wsicorp.com + +Transition Summary: + * Stop rsc_drbd_7788:0 (arc-dknightlx) + * Demote rsc_drbd_7788:1 (Master -> Slave arc-tkincaidlx.wsicorp.com) + * Stop fs_mirror (arc-tkincaidlx.wsicorp.com) + * Stop pgsql_5555 (arc-tkincaidlx.wsicorp.com) + * Stop IPaddr_147_81_84_133 (arc-tkincaidlx.wsicorp.com) + +Executing cluster transition: + * Pseudo action: ms_drbd_7788_pre_notify_demote_0 + * Pseudo action: grp_pgsql_mirror_stop_0 + * Resource action: IPaddr_147_81_84_133 stop on arc-tkincaidlx.wsicorp.com + * Resource action: rsc_drbd_7788:0 notify on arc-dknightlx + * Resource action: rsc_drbd_7788:1 notify on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_confirmed-pre_notify_demote_0 + * Resource action: pgsql_5555 stop on arc-tkincaidlx.wsicorp.com + * Resource action: fs_mirror stop on arc-tkincaidlx.wsicorp.com + * Pseudo action: grp_pgsql_mirror_stopped_0 + * Pseudo action: ms_drbd_7788_demote_0 + * Resource action: rsc_drbd_7788:1 demote on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_demoted_0 + * Pseudo action: ms_drbd_7788_post_notify_demoted_0 + * Resource action: rsc_drbd_7788:0 notify on arc-dknightlx + * Resource action: rsc_drbd_7788:1 notify on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_confirmed-post_notify_demoted_0 + * Pseudo action: ms_drbd_7788_pre_notify_stop_0 + * Resource action: rsc_drbd_7788:0 notify on arc-dknightlx + * Resource action: rsc_drbd_7788:1 notify on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_confirmed-pre_notify_stop_0 + * Pseudo action: ms_drbd_7788_stop_0 + * Resource action: rsc_drbd_7788:0 stop on arc-dknightlx + * Pseudo action: ms_drbd_7788_stopped_0 + * Cluster action: do_shutdown on arc-dknightlx + * Pseudo action: ms_drbd_7788_post_notify_stopped_0 + * Resource action: rsc_drbd_7788:1 notify on arc-tkincaidlx.wsicorp.com + * Pseudo action: ms_drbd_7788_confirmed-post_notify_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ arc-dknightlx arc-tkincaidlx.wsicorp.com ] + + Master/Slave Set: ms_drbd_7788 [rsc_drbd_7788] + Slaves: [ arc-tkincaidlx.wsicorp.com ] + Stopped: [ rsc_drbd_7788:0 ] + Resource Group: grp_pgsql_mirror + fs_mirror (ocf::heartbeat:Filesystem): Stopped + pgsql_5555 (ocf::heartbeat:pgsql): Stopped + IPaddr_147_81_84_133 (ocf::heartbeat:IPaddr): Stopped + diff --git a/pengine/test10/bug-1573.summary b/pengine/test10/bug-1573.summary new file mode 100644 index 0000000000..0c1fe3d3d8 --- /dev/null +++ b/pengine/test10/bug-1573.summary @@ -0,0 +1,33 @@ + +Current cluster status: +Online: [ xen-b ] +OFFLINE: [ xen-c ] + + Resource Group: group_1 + IPaddr_192_168_1_101 (ocf::heartbeat:IPaddr): Stopped + apache_2 (ocf::heartbeat:apache): Stopped + Resource Group: group_11 + IPaddr_192_168_1_102 (ocf::heartbeat:IPaddr): Started xen-b + apache_6 (ocf::heartbeat:apache): Stopped + +Transition Summary: + * Stop IPaddr_192_168_1_102 (xen-b) + +Executing cluster transition: + * Pseudo action: group_11_stop_0 + * Resource action: IPaddr_192_168_1_102 stop on xen-b + * Cluster action: do_shutdown on xen-b + * Pseudo action: all_stopped + * Pseudo action: group_11_stopped_0 + +Revised cluster status: +Online: [ xen-b ] +OFFLINE: [ xen-c ] + + Resource Group: group_1 + IPaddr_192_168_1_101 (ocf::heartbeat:IPaddr): Stopped + apache_2 (ocf::heartbeat:apache): Stopped + Resource Group: group_11 + IPaddr_192_168_1_102 (ocf::heartbeat:IPaddr): Stopped + apache_6 (ocf::heartbeat:apache): Stopped + diff --git a/pengine/test10/bug-1685.summary b/pengine/test10/bug-1685.summary new file mode 100644 index 0000000000..2a83214030 --- /dev/null +++ b/pengine/test10/bug-1685.summary @@ -0,0 +1,36 @@ + +Current cluster status: +Online: [ redun2 redun1 ] + + Master/Slave Set: shared_storage [prim_shared_storage] + Slaves: [ redun2 redun1 ] + shared_filesystem (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + * Promote prim_shared_storage:0 (Slave -> Master redun2) + * Start shared_filesystem (redun2) + +Executing cluster transition: + * Pseudo action: shared_storage_pre_notify_promote_0 + * Resource action: prim_shared_storage:0 notify on redun2 + * Resource action: prim_shared_storage:1 notify on redun1 + * Pseudo action: shared_storage_confirmed-pre_notify_promote_0 + * Pseudo action: shared_storage_promote_0 + * Resource action: prim_shared_storage:0 promote on redun2 + * Pseudo action: shared_storage_promoted_0 + * Pseudo action: shared_storage_post_notify_promoted_0 + * Resource action: prim_shared_storage:0 notify on redun2 + * Resource action: prim_shared_storage:1 notify on redun1 + * Pseudo action: shared_storage_confirmed-post_notify_promoted_0 + * Resource action: shared_filesystem start on redun2 + * Resource action: prim_shared_storage:1 monitor=120000 on redun1 + * Resource action: shared_filesystem monitor=120000 on redun2 + +Revised cluster status: +Online: [ redun2 redun1 ] + + Master/Slave Set: shared_storage [prim_shared_storage] + Masters: [ redun2 ] + Slaves: [ redun1 ] + shared_filesystem (ocf::heartbeat:Filesystem): Started redun2 + diff --git a/pengine/test10/bug-1718.summary b/pengine/test10/bug-1718.summary new file mode 100644 index 0000000000..b980e068e2 --- /dev/null +++ b/pengine/test10/bug-1718.summary @@ -0,0 +1,36 @@ + +Current cluster status: +Online: [ heartbeat.ds9 ops.ds9 biggame.ds9 ] +OFFLINE: [ defiant.ds9 warbird.ds9 ] + + Resource Group: Web_Group + Apache_IP (ocf::heartbeat:IPaddr): Started heartbeat.ds9 + resource_IP2 (ocf::heartbeat:IPaddr): Stopped + resource_dummyweb (ocf::heartbeat:Dummy): Stopped + Resource Group: group_fUN + resource_IP3 (ocf::heartbeat:IPaddr): Started ops.ds9 + resource_dummy (ocf::heartbeat:Dummy): Started ops.ds9 + +Transition Summary: + * Stop resource_IP3 (Started ops.ds9) + * Stop resource_dummy (Started ops.ds9) + +Executing cluster transition: + * Pseudo action: group_fUN_stop_0 + * Resource action: resource_dummy stop on ops.ds9 + * Resource action: resource_IP3 stop on ops.ds9 + * Pseudo action: all_stopped + * Pseudo action: group_fUN_stopped_0 + +Revised cluster status: +Online: [ heartbeat.ds9 ops.ds9 biggame.ds9 ] +OFFLINE: [ defiant.ds9 warbird.ds9 ] + + Resource Group: Web_Group + Apache_IP (ocf::heartbeat:IPaddr): Started heartbeat.ds9 + resource_IP2 (ocf::heartbeat:IPaddr): Stopped + resource_dummyweb (ocf::heartbeat:Dummy): Stopped + Resource Group: group_fUN + resource_IP3 (ocf::heartbeat:IPaddr): Stopped + resource_dummy (ocf::heartbeat:Dummy): Stopped + diff --git a/pengine/test10/bug-1765.summary b/pengine/test10/bug-1765.summary new file mode 100644 index 0000000000..d3b8c41cfa --- /dev/null +++ b/pengine/test10/bug-1765.summary @@ -0,0 +1,36 @@ + +Current cluster status: +Online: [ sles236 sles238 ] + + Master/Slave Set: ms-drbd0 [drbd0] + Masters: [ sles236 ] + Stopped: [ drbd0:1 ] + Master/Slave Set: ms-drbd1 [drbd1] + Masters: [ sles236 ] + Slaves: [ sles238 ] + +Transition Summary: + * Start drbd0:1 (sles238) + +Executing cluster transition: + * Pseudo action: ms-drbd0_pre_notify_start_0 + * Resource action: drbd0:0 notify on sles236 + * Pseudo action: ms-drbd0_confirmed-pre_notify_start_0 + * Pseudo action: ms-drbd0_start_0 + * Resource action: drbd0:1 start on sles238 + * Pseudo action: ms-drbd0_running_0 + * Pseudo action: ms-drbd0_post_notify_running_0 + * Resource action: drbd0:0 notify on sles236 + * Resource action: drbd0:1 notify on sles238 + * Pseudo action: ms-drbd0_confirmed-post_notify_running_0 + +Revised cluster status: +Online: [ sles236 sles238 ] + + Master/Slave Set: ms-drbd0 [drbd0] + Masters: [ sles236 ] + Slaves: [ sles238 ] + Master/Slave Set: ms-drbd1 [drbd1] + Masters: [ sles236 ] + Slaves: [ sles238 ] + diff --git a/pengine/test10/bug-1820-1.summary b/pengine/test10/bug-1820-1.summary new file mode 100644 index 0000000000..1c4de6341d --- /dev/null +++ b/pengine/test10/bug-1820-1.summary @@ -0,0 +1,40 @@ + +Current cluster status: +Online: [ star world ] + + p1 (ocf::heartbeat:Xen): Stopped + Resource Group: gr1 + test1 (ocf::heartbeat:Xen): Started star + test2 (ocf::heartbeat:Xen): Started star + +Transition Summary: + * Start p1 (world) + * Move test1 (Started star -> world) + * Move test2 (Started star -> world) + +Executing cluster transition: + * Resource action: p1 monitor on world + * Resource action: p1 monitor on star + * Pseudo action: gr1_stop_0 + * Pseudo action: probe_complete + * Resource action: p1 start on world + * Resource action: test2 stop on star + * Resource action: test1 stop on star + * Cluster action: do_shutdown on star + * Pseudo action: all_stopped + * Pseudo action: gr1_stopped_0 + * Pseudo action: gr1_start_0 + * Resource action: test1 start on world + * Resource action: test2 start on world + * Pseudo action: gr1_running_0 + * Resource action: test1 monitor=10000 on world + * Resource action: test2 monitor=10000 on world + +Revised cluster status: +Online: [ star world ] + + p1 (ocf::heartbeat:Xen): Started world + Resource Group: gr1 + test1 (ocf::heartbeat:Xen): Started world + test2 (ocf::heartbeat:Xen): Started world + diff --git a/pengine/test10/bug-1820.summary b/pengine/test10/bug-1820.summary new file mode 100644 index 0000000000..3960634a29 --- /dev/null +++ b/pengine/test10/bug-1820.summary @@ -0,0 +1,35 @@ + +Current cluster status: +Online: [ star world ] + + Resource Group: gr1 + test1 (ocf::heartbeat:Xen): Started star + test2 (ocf::heartbeat:Xen): Started star + +Transition Summary: + * Migrate test1 (Started star -> world) + * Move test2 (Started star -> world) + +Executing cluster transition: + * Pseudo action: gr1_stop_0 + * Resource action: test2 stop on star + * Resource action: test1 migrate_to on star + * Resource action: test1 migrate_from on world + * Resource action: test1 stop on star + * Cluster action: do_shutdown on star + * Pseudo action: all_stopped + * Pseudo action: gr1_stopped_0 + * Pseudo action: gr1_start_0 + * Pseudo action: test1_start_0 + * Resource action: test2 start on world + * Pseudo action: gr1_running_0 + * Resource action: test1 monitor=10000 on world + * Resource action: test2 monitor=10000 on world + +Revised cluster status: +Online: [ star world ] + + Resource Group: gr1 + test1 (ocf::heartbeat:Xen): Started world + test2 (ocf::heartbeat:Xen): Started world + diff --git a/pengine/test10/bug-1822.summary b/pengine/test10/bug-1822.summary new file mode 100644 index 0000000000..6cfd45e5a4 --- /dev/null +++ b/pengine/test10/bug-1822.summary @@ -0,0 +1,43 @@ + +Current cluster status: +Online: [ process1a process2b ] + + Master/Slave Set: ms-sf [ms-sf_group] (unique) + Resource Group: ms-sf_group:0 + master_slave_Stateful:0 (ocf::heartbeat:Dummy-statful): Started process2b + master_slave_procdctl:0 (ocf::heartbeat:procdctl): Stopped + Resource Group: ms-sf_group:1 + master_slave_Stateful:1 (ocf::heartbeat:Dummy-statful): Master process1a + master_slave_procdctl:1 (ocf::heartbeat:procdctl): Master process1a + +Transition Summary: + * Demote master_slave_Stateful:1 (Master -> Stopped process1a) + * Demote master_slave_procdctl:1 (Master -> Stopped process1a) + +Executing cluster transition: + * Pseudo action: ms-sf_demote_0 + * Pseudo action: ms-sf_group:1_demote_0 + * Resource action: master_slave_Stateful:1 demote on process1a + * Resource action: master_slave_procdctl:1 demote on process1a + * Pseudo action: ms-sf_group:1_demoted_0 + * Pseudo action: ms-sf_demoted_0 + * Pseudo action: ms-sf_stop_0 + * Pseudo action: ms-sf_group:1_stop_0 + * Resource action: master_slave_Stateful:1 stop on process1a + * Resource action: master_slave_procdctl:1 stop on process1a + * Cluster action: do_shutdown on process1a + * Pseudo action: all_stopped + * Pseudo action: ms-sf_group:1_stopped_0 + * Pseudo action: ms-sf_stopped_0 + +Revised cluster status: +Online: [ process1a process2b ] + + Master/Slave Set: ms-sf [ms-sf_group] (unique) + Resource Group: ms-sf_group:0 + master_slave_Stateful:0 (ocf::heartbeat:Dummy-statful): Started process2b + master_slave_procdctl:0 (ocf::heartbeat:procdctl): Stopped + Resource Group: ms-sf_group:1 + master_slave_Stateful:1 (ocf::heartbeat:Dummy-statful): Stopped + master_slave_procdctl:1 (ocf::heartbeat:procdctl): Stopped + diff --git a/pengine/test10/bug-5007-masterslave_colocation.summary b/pengine/test10/bug-5007-masterslave_colocation.summary new file mode 100644 index 0000000000..06a81e19af --- /dev/null +++ b/pengine/test10/bug-5007-masterslave_colocation.summary @@ -0,0 +1,30 @@ + +Current cluster status: +Online: [ fc16-builder fc16-builder2 ] + + Master/Slave Set: MS_DUMMY [DUMMY] + Masters: [ fc16-builder ] + Slaves: [ fc16-builder2 ] + SLAVE_IP (ocf::pacemaker:Dummy): Started fc16-builder + MASTER_IP (ocf::pacemaker:Dummy): Started fc16-builder2 + +Transition Summary: + * Move SLAVE_IP (Started fc16-builder -> fc16-builder2) + * Move MASTER_IP (Started fc16-builder2 -> fc16-builder) + +Executing cluster transition: + * Resource action: SLAVE_IP stop on fc16-builder + * Resource action: MASTER_IP stop on fc16-builder2 + * Pseudo action: all_stopped + * Resource action: SLAVE_IP start on fc16-builder2 + * Resource action: MASTER_IP start on fc16-builder + +Revised cluster status: +Online: [ fc16-builder fc16-builder2 ] + + Master/Slave Set: MS_DUMMY [DUMMY] + Masters: [ fc16-builder ] + Slaves: [ fc16-builder2 ] + SLAVE_IP (ocf::pacemaker:Dummy): Started fc16-builder2 + MASTER_IP (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/bug-5014-A-start-B-start.summary b/pengine/test10/bug-5014-A-start-B-start.summary new file mode 100644 index 0000000000..553b695b21 --- /dev/null +++ b/pengine/test10/bug-5014-A-start-B-start.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ fc16-builder ] + + ClusterIP (ocf::heartbeat:IPaddr2): Stopped + ClusterIP2 (ocf::heartbeat:IPaddr2): Stopped + +Transition Summary: + * Start ClusterIP (fc16-builder) + * Start ClusterIP2 (fc16-builder) + +Executing cluster transition: + * Resource action: ClusterIP monitor on fc16-builder + * Resource action: ClusterIP2 monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: ClusterIP start on fc16-builder + * Resource action: ClusterIP2 start on fc16-builder + * Resource action: ClusterIP monitor=30000 on fc16-builder + * Resource action: ClusterIP2 monitor=30000 on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] + + ClusterIP (ocf::heartbeat:IPaddr2): Started fc16-builder + ClusterIP2 (ocf::heartbeat:IPaddr2): Started fc16-builder + diff --git a/pengine/test10/bug-5014-A-stop-B-started.summary b/pengine/test10/bug-5014-A-stop-B-started.summary new file mode 100644 index 0000000000..dcb7646f0b --- /dev/null +++ b/pengine/test10/bug-5014-A-stop-B-started.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ fc16-builder ] + + ClusterIP (ocf::heartbeat:IPaddr2): Started fc16-builder + ClusterIP2 (ocf::heartbeat:IPaddr2): Started fc16-builder + +Transition Summary: + * Stop ClusterIP (fc16-builder) + +Executing cluster transition: + * Resource action: ClusterIP stop on fc16-builder + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ fc16-builder ] + + ClusterIP (ocf::heartbeat:IPaddr2): Stopped + ClusterIP2 (ocf::heartbeat:IPaddr2): Started fc16-builder + diff --git a/pengine/test10/bug-5014-A-stopped-B-stopped.summary b/pengine/test10/bug-5014-A-stopped-B-stopped.summary new file mode 100644 index 0000000000..49345643ef --- /dev/null +++ b/pengine/test10/bug-5014-A-stopped-B-stopped.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ fc16-builder ] + + ClusterIP (ocf::heartbeat:IPaddr2): Stopped + ClusterIP2 (ocf::heartbeat:IPaddr2): Stopped + +Transition Summary: + * Start ClusterIP2 (fc16-builder - blocked) + +Executing cluster transition: + * Resource action: ClusterIP monitor on fc16-builder + * Resource action: ClusterIP2 monitor on fc16-builder + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ fc16-builder ] + + ClusterIP (ocf::heartbeat:IPaddr2): Stopped + ClusterIP2 (ocf::heartbeat:IPaddr2): Stopped + diff --git a/pengine/test10/bug-5014-CLONE-A-start-B-start.summary b/pengine/test10/bug-5014-CLONE-A-start-B-start.summary new file mode 100644 index 0000000000..9dad260e76 --- /dev/null +++ b/pengine/test10/bug-5014-CLONE-A-start-B-start.summary @@ -0,0 +1,34 @@ + +Current cluster status: +Online: [ fc16-builder ] + + Clone Set: clone1 [ClusterIP] + Stopped: [ ClusterIP:0 ] + Clone Set: clone2 [ClusterIP2] + Stopped: [ ClusterIP2:0 ] + +Transition Summary: + * Start ClusterIP:0 (fc16-builder) + * Start ClusterIP2:0 (fc16-builder) + +Executing cluster transition: + * Resource action: ClusterIP:0 monitor on fc16-builder + * Pseudo action: clone1_start_0 + * Resource action: ClusterIP2:0 monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: ClusterIP:0 start on fc16-builder + * Pseudo action: clone1_running_0 + * Pseudo action: clone2_start_0 + * Resource action: ClusterIP:0 monitor=30000 on fc16-builder + * Resource action: ClusterIP2:0 start on fc16-builder + * Pseudo action: clone2_running_0 + * Resource action: ClusterIP2:0 monitor=30000 on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] + + Clone Set: clone1 [ClusterIP] + Started: [ fc16-builder ] + Clone Set: clone2 [ClusterIP2] + Started: [ fc16-builder ] + diff --git a/pengine/test10/bug-5014-CLONE-A-stop-B-started.summary b/pengine/test10/bug-5014-CLONE-A-stop-B-started.summary new file mode 100644 index 0000000000..e9c18f99a4 --- /dev/null +++ b/pengine/test10/bug-5014-CLONE-A-stop-B-started.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ fc16-builder ] + + Clone Set: clone1 [ClusterIP] + Started: [ fc16-builder ] + Clone Set: clone2 [ClusterIP2] + Started: [ fc16-builder ] + +Transition Summary: + * Stop ClusterIP:0 (fc16-builder) + +Executing cluster transition: + * Pseudo action: clone1_stop_0 + * Resource action: ClusterIP:0 stop on fc16-builder + * Pseudo action: clone1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ fc16-builder ] + + Clone Set: clone1 [ClusterIP] + Stopped: [ ClusterIP:0 ] + Clone Set: clone2 [ClusterIP2] + Started: [ fc16-builder ] + diff --git a/pengine/test10/bug-5014-CthenAthenB-C-stopped.summary b/pengine/test10/bug-5014-CthenAthenB-C-stopped.summary new file mode 100644 index 0000000000..75a1a32b94 --- /dev/null +++ b/pengine/test10/bug-5014-CthenAthenB-C-stopped.summary @@ -0,0 +1,25 @@ + +Current cluster status: +Online: [ fc16-builder ] + + ClusterIP (ocf::heartbeat:IPaddr2): Stopped + ClusterIP2 (ocf::heartbeat:IPaddr2): Stopped + ClusterIP3 (ocf::heartbeat:IPaddr2): Stopped + +Transition Summary: + * Start ClusterIP (fc16-builder - blocked) + * Start ClusterIP2 (fc16-builder - blocked) + +Executing cluster transition: + * Resource action: ClusterIP monitor on fc16-builder + * Resource action: ClusterIP2 monitor on fc16-builder + * Resource action: ClusterIP3 monitor on fc16-builder + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ fc16-builder ] + + ClusterIP (ocf::heartbeat:IPaddr2): Stopped + ClusterIP2 (ocf::heartbeat:IPaddr2): Stopped + ClusterIP3 (ocf::heartbeat:IPaddr2): Stopped + diff --git a/pengine/test10/bug-5014-GROUP-A-start-B-start.summary b/pengine/test10/bug-5014-GROUP-A-start-B-start.summary new file mode 100644 index 0000000000..6cdf840c8f --- /dev/null +++ b/pengine/test10/bug-5014-GROUP-A-start-B-start.summary @@ -0,0 +1,31 @@ + +Current cluster status: +Online: [ fc16-builder ] + + Resource Group: group1 + ClusterIP (ocf::heartbeat:IPaddr2): Stopped + Resource Group: group2 + ClusterIP2 (ocf::heartbeat:IPaddr2): Stopped + +Transition Summary: + * Start ClusterIP (fc16-builder) + * Start ClusterIP2 (fc16-builder) + +Executing cluster transition: + * Pseudo action: group1_start_0 + * Resource action: ClusterIP start on fc16-builder + * Pseudo action: group1_running_0 + * Resource action: ClusterIP monitor=30000 on fc16-builder + * Pseudo action: group2_start_0 + * Resource action: ClusterIP2 start on fc16-builder + * Pseudo action: group2_running_0 + * Resource action: ClusterIP2 monitor=30000 on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] + + Resource Group: group1 + ClusterIP (ocf::heartbeat:IPaddr2): Started fc16-builder + Resource Group: group2 + ClusterIP2 (ocf::heartbeat:IPaddr2): Started fc16-builder + diff --git a/pengine/test10/bug-5014-GROUP-A-stopped-B-started.summary b/pengine/test10/bug-5014-GROUP-A-stopped-B-started.summary new file mode 100644 index 0000000000..d4b00b8f88 --- /dev/null +++ b/pengine/test10/bug-5014-GROUP-A-stopped-B-started.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ fc16-builder ] + + Resource Group: group1 + ClusterIP (ocf::heartbeat:IPaddr2): Started fc16-builder + Resource Group: group2 + ClusterIP2 (ocf::heartbeat:IPaddr2): Started fc16-builder + +Transition Summary: + * Stop ClusterIP (fc16-builder) + +Executing cluster transition: + * Pseudo action: group1_stop_0 + * Resource action: ClusterIP stop on fc16-builder + * Pseudo action: all_stopped + * Pseudo action: group1_stopped_0 + +Revised cluster status: +Online: [ fc16-builder ] + + Resource Group: group1 + ClusterIP (ocf::heartbeat:IPaddr2): Stopped + Resource Group: group2 + ClusterIP2 (ocf::heartbeat:IPaddr2): Started fc16-builder + diff --git a/pengine/test10/bug-5014-GROUP-A-stopped-B-stopped.summary b/pengine/test10/bug-5014-GROUP-A-stopped-B-stopped.summary new file mode 100644 index 0000000000..a36f7c6f3b --- /dev/null +++ b/pengine/test10/bug-5014-GROUP-A-stopped-B-stopped.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ fc16-builder ] + + Resource Group: group1 + ClusterIP (ocf::heartbeat:IPaddr2): Stopped + Resource Group: group2 + ClusterIP2 (ocf::heartbeat:IPaddr2): Stopped + +Transition Summary: + * Start ClusterIP2 (fc16-builder - blocked) + +Executing cluster transition: + +Revised cluster status: +Online: [ fc16-builder ] + + Resource Group: group1 + ClusterIP (ocf::heartbeat:IPaddr2): Stopped + Resource Group: group2 + ClusterIP2 (ocf::heartbeat:IPaddr2): Stopped + diff --git a/pengine/test10/bug-5014-ordered-set-symmetrical-false.summary b/pengine/test10/bug-5014-ordered-set-symmetrical-false.summary new file mode 100644 index 0000000000..92c68cd1c3 --- /dev/null +++ b/pengine/test10/bug-5014-ordered-set-symmetrical-false.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Started fc16-builder + C (ocf::pacemaker:Dummy): Started fc16-builder + +Transition Summary: + * Stop C (fc16-builder) + +Executing cluster transition: + * Resource action: C stop on fc16-builder + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Started fc16-builder + C (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/bug-5014-ordered-set-symmetrical-true.summary b/pengine/test10/bug-5014-ordered-set-symmetrical-true.summary new file mode 100644 index 0000000000..4b41b76147 --- /dev/null +++ b/pengine/test10/bug-5014-ordered-set-symmetrical-true.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Started fc16-builder + C (ocf::pacemaker:Dummy): Started fc16-builder + +Transition Summary: + * Stop A (Started fc16-builder) + * Stop C (fc16-builder) + +Executing cluster transition: + * Resource action: A stop on fc16-builder + * Resource action: C stop on fc16-builder + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Stopped + B (ocf::pacemaker:Dummy): Started fc16-builder + C (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/bug-5025-1.summary b/pengine/test10/bug-5025-1.summary new file mode 100644 index 0000000000..6324f2014b --- /dev/null +++ b/pengine/test10/bug-5025-1.summary @@ -0,0 +1,23 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 fc16-builder3 ] + + virt-fencing (stonith:fence_xvm): Started fc16-builder + A (ocf::pacemaker:Dummy): Started fc16-builder + +Transition Summary: + * Reload A (Started fc16-builder) + +Executing cluster transition: + * Cluster action: clear_failcount on fc16-builder + * Resource action: A reload on fc16-builder + * Resource action: A monitor=30000 on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 fc16-builder3 ] + + virt-fencing (stonith:fence_xvm): Started fc16-builder + A (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/bug-5025-2.summary b/pengine/test10/bug-5025-2.summary new file mode 100644 index 0000000000..a823ca8389 --- /dev/null +++ b/pengine/test10/bug-5025-2.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 fc16-builder3 ] + + virt-fencing (stonith:fence_xvm): Stopped + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Started fc16-builder + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 fc16-builder3 ] + + virt-fencing (stonith:fence_xvm): Stopped + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/bug-5025-3.summary b/pengine/test10/bug-5025-3.summary new file mode 100644 index 0000000000..de1d65403e --- /dev/null +++ b/pengine/test10/bug-5025-3.summary @@ -0,0 +1,27 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 fc16-builder3 ] + + virt-fencing (stonith:fence_xvm): Stopped + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Started fc16-builder + +Transition Summary: + * Restart A (Started fc16-builder) + +Executing cluster transition: + * Resource action: A stop on fc16-builder + * Cluster action: clear_failcount on fc16-builder + * Resource action: A start on fc16-builder + * Resource action: A monitor=30000 on fc16-builder + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 fc16-builder3 ] + + virt-fencing (stonith:fence_xvm): Stopped + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/bug-5028-bottom.summary b/pengine/test10/bug-5028-bottom.summary new file mode 100644 index 0000000000..6e3d895276 --- /dev/null +++ b/pengine/test10/bug-5028-bottom.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ bl460g6a bl460g6b ] + + Resource Group: dummy-g + dummy01 (ocf::heartbeat:Dummy): Started bl460g6a (unmanaged) FAILED + dummy02 (ocf::heartbeat:Dummy-stop-NG): Started bl460g6a + +Transition Summary: + * Stop dummy02 (bl460g6a) + +Executing cluster transition: + * Pseudo action: dummy-g_stop_0 + * Pseudo action: dummy-g_start_0 + * Resource action: dummy02 stop on bl460g6a + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ bl460g6a bl460g6b ] + + Resource Group: dummy-g + dummy01 (ocf::heartbeat:Dummy): Started bl460g6a (unmanaged) FAILED + dummy02 (ocf::heartbeat:Dummy-stop-NG): Stopped + diff --git a/pengine/test10/bug-5028-detach.summary b/pengine/test10/bug-5028-detach.summary new file mode 100644 index 0000000000..193b1a1625 --- /dev/null +++ b/pengine/test10/bug-5028-detach.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ bl460g6a bl460g6b ] + + Resource Group: dummy-g + dummy01 (ocf::heartbeat:Dummy): Started bl460g6a (unmanaged) + dummy02 (ocf::heartbeat:Dummy-stop-NG): Started bl460g6a (unmanaged) FAILED + +Transition Summary: + +Executing cluster transition: + * Cluster action: do_shutdown on bl460g6a + +Revised cluster status: +Online: [ bl460g6a bl460g6b ] + + Resource Group: dummy-g + dummy01 (ocf::heartbeat:Dummy): Started bl460g6a (unmanaged) + dummy02 (ocf::heartbeat:Dummy-stop-NG): Started bl460g6a (unmanaged) FAILED + diff --git a/pengine/test10/bug-5028.summary b/pengine/test10/bug-5028.summary new file mode 100644 index 0000000000..a8f20af020 --- /dev/null +++ b/pengine/test10/bug-5028.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ bl460g6a bl460g6b ] + + Resource Group: dummy-g + dummy01 (ocf::heartbeat:Dummy): Started bl460g6a + dummy02 (ocf::heartbeat:Dummy-stop-NG): Started bl460g6a (unmanaged) FAILED + +Transition Summary: + * Move dummy01 (Started bl460g6a -> bl460g6b) + +Executing cluster transition: + * Pseudo action: dummy-g_stop_0 + * Pseudo action: dummy-g_start_0 + +Revised cluster status: +Online: [ bl460g6a bl460g6b ] + + Resource Group: dummy-g + dummy01 (ocf::heartbeat:Dummy): Started bl460g6a + dummy02 (ocf::heartbeat:Dummy-stop-NG): Started bl460g6a (unmanaged) FAILED + diff --git a/pengine/test10/bug-5038.summary b/pengine/test10/bug-5038.summary new file mode 100644 index 0000000000..743f914d24 --- /dev/null +++ b/pengine/test10/bug-5038.summary @@ -0,0 +1,23 @@ + +Current cluster status: +Online: [ node-0 node-2 ] + + Clone Set: clone-node-app-rsc [node-app-rsc] + Started: [ node-0 node-2 ] + Resource Group: group-dc + failover-ip (ocf::heartbeat:IPaddr2): Started node-0 + master-app-rsc (lsb:cluster-master): Started node-0 + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node-0 node-2 ] + + Clone Set: clone-node-app-rsc [node-app-rsc] + Started: [ node-0 node-2 ] + Resource Group: group-dc + failover-ip (ocf::heartbeat:IPaddr2): Started node-0 + master-app-rsc (lsb:cluster-master): Started node-0 + diff --git a/pengine/test10/bug-5059.summary b/pengine/test10/bug-5059.summary new file mode 100644 index 0000000000..e03c367010 --- /dev/null +++ b/pengine/test10/bug-5059.summary @@ -0,0 +1,73 @@ + +Current cluster status: +Node gluster03.h: standby +Online: [ gluster02.h gluster01.h ] +OFFLINE: [ gluster04.h ] + + Master/Slave Set: ms_stateful [g_stateful] + Resource Group: g_stateful:0 + p_stateful1:0 (ocf::pacemaker:Stateful): Started gluster01.h + p_stateful2:0 (ocf::pacemaker:Stateful): Stopped + Resource Group: g_stateful:1 + p_stateful1:1 (ocf::pacemaker:Stateful): Started gluster02.h + p_stateful2:1 (ocf::pacemaker:Stateful): Stopped + Clone Set: c_dummy [p_dummy1] + Started: [ gluster01.h gluster02.h ] + +Transition Summary: + * Promote p_stateful1:0 (Slave -> Master gluster01.h) + * Start p_stateful2:0 (gluster01.h) + * Promote p_stateful2:0 (Stopped -> Master gluster01.h) + * Start p_stateful2:1 (gluster02.h) + +Executing cluster transition: + * Pseudo action: ms_stateful_pre_notify_start_0 + * Resource action: p_stateful1:0 notify on gluster01.h + * Resource action: p_stateful1:1 notify on gluster02.h + * Pseudo action: ms_stateful_confirmed-pre_notify_start_0 + * Pseudo action: ms_stateful_start_0 + * Pseudo action: g_stateful:0_start_0 + * Resource action: p_stateful2:0 start on gluster01.h + * Pseudo action: g_stateful:1_start_0 + * Resource action: p_stateful2:1 start on gluster02.h + * Pseudo action: g_stateful:0_running_0 + * Pseudo action: g_stateful:1_running_0 + * Pseudo action: ms_stateful_running_0 + * Pseudo action: ms_stateful_post_notify_running_0 + * Resource action: p_stateful1:0 notify on gluster01.h + * Resource action: p_stateful2:0 notify on gluster01.h + * Resource action: p_stateful1:1 notify on gluster02.h + * Resource action: p_stateful2:1 notify on gluster02.h + * Pseudo action: ms_stateful_confirmed-post_notify_running_0 + * Pseudo action: ms_stateful_pre_notify_promote_0 + * Resource action: p_stateful1:0 notify on gluster01.h + * Resource action: p_stateful2:0 notify on gluster01.h + * Resource action: p_stateful1:1 notify on gluster02.h + * Resource action: p_stateful2:1 notify on gluster02.h + * Pseudo action: ms_stateful_confirmed-pre_notify_promote_0 + * Pseudo action: ms_stateful_promote_0 + * Pseudo action: g_stateful:0_promote_0 + * Resource action: p_stateful1:0 promote on gluster01.h + * Resource action: p_stateful2:0 promote on gluster01.h + * Pseudo action: g_stateful:0_promoted_0 + * Pseudo action: ms_stateful_promoted_0 + * Pseudo action: ms_stateful_post_notify_promoted_0 + * Resource action: p_stateful1:0 notify on gluster01.h + * Resource action: p_stateful2:0 notify on gluster01.h + * Resource action: p_stateful1:1 notify on gluster02.h + * Resource action: p_stateful2:1 notify on gluster02.h + * Pseudo action: ms_stateful_confirmed-post_notify_promoted_0 + * Resource action: p_stateful1:1 monitor=10000 on gluster02.h + * Resource action: p_stateful2:1 monitor=10000 on gluster02.h + +Revised cluster status: +Node gluster03.h: standby +Online: [ gluster02.h gluster01.h ] +OFFLINE: [ gluster04.h ] + + Master/Slave Set: ms_stateful [g_stateful] + Masters: [ gluster01.h ] + Slaves: [ gluster02.h ] + Clone Set: c_dummy [p_dummy1] + Started: [ gluster01.h gluster02.h ] + diff --git a/pengine/test10/bug-5069-op-disabled.summary b/pengine/test10/bug-5069-op-disabled.summary new file mode 100644 index 0000000000..c7c47b9c71 --- /dev/null +++ b/pengine/test10/bug-5069-op-disabled.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ fc16-builder2 ] +OFFLINE: [ fc16-builder fc16-builder3 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder2 (failure ignored) + +Transition Summary: + +Executing cluster transition: + * Cluster action: clear_failcount on fc16-builder2 + * Resource action: A cancel=10000 on fc16-builder2 + +Revised cluster status: +Online: [ fc16-builder2 ] +OFFLINE: [ fc16-builder fc16-builder3 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder2 (failure ignored) + diff --git a/pengine/test10/bug-5069-op-enabled.summary b/pengine/test10/bug-5069-op-enabled.summary new file mode 100644 index 0000000000..de5410a370 --- /dev/null +++ b/pengine/test10/bug-5069-op-enabled.summary @@ -0,0 +1,17 @@ + +Current cluster status: +Online: [ fc16-builder2 ] +OFFLINE: [ fc16-builder fc16-builder3 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder2 (failure ignored) + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ fc16-builder2 ] +OFFLINE: [ fc16-builder fc16-builder3 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder2 (failure ignored) + diff --git a/pengine/test10/bug-lf-1852.summary b/pengine/test10/bug-lf-1852.summary new file mode 100644 index 0000000000..4d9d90793d --- /dev/null +++ b/pengine/test10/bug-lf-1852.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Online: [ mysql-02 mysql-01 ] + + Master/Slave Set: ms-drbd0 [drbd0] + Masters: [ mysql-02 ] + Stopped: [ drbd0:1 ] + Resource Group: fs_mysql_ip + fs0 (ocf::heartbeat:Filesystem): Started mysql-02 + mysqlid (lsb:mysql): Started mysql-02 + ip_resource (ocf::heartbeat:IPaddr2): Started mysql-02 + +Transition Summary: + * Start drbd0:1 (mysql-01) + +Executing cluster transition: + * Pseudo action: ms-drbd0_pre_notify_start_0 + * Resource action: drbd0:0 notify on mysql-02 + * Pseudo action: ms-drbd0_confirmed-pre_notify_start_0 + * Pseudo action: ms-drbd0_start_0 + * Resource action: drbd0:1 start on mysql-01 + * Pseudo action: ms-drbd0_running_0 + * Pseudo action: ms-drbd0_post_notify_running_0 + * Resource action: drbd0:0 notify on mysql-02 + * Resource action: drbd0:1 notify on mysql-01 + * Pseudo action: ms-drbd0_confirmed-post_notify_running_0 + +Revised cluster status: +Online: [ mysql-02 mysql-01 ] + + Master/Slave Set: ms-drbd0 [drbd0] + Masters: [ mysql-02 ] + Slaves: [ mysql-01 ] + Resource Group: fs_mysql_ip + fs0 (ocf::heartbeat:Filesystem): Started mysql-02 + mysqlid (lsb:mysql): Started mysql-02 + ip_resource (ocf::heartbeat:IPaddr2): Started mysql-02 + diff --git a/pengine/test10/bug-lf-1920.summary b/pengine/test10/bug-lf-1920.summary new file mode 100644 index 0000000000..d73e27e690 --- /dev/null +++ b/pengine/test10/bug-lf-1920.summary @@ -0,0 +1,16 @@ + +Current cluster status: +Online: [ dktest2sles10 dktest1sles10 ] + + mysql-bin (ocf::heartbeat:mysql): Started dktest2sles10 + +Transition Summary: + +Executing cluster transition: + * Resource action: mysql-bin monitor=30000 on dktest2sles10 + +Revised cluster status: +Online: [ dktest2sles10 dktest1sles10 ] + + mysql-bin (ocf::heartbeat:mysql): Started dktest2sles10 + diff --git a/pengine/test10/bug-lf-2106.summary b/pengine/test10/bug-lf-2106.summary new file mode 100644 index 0000000000..7be05aec11 --- /dev/null +++ b/pengine/test10/bug-lf-2106.summary @@ -0,0 +1,90 @@ + +Current cluster status: +Online: [ cl-virt-1 cl-virt-2 ] + + apcstonith (stonith:apcmastersnmp): Started cl-virt-1 + Clone Set: pingdclone [pingd] + Started: [ cl-virt-1 cl-virt-2 ] + Resource Group: ssh + ssh-ip1 (ocf::heartbeat:IPaddr2): Started cl-virt-2 + ssh-ip2 (ocf::heartbeat:IPaddr2): Started cl-virt-2 + ssh-bin (ocf::dk:opensshd): Started cl-virt-2 + itwiki (ocf::heartbeat:VirtualDomain): Started cl-virt-2 + Master/Slave Set: ms-itwiki [drbd-itwiki] + Masters: [ cl-virt-2 ] + Slaves: [ cl-virt-1 ] + bugtrack (ocf::heartbeat:VirtualDomain): Started cl-virt-2 + Master/Slave Set: ms-bugtrack [drbd-bugtrack] + Masters: [ cl-virt-2 ] + Slaves: [ cl-virt-1 ] + servsyslog (ocf::heartbeat:VirtualDomain): Started cl-virt-2 + Master/Slave Set: ms-servsyslog [drbd-servsyslog] + Masters: [ cl-virt-2 ] + Slaves: [ cl-virt-1 ] + smsprod2 (ocf::heartbeat:VirtualDomain): Started cl-virt-2 + Master/Slave Set: ms-smsprod2 [drbd-smsprod2] + Masters: [ cl-virt-2 ] + Slaves: [ cl-virt-1 ] + medomus-cvs (ocf::heartbeat:VirtualDomain): Started cl-virt-2 + Master/Slave Set: ms-medomus-cvs [drbd-medomus-cvs] + Masters: [ cl-virt-2 ] + Slaves: [ cl-virt-1 ] + infotos (ocf::heartbeat:VirtualDomain): Started cl-virt-2 + Master/Slave Set: ms-infotos [drbd-infotos] + Masters: [ cl-virt-2 ] + Slaves: [ cl-virt-1 ] + +Transition Summary: + * Restart pingd:0 (Started cl-virt-1) + * Restart pingd:1 (Started cl-virt-2) + +Executing cluster transition: + * Cluster action: clear_failcount on cl-virt-1 + * Cluster action: clear_failcount on cl-virt-2 + * Pseudo action: pingdclone_stop_0 + * Resource action: pingd:0 stop on cl-virt-1 + * Resource action: pingd:0 stop on cl-virt-2 + * Pseudo action: pingdclone_stopped_0 + * Pseudo action: pingdclone_start_0 + * Pseudo action: all_stopped + * Resource action: pingd:0 start on cl-virt-1 + * Resource action: pingd:0 monitor=30000 on cl-virt-1 + * Resource action: pingd:0 start on cl-virt-2 + * Resource action: pingd:0 monitor=30000 on cl-virt-2 + * Pseudo action: pingdclone_running_0 + +Revised cluster status: +Online: [ cl-virt-1 cl-virt-2 ] + + apcstonith (stonith:apcmastersnmp): Started cl-virt-1 + Clone Set: pingdclone [pingd] + Started: [ cl-virt-1 cl-virt-2 ] + Resource Group: ssh + ssh-ip1 (ocf::heartbeat:IPaddr2): Started cl-virt-2 + ssh-ip2 (ocf::heartbeat:IPaddr2): Started cl-virt-2 + ssh-bin (ocf::dk:opensshd): Started cl-virt-2 + itwiki (ocf::heartbeat:VirtualDomain): Started cl-virt-2 + Master/Slave Set: ms-itwiki [drbd-itwiki] + Masters: [ cl-virt-2 ] + Slaves: [ cl-virt-1 ] + bugtrack (ocf::heartbeat:VirtualDomain): Started cl-virt-2 + Master/Slave Set: ms-bugtrack [drbd-bugtrack] + Masters: [ cl-virt-2 ] + Slaves: [ cl-virt-1 ] + servsyslog (ocf::heartbeat:VirtualDomain): Started cl-virt-2 + Master/Slave Set: ms-servsyslog [drbd-servsyslog] + Masters: [ cl-virt-2 ] + Slaves: [ cl-virt-1 ] + smsprod2 (ocf::heartbeat:VirtualDomain): Started cl-virt-2 + Master/Slave Set: ms-smsprod2 [drbd-smsprod2] + Masters: [ cl-virt-2 ] + Slaves: [ cl-virt-1 ] + medomus-cvs (ocf::heartbeat:VirtualDomain): Started cl-virt-2 + Master/Slave Set: ms-medomus-cvs [drbd-medomus-cvs] + Masters: [ cl-virt-2 ] + Slaves: [ cl-virt-1 ] + infotos (ocf::heartbeat:VirtualDomain): Started cl-virt-2 + Master/Slave Set: ms-infotos [drbd-infotos] + Masters: [ cl-virt-2 ] + Slaves: [ cl-virt-1 ] + diff --git a/pengine/test10/bug-lf-2153.summary b/pengine/test10/bug-lf-2153.summary new file mode 100644 index 0000000000..5e81254b8f --- /dev/null +++ b/pengine/test10/bug-lf-2153.summary @@ -0,0 +1,58 @@ + +Current cluster status: +Node bob (9a4cafd3-fcfc-4de9-9440-10bc8822d9af): standby +Online: [ alice ] + + Master/Slave Set: ms_drbd_iscsivg01 [res_drbd_iscsivg01] + Masters: [ alice ] + Slaves: [ bob ] + Clone Set: cl_tgtd [res_tgtd] + Started: [ bob alice ] + Resource Group: rg_iscsivg01 + res_portblock_iscsivg01_block (ocf::heartbeat:portblock): Started alice + res_lvm_iscsivg01 (ocf::heartbeat:LVM): Started alice + res_target_iscsivg01 (ocf::heartbeat:iSCSITarget): Started alice + res_lu_iscsivg01_lun1 (ocf::heartbeat:iSCSILogicalUnit): Started alice + res_lu_iscsivg01_lun2 (ocf::heartbeat:iSCSILogicalUnit): Started alice + res_ip_alicebob01 (ocf::heartbeat:IPaddr2): Started alice + res_portblock_iscsivg01_unblock (ocf::heartbeat:portblock): Started alice + +Transition Summary: + * Stop res_drbd_iscsivg01:0 (bob) + * Stop res_tgtd:0 (bob) + +Executing cluster transition: + * Pseudo action: ms_drbd_iscsivg01_pre_notify_stop_0 + * Pseudo action: cl_tgtd_stop_0 + * Resource action: res_drbd_iscsivg01:0 notify on bob + * Resource action: res_drbd_iscsivg01:1 notify on alice + * Pseudo action: ms_drbd_iscsivg01_confirmed-pre_notify_stop_0 + * Pseudo action: ms_drbd_iscsivg01_stop_0 + * Resource action: res_tgtd:0 stop on bob + * Pseudo action: cl_tgtd_stopped_0 + * Resource action: res_drbd_iscsivg01:0 stop on bob + * Pseudo action: ms_drbd_iscsivg01_stopped_0 + * Pseudo action: ms_drbd_iscsivg01_post_notify_stopped_0 + * Resource action: res_drbd_iscsivg01:1 notify on alice + * Pseudo action: ms_drbd_iscsivg01_confirmed-post_notify_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Node bob (9a4cafd3-fcfc-4de9-9440-10bc8822d9af): standby +Online: [ alice ] + + Master/Slave Set: ms_drbd_iscsivg01 [res_drbd_iscsivg01] + Masters: [ alice ] + Stopped: [ res_drbd_iscsivg01:0 ] + Clone Set: cl_tgtd [res_tgtd] + Started: [ alice ] + Stopped: [ res_tgtd:0 ] + Resource Group: rg_iscsivg01 + res_portblock_iscsivg01_block (ocf::heartbeat:portblock): Started alice + res_lvm_iscsivg01 (ocf::heartbeat:LVM): Started alice + res_target_iscsivg01 (ocf::heartbeat:iSCSITarget): Started alice + res_lu_iscsivg01_lun1 (ocf::heartbeat:iSCSILogicalUnit): Started alice + res_lu_iscsivg01_lun2 (ocf::heartbeat:iSCSILogicalUnit): Started alice + res_ip_alicebob01 (ocf::heartbeat:IPaddr2): Started alice + res_portblock_iscsivg01_unblock (ocf::heartbeat:portblock): Started alice + diff --git a/pengine/test10/bug-lf-2160.summary b/pengine/test10/bug-lf-2160.summary new file mode 100644 index 0000000000..557e588cca --- /dev/null +++ b/pengine/test10/bug-lf-2160.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ dualamd3 dualamd1 cardhu ] + + domU-test01 (ocf::heartbeat:Xen): Started dualamd1 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1-cnx1] + Started: [ dualamd3 dualamd1 ] + +Transition Summary: + +Executing cluster transition: + * Resource action: domU-test01 monitor on cardhu + * Resource action: dom0-iscsi1-cnx1:0 monitor on cardhu + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ dualamd3 dualamd1 cardhu ] + + domU-test01 (ocf::heartbeat:Xen): Started dualamd1 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1-cnx1] + Started: [ dualamd3 dualamd1 ] + diff --git a/pengine/test10/bug-lf-2171.summary b/pengine/test10/bug-lf-2171.summary new file mode 100644 index 0000000000..8c47bb41b4 --- /dev/null +++ b/pengine/test10/bug-lf-2171.summary @@ -0,0 +1,36 @@ + +Current cluster status: +Online: [ xenserver2 xenserver1 ] + + Clone Set: cl_res_Dummy1 [res_Dummy1] + Started: [ xenserver2 xenserver1 ] + Resource Group: gr_Dummy + res_Dummy2 (ocf::heartbeat:Dummy): Started xenserver1 + res_Dummy3 (ocf::heartbeat:Dummy): Started xenserver1 + +Transition Summary: + * Stop res_Dummy1:0 (xenserver2) + * Stop res_Dummy1:1 (xenserver1) + * Stop res_Dummy2 (Started xenserver1) + * Stop res_Dummy3 (Started xenserver1) + +Executing cluster transition: + * Pseudo action: gr_Dummy_stop_0 + * Resource action: res_Dummy2 stop on xenserver1 + * Resource action: res_Dummy3 stop on xenserver1 + * Pseudo action: gr_Dummy_stopped_0 + * Pseudo action: cl_res_Dummy1_stop_0 + * Resource action: res_Dummy1:0 stop on xenserver2 + * Resource action: res_Dummy1:1 stop on xenserver1 + * Pseudo action: cl_res_Dummy1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ xenserver2 xenserver1 ] + + Clone Set: cl_res_Dummy1 [res_Dummy1] + Stopped: [ res_Dummy1:0 res_Dummy1:1 ] + Resource Group: gr_Dummy + res_Dummy2 (ocf::heartbeat:Dummy): Stopped + res_Dummy3 (ocf::heartbeat:Dummy): Stopped + diff --git a/pengine/test10/bug-lf-2213.summary b/pengine/test10/bug-lf-2213.summary new file mode 100644 index 0000000000..f5d06cbbd8 --- /dev/null +++ b/pengine/test10/bug-lf-2213.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ fs1 fs2 web1 web2 ] + + Clone Set: cl-test [gr-test] + Stopped: [ gr-test:0 gr-test:1 gr-test:2 gr-test:3 ] + +Transition Summary: + * Start test:0 (web1) + * Start test:1 (web2) + +Executing cluster transition: + * Pseudo action: cl-test_start_0 + * Pseudo action: gr-test:0_start_0 + * Resource action: test:0 start on web1 + * Pseudo action: gr-test:1_start_0 + * Resource action: test:1 start on web2 + * Pseudo action: gr-test:0_running_0 + * Pseudo action: gr-test:1_running_0 + * Pseudo action: cl-test_running_0 + +Revised cluster status: +Online: [ fs1 fs2 web1 web2 ] + + Clone Set: cl-test [gr-test] + Started: [ web1 web2 ] + Stopped: [ gr-test:2 gr-test:3 ] + diff --git a/pengine/test10/bug-lf-2317.summary b/pengine/test10/bug-lf-2317.summary new file mode 100644 index 0000000000..6f1cf21865 --- /dev/null +++ b/pengine/test10/bug-lf-2317.summary @@ -0,0 +1,34 @@ + +Current cluster status: +Online: [ ibm2.isg.si ibm1.isg.si ] + + HostingIsg (ocf::heartbeat:Xen): Started ibm2.isg.si + Master/Slave Set: ms_drbd_r0 [drbd_r0] + Masters: [ ibm2.isg.si ] + Slaves: [ ibm1.isg.si ] + +Transition Summary: + * Promote drbd_r0:0 (Slave -> Master ibm1.isg.si) + +Executing cluster transition: + * Resource action: drbd_r0:0 cancel=30000 on ibm1.isg.si + * Pseudo action: ms_drbd_r0_pre_notify_promote_0 + * Resource action: drbd_r0:0 notify on ibm1.isg.si + * Resource action: drbd_r0:1 notify on ibm2.isg.si + * Pseudo action: ms_drbd_r0_confirmed-pre_notify_promote_0 + * Pseudo action: ms_drbd_r0_promote_0 + * Resource action: drbd_r0:0 promote on ibm1.isg.si + * Pseudo action: ms_drbd_r0_promoted_0 + * Pseudo action: ms_drbd_r0_post_notify_promoted_0 + * Resource action: drbd_r0:0 notify on ibm1.isg.si + * Resource action: drbd_r0:1 notify on ibm2.isg.si + * Pseudo action: ms_drbd_r0_confirmed-post_notify_promoted_0 + * Resource action: drbd_r0:0 monitor=15000 on ibm1.isg.si + +Revised cluster status: +Online: [ ibm2.isg.si ibm1.isg.si ] + + HostingIsg (ocf::heartbeat:Xen): Started ibm2.isg.si + Master/Slave Set: ms_drbd_r0 [drbd_r0] + Masters: [ ibm1.isg.si ibm2.isg.si ] + diff --git a/pengine/test10/bug-lf-2358.summary b/pengine/test10/bug-lf-2358.summary new file mode 100644 index 0000000000..3b383c7c74 --- /dev/null +++ b/pengine/test10/bug-lf-2358.summary @@ -0,0 +1,64 @@ + +Current cluster status: +Online: [ alice.demo bob.demo ] + + Master/Slave Set: ms_drbd_nfsexport [res_drbd_nfsexport] + Stopped: [ res_drbd_nfsexport:0 res_drbd_nfsexport:1 ] + Resource Group: rg_nfs + res_fs_nfsexport (ocf::heartbeat:Filesystem): Stopped + res_ip_nfs (ocf::heartbeat:IPaddr2): Stopped + res_nfs (lsb:nfs): Stopped + Resource Group: rg_mysql1 + res_fs_mysql1 (ocf::heartbeat:Filesystem): Started bob.demo + res_ip_mysql1 (ocf::heartbeat:IPaddr2): Started bob.demo + res_mysql1 (ocf::heartbeat:mysql): Started bob.demo + Master/Slave Set: ms_drbd_mysql1 [res_drbd_mysql1] + Masters: [ bob.demo ] + Stopped: [ res_drbd_mysql1:1 ] + Master/Slave Set: ms_drbd_mysql2 [res_drbd_mysql2] + Masters: [ alice.demo ] + Slaves: [ bob.demo ] + Resource Group: rg_mysql2 + res_fs_mysql2 (ocf::heartbeat:Filesystem): Started alice.demo + res_ip_mysql2 (ocf::heartbeat:IPaddr2): Started alice.demo + res_mysql2 (ocf::heartbeat:mysql): Started alice.demo + +Transition Summary: + * Start res_drbd_mysql1:1 (alice.demo) + +Executing cluster transition: + * Pseudo action: ms_drbd_mysql1_pre_notify_start_0 + * Resource action: res_drbd_mysql1:0 notify on bob.demo + * Pseudo action: ms_drbd_mysql1_confirmed-pre_notify_start_0 + * Pseudo action: ms_drbd_mysql1_start_0 + * Resource action: res_drbd_mysql1:1 start on alice.demo + * Pseudo action: ms_drbd_mysql1_running_0 + * Pseudo action: ms_drbd_mysql1_post_notify_running_0 + * Resource action: res_drbd_mysql1:0 notify on bob.demo + * Resource action: res_drbd_mysql1:1 notify on alice.demo + * Pseudo action: ms_drbd_mysql1_confirmed-post_notify_running_0 + +Revised cluster status: +Online: [ alice.demo bob.demo ] + + Master/Slave Set: ms_drbd_nfsexport [res_drbd_nfsexport] + Stopped: [ res_drbd_nfsexport:0 res_drbd_nfsexport:1 ] + Resource Group: rg_nfs + res_fs_nfsexport (ocf::heartbeat:Filesystem): Stopped + res_ip_nfs (ocf::heartbeat:IPaddr2): Stopped + res_nfs (lsb:nfs): Stopped + Resource Group: rg_mysql1 + res_fs_mysql1 (ocf::heartbeat:Filesystem): Started bob.demo + res_ip_mysql1 (ocf::heartbeat:IPaddr2): Started bob.demo + res_mysql1 (ocf::heartbeat:mysql): Started bob.demo + Master/Slave Set: ms_drbd_mysql1 [res_drbd_mysql1] + Masters: [ bob.demo ] + Slaves: [ alice.demo ] + Master/Slave Set: ms_drbd_mysql2 [res_drbd_mysql2] + Masters: [ alice.demo ] + Slaves: [ bob.demo ] + Resource Group: rg_mysql2 + res_fs_mysql2 (ocf::heartbeat:Filesystem): Started alice.demo + res_ip_mysql2 (ocf::heartbeat:IPaddr2): Started alice.demo + res_mysql2 (ocf::heartbeat:mysql): Started alice.demo + diff --git a/pengine/test10/bug-lf-2361.summary b/pengine/test10/bug-lf-2361.summary new file mode 100644 index 0000000000..338f3e26ec --- /dev/null +++ b/pengine/test10/bug-lf-2361.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Online: [ alice.demo bob.demo ] + + dummy1 (ocf::heartbeat:Dummy): Stopped + Master/Slave Set: ms_stateful [stateful] + Stopped: [ stateful:0 stateful:1 ] + Clone Set: cl_dummy2 [dummy2] + Stopped: [ dummy2:0 dummy2:1 ] + +Transition Summary: + * Start stateful:0 (alice.demo) + * Start stateful:1 (bob.demo) + * Start dummy2:0 (alice.demo - blocked) + * Start dummy2:1 (bob.demo - blocked) + +Executing cluster transition: + * Pseudo action: ms_stateful_pre_notify_start_0 + * Pseudo action: ms_stateful_confirmed-pre_notify_start_0 + * Pseudo action: ms_stateful_start_0 + * Resource action: stateful:0 start on alice.demo + * Resource action: stateful:1 start on bob.demo + * Pseudo action: ms_stateful_running_0 + * Pseudo action: ms_stateful_post_notify_running_0 + * Resource action: stateful:0 notify on alice.demo + * Resource action: stateful:1 notify on bob.demo + * Pseudo action: ms_stateful_confirmed-post_notify_running_0 + +Revised cluster status: +Online: [ alice.demo bob.demo ] + + dummy1 (ocf::heartbeat:Dummy): Stopped + Master/Slave Set: ms_stateful [stateful] + Slaves: [ alice.demo bob.demo ] + Clone Set: cl_dummy2 [dummy2] + Stopped: [ dummy2:0 dummy2:1 ] + diff --git a/pengine/test10/bug-lf-2422.summary b/pengine/test10/bug-lf-2422.summary new file mode 100644 index 0000000000..beb1793f47 --- /dev/null +++ b/pengine/test10/bug-lf-2422.summary @@ -0,0 +1,80 @@ + +Current cluster status: +Online: [ qa-suse-2 qa-suse-3 qa-suse-4 qa-suse-1 ] + + sbd_stonith (stonith:external/sbd): Started qa-suse-2 + Clone Set: c-o2stage [o2stage] + Started: [ qa-suse-4 qa-suse-1 qa-suse-3 qa-suse-2 ] + Clone Set: c-ocfs [ocfs] + Started: [ qa-suse-4 qa-suse-1 qa-suse-3 qa-suse-2 ] + +Transition Summary: + * Stop o2cb:0 (qa-suse-4) + * Stop cmirror:0 (qa-suse-4) + * Stop o2cb:1 (qa-suse-1) + * Stop cmirror:1 (qa-suse-1) + * Stop o2cb:2 (qa-suse-3) + * Stop cmirror:2 (qa-suse-3) + * Stop o2cb:3 (qa-suse-2) + * Stop cmirror:3 (qa-suse-2) + * Stop ocfs:0 (qa-suse-4) + * Stop ocfs:1 (qa-suse-1) + * Stop ocfs:2 (qa-suse-3) + * Stop ocfs:3 (qa-suse-2) + +Executing cluster transition: + * Resource action: sbd_stonith monitor=15000 on qa-suse-2 + * Pseudo action: c-ocfs_stop_0 + * Resource action: ocfs:3 stop on qa-suse-2 + * Resource action: ocfs:2 stop on qa-suse-3 + * Resource action: ocfs:1 stop on qa-suse-1 + * Resource action: ocfs:0 stop on qa-suse-4 + * Pseudo action: c-ocfs_stopped_0 + * Pseudo action: c-o2stage_stop_0 + * Pseudo action: o2stage:0_stop_0 + * Resource action: cmirror:0 stop on qa-suse-4 + * Pseudo action: o2stage:1_stop_0 + * Resource action: cmirror:1 stop on qa-suse-1 + * Pseudo action: o2stage:2_stop_0 + * Resource action: cmirror:2 stop on qa-suse-3 + * Pseudo action: o2stage:3_stop_0 + * Resource action: cmirror:3 stop on qa-suse-2 + * Resource action: o2cb:0 stop on qa-suse-4 + * Resource action: o2cb:1 stop on qa-suse-1 + * Resource action: o2cb:2 stop on qa-suse-3 + * Resource action: o2cb:3 stop on qa-suse-2 + * Pseudo action: all_stopped + * Pseudo action: o2stage:0_stopped_0 + * Pseudo action: o2stage:1_stopped_0 + * Pseudo action: o2stage:2_stopped_0 + * Pseudo action: o2stage:3_stopped_0 + * Pseudo action: c-o2stage_stopped_0 + +Revised cluster status: +Online: [ qa-suse-2 qa-suse-3 qa-suse-4 qa-suse-1 ] + + sbd_stonith (stonith:external/sbd): Started qa-suse-2 + Clone Set: c-o2stage [o2stage] + Resource Group: o2stage:0 + dlm:0 (ocf::pacemaker:controld): Started qa-suse-4 + clvm:0 (ocf::lvm2:clvmd): Started qa-suse-4 + o2cb:0 (ocf::ocfs2:o2cb): Stopped + cmirror:0 (ocf::lvm2:cmirrord): Stopped + Resource Group: o2stage:1 + dlm:1 (ocf::pacemaker:controld): Started qa-suse-1 + clvm:1 (ocf::lvm2:clvmd): Started qa-suse-1 + o2cb:1 (ocf::ocfs2:o2cb): Stopped + cmirror:1 (ocf::lvm2:cmirrord): Stopped + Resource Group: o2stage:2 + dlm:2 (ocf::pacemaker:controld): Started qa-suse-3 + clvm:2 (ocf::lvm2:clvmd): Started qa-suse-3 + o2cb:2 (ocf::ocfs2:o2cb): Stopped + cmirror:2 (ocf::lvm2:cmirrord): Stopped + Resource Group: o2stage:3 + dlm:3 (ocf::pacemaker:controld): Started qa-suse-2 + clvm:3 (ocf::lvm2:clvmd): Started qa-suse-2 + o2cb:3 (ocf::ocfs2:o2cb): Stopped + cmirror:3 (ocf::lvm2:cmirrord): Stopped + Clone Set: c-ocfs [ocfs] + Stopped: [ ocfs:0 ocfs:1 ocfs:2 ocfs:3 ] + diff --git a/pengine/test10/bug-lf-2435.summary b/pengine/test10/bug-lf-2435.summary new file mode 100644 index 0000000000..1151401116 --- /dev/null +++ b/pengine/test10/bug-lf-2435.summary @@ -0,0 +1,33 @@ + +Current cluster status: +Node c20.chepkov.lan: standby +Online: [ c19.chepkov.lan c21.chepkov.lan ] + + dummy1 (ocf::pacemaker:Dummy): Started c19.chepkov.lan + dummy2 (ocf::pacemaker:Dummy): Started c20.chepkov.lan + dummy4 (ocf::pacemaker:Dummy): Stopped + dummy3 (ocf::pacemaker:Dummy): Started c21.chepkov.lan + +Transition Summary: + * Move dummy2 (Started c20.chepkov.lan -> c21.chepkov.lan) + * Stop dummy3 (c21.chepkov.lan) + +Executing cluster transition: + * Resource action: dummy4 monitor on c21.chepkov.lan + * Resource action: dummy4 monitor on c20.chepkov.lan + * Resource action: dummy4 monitor on c19.chepkov.lan + * Pseudo action: probe_complete + * Resource action: dummy2 stop on c20.chepkov.lan + * Resource action: dummy3 stop on c21.chepkov.lan + * Pseudo action: all_stopped + * Resource action: dummy2 start on c21.chepkov.lan + +Revised cluster status: +Node c20.chepkov.lan: standby +Online: [ c19.chepkov.lan c21.chepkov.lan ] + + dummy1 (ocf::pacemaker:Dummy): Started c19.chepkov.lan + dummy2 (ocf::pacemaker:Dummy): Started c21.chepkov.lan + dummy4 (ocf::pacemaker:Dummy): Stopped + dummy3 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/bug-lf-2445.summary b/pengine/test10/bug-lf-2445.summary new file mode 100644 index 0000000000..4523d9b805 --- /dev/null +++ b/pengine/test10/bug-lf-2445.summary @@ -0,0 +1,27 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Clone Set: C [P] (unique) + P:0 (ocf::pacemaker:Dummy): Started node1 + P:1 (ocf::pacemaker:Dummy): Started node1 + +Transition Summary: + * Move P:1 (Started node1 -> node2) + +Executing cluster transition: + * Pseudo action: C_stop_0 + * Resource action: P:1 stop on node1 + * Pseudo action: C_stopped_0 + * Pseudo action: C_start_0 + * Pseudo action: all_stopped + * Resource action: P:1 start on node2 + * Pseudo action: C_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Clone Set: C [P] (unique) + P:0 (ocf::pacemaker:Dummy): Started node1 + P:1 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/bug-lf-2453.summary b/pengine/test10/bug-lf-2453.summary new file mode 100644 index 0000000000..e868a42238 --- /dev/null +++ b/pengine/test10/bug-lf-2453.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Online: [ domu1 domu2 ] + + PrimitiveResource1 (ocf::heartbeat:IPaddr2): Started domu1 + Clone Set: CloneResource1 [apache] + Started: [ domu2 domu1 ] + Clone Set: CloneResource2 [DummyResource] + Started: [ domu2 domu1 ] + +Transition Summary: + * Stop PrimitiveResource1 (Started domu1) + * Stop apache:0 (domu2) + * Stop apache:1 (domu1) + * Stop DummyResource:0 (Started domu2) + * Stop DummyResource:1 (Started domu1) + +Executing cluster transition: + * Resource action: PrimitiveResource1 stop on domu1 + * Pseudo action: CloneResource2_stop_0 + * Resource action: DummyResource:0 stop on domu2 + * Resource action: DummyResource:1 stop on domu1 + * Pseudo action: CloneResource2_stopped_0 + * Pseudo action: CloneResource1_stop_0 + * Resource action: apache:0 stop on domu2 + * Resource action: apache:1 stop on domu1 + * Pseudo action: CloneResource1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ domu1 domu2 ] + + PrimitiveResource1 (ocf::heartbeat:IPaddr2): Stopped + Clone Set: CloneResource1 [apache] + Stopped: [ apache:0 apache:1 ] + Clone Set: CloneResource2 [DummyResource] + Stopped: [ DummyResource:0 DummyResource:1 ] + diff --git a/pengine/test10/bug-lf-2474.summary b/pengine/test10/bug-lf-2474.summary new file mode 100644 index 0000000000..29f457ff42 --- /dev/null +++ b/pengine/test10/bug-lf-2474.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ hex-14 ] + + dummy-10s-timeout (ocf::pacemaker:Dummy): Stopped + dummy-default-timeout (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start dummy-10s-timeout (hex-14) + * Start dummy-default-timeout (hex-14) + +Executing cluster transition: + * Resource action: dummy-10s-timeout start on hex-14 + * Resource action: dummy-default-timeout start on hex-14 + +Revised cluster status: +Online: [ hex-14 ] + + dummy-10s-timeout (ocf::pacemaker:Dummy): Started hex-14 + dummy-default-timeout (ocf::pacemaker:Dummy): Started hex-14 + diff --git a/pengine/test10/bug-lf-2493.summary b/pengine/test10/bug-lf-2493.summary new file mode 100644 index 0000000000..874146c889 --- /dev/null +++ b/pengine/test10/bug-lf-2493.summary @@ -0,0 +1,33 @@ + +Current cluster status: +Online: [ hpn07 hpn08 ] + + p_dummy1 (ocf::pacemaker:Dummy): Started hpn07 + p_dummy2 (ocf::pacemaker:Dummy): Stopped + p_dummy4 (ocf::pacemaker:Dummy): Stopped + p_dummy3 (ocf::pacemaker:Dummy): Stopped + Master/Slave Set: ms_stateful1 [p_stateful1] + Masters: [ hpn07 ] + Slaves: [ hpn08 ] + +Transition Summary: + * Start p_dummy2 (hpn08) + * Start p_dummy4 (hpn07) + * Start p_dummy3 (hpn08) + +Executing cluster transition: + * Resource action: p_dummy2 start on hpn08 + * Resource action: p_dummy3 start on hpn08 + * Resource action: p_dummy4 start on hpn07 + +Revised cluster status: +Online: [ hpn07 hpn08 ] + + p_dummy1 (ocf::pacemaker:Dummy): Started hpn07 + p_dummy2 (ocf::pacemaker:Dummy): Started hpn08 + p_dummy4 (ocf::pacemaker:Dummy): Started hpn07 + p_dummy3 (ocf::pacemaker:Dummy): Started hpn08 + Master/Slave Set: ms_stateful1 [p_stateful1] + Masters: [ hpn07 ] + Slaves: [ hpn08 ] + diff --git a/pengine/test10/bug-lf-2508.summary b/pengine/test10/bug-lf-2508.summary new file mode 100644 index 0000000000..47118efb46 --- /dev/null +++ b/pengine/test10/bug-lf-2508.summary @@ -0,0 +1,103 @@ + +Current cluster status: +Node srv02 (71085d5e-1c63-49e0-8c8c-400d610b4182): UNCLEAN (offline) +Online: [ srv01 srv03 srv04 ] + + Resource Group: Group01 + Dummy01 (ocf::heartbeat:Dummy): Stopped + Resource Group: Group02 + Dummy02 (ocf::heartbeat:Dummy): Started srv02 + Resource Group: Group03 + Dummy03 (ocf::heartbeat:Dummy): Started srv03 + Clone Set: clnStonith1 [grpStonith1] + Started: [ srv04 srv02 srv03 ] + Stopped: [ grpStonith1:3 ] + Clone Set: clnStonith2 [grpStonith2] + Started: [ srv01 srv04 srv03 ] + Stopped: [ grpStonith2:3 ] + Clone Set: clnStonith3 [grpStonith3] + Resource Group: grpStonith3:1 + prmStonith3-1:1 (stonith:external/stonith-helper): Started srv01 + prmStonith3-3:1 (stonith:external/ssh): Stopped + Started: [ srv04 srv02 ] + Stopped: [ grpStonith3:0 ] + Clone Set: clnStonith4 [grpStonith4] + Started: [ srv01 srv03 srv02 ] + Stopped: [ grpStonith4:0 ] + +Transition Summary: + * Start Dummy01 (srv01) + * Move Dummy02 (Started srv02 -> srv04) + * Stop prmStonith1-1:1 (srv02) + * Stop prmStonith1-3:1 (srv02) + * Start prmStonith3-3:1 (srv01) + * Stop prmStonith3-1:3 (srv02) + * Stop prmStonith3-3:3 (srv02) + * Stop prmStonith4-1:3 (srv02) + * Stop prmStonith4-3:3 (srv02) + +Executing cluster transition: + * Pseudo action: Group01_start_0 + * Pseudo action: clnStonith1_stop_0 + * Resource action: prmStonith3-1:1 monitor=3600000 on srv01 + * Pseudo action: clnStonith3_stop_0 + * Pseudo action: clnStonith4_stop_0 + * Pseudo action: grpStonith1:1_stop_0 + * Pseudo action: prmStonith1-3:1_stop_0 + * Pseudo action: grpStonith3:3_stop_0 + * Pseudo action: prmStonith3-3:1_stop_0 + * Pseudo action: grpStonith4:3_stop_0 + * Pseudo action: prmStonith4-3:1_stop_0 + * Pseudo action: prmStonith1-1:1_stop_0 + * Pseudo action: prmStonith3-1:1_stop_0 + * Pseudo action: prmStonith4-1:1_stop_0 + * Pseudo action: grpStonith1:1_stopped_0 + * Pseudo action: clnStonith1_stopped_0 + * Pseudo action: grpStonith3:3_stopped_0 + * Pseudo action: clnStonith3_stopped_0 + * Pseudo action: clnStonith3_start_0 + * Pseudo action: grpStonith4:3_stopped_0 + * Pseudo action: clnStonith4_stopped_0 + * Pseudo action: grpStonith3:1_start_0 + * Resource action: prmStonith3-3:1 start on srv01 + * Pseudo action: stonith_up + * Pseudo action: grpStonith3:1_running_0 + * Resource action: prmStonith3-3:1 monitor=3600000 on srv01 + * Pseudo action: clnStonith3_running_0 + * Fencing srv02 + * Pseudo action: stonith_complete + * Resource action: Dummy01 start on srv01 + * Pseudo action: Group02_stop_0 + * Pseudo action: Dummy02_stop_0 + * Pseudo action: all_stopped + * Pseudo action: Group01_running_0 + * Resource action: Dummy01 monitor=10000 on srv01 + * Pseudo action: Group02_stopped_0 + * Pseudo action: Group02_start_0 + * Resource action: Dummy02 start on srv04 + * Pseudo action: Group02_running_0 + * Resource action: Dummy02 monitor=10000 on srv04 + +Revised cluster status: +Online: [ srv01 srv03 srv04 ] +OFFLINE: [ srv02 ] + + Resource Group: Group01 + Dummy01 (ocf::heartbeat:Dummy): Started srv01 + Resource Group: Group02 + Dummy02 (ocf::heartbeat:Dummy): Started srv04 + Resource Group: Group03 + Dummy03 (ocf::heartbeat:Dummy): Started srv03 + Clone Set: clnStonith1 [grpStonith1] + Started: [ srv04 srv03 ] + Stopped: [ grpStonith1:1 grpStonith1:3 ] + Clone Set: clnStonith2 [grpStonith2] + Started: [ srv01 srv04 srv03 ] + Stopped: [ grpStonith2:3 ] + Clone Set: clnStonith3 [grpStonith3] + Started: [ srv01 srv04 ] + Stopped: [ grpStonith3:0 grpStonith3:3 ] + Clone Set: clnStonith4 [grpStonith4] + Started: [ srv01 srv03 ] + Stopped: [ grpStonith4:0 grpStonith4:3 ] + diff --git a/pengine/test10/bug-lf-2544.summary b/pengine/test10/bug-lf-2544.summary new file mode 100644 index 0000000000..67bbf093a8 --- /dev/null +++ b/pengine/test10/bug-lf-2544.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ node-0 node-1 ] + + Master/Slave Set: ms0 [s0] + Slaves: [ node-0 node-1 ] + +Transition Summary: + * Promote s0:1 (Slave -> Master node-1) + +Executing cluster transition: + * Pseudo action: ms0_promote_0 + * Resource action: s0:1 promote on node-1 + * Pseudo action: ms0_promoted_0 + +Revised cluster status: +Online: [ node-0 node-1 ] + + Master/Slave Set: ms0 [s0] + Masters: [ node-1 ] + Slaves: [ node-0 ] + diff --git a/pengine/test10/bug-lf-2551.summary b/pengine/test10/bug-lf-2551.summary new file mode 100644 index 0000000000..c6a0775d62 --- /dev/null +++ b/pengine/test10/bug-lf-2551.summary @@ -0,0 +1,219 @@ + +Current cluster status: +Node hex-9: UNCLEAN (offline) +Online: [ hex-7 hex-8 hex-0 ] + + vm-00 (ocf::heartbeat:Xen): Started hex-0 + Clone Set: base-clone [base-group] + Started: [ hex-0 hex-7 hex-8 hex-9 ] + vm-01 (ocf::heartbeat:Xen): Started hex-7 + vm-02 (ocf::heartbeat:Xen): Started hex-8 + vm-03 (ocf::heartbeat:Xen): Started hex-9 + vm-04 (ocf::heartbeat:Xen): Started hex-7 + vm-05 (ocf::heartbeat:Xen): Started hex-8 + fencing-sbd (stonith:external/sbd): Started hex-9 + vm-06 (ocf::heartbeat:Xen): Started hex-9 + vm-07 (ocf::heartbeat:Xen): Started hex-7 + vm-08 (ocf::heartbeat:Xen): Started hex-8 + vm-09 (ocf::heartbeat:Xen): Started hex-9 + vm-10 (ocf::heartbeat:Xen): Started hex-0 + vm-11 (ocf::heartbeat:Xen): Started hex-7 + vm-12 (ocf::heartbeat:Xen): Started hex-8 + vm-13 (ocf::heartbeat:Xen): Started hex-9 + vm-14 (ocf::heartbeat:Xen): Started hex-0 + vm-15 (ocf::heartbeat:Xen): Started hex-7 + vm-16 (ocf::heartbeat:Xen): Started hex-8 + vm-17 (ocf::heartbeat:Xen): Started hex-9 + vm-18 (ocf::heartbeat:Xen): Started hex-0 + vm-19 (ocf::heartbeat:Xen): Started hex-7 + vm-20 (ocf::heartbeat:Xen): Started hex-8 + vm-21 (ocf::heartbeat:Xen): Started hex-9 + vm-22 (ocf::heartbeat:Xen): Started hex-0 + vm-23 (ocf::heartbeat:Xen): Started hex-7 + vm-24 (ocf::heartbeat:Xen): Started hex-8 + vm-25 (ocf::heartbeat:Xen): Started hex-9 + vm-26 (ocf::heartbeat:Xen): Started hex-0 + vm-27 (ocf::heartbeat:Xen): Started hex-7 + vm-28 (ocf::heartbeat:Xen): Started hex-8 + vm-29 (ocf::heartbeat:Xen): Started hex-9 + vm-30 (ocf::heartbeat:Xen): Started hex-0 + vm-31 (ocf::heartbeat:Xen): Started hex-7 + vm-32 (ocf::heartbeat:Xen): Started hex-8 + dummy1 (ocf::heartbeat:Dummy): Started hex-9 + vm-33 (ocf::heartbeat:Xen): Started hex-9 + vm-34 (ocf::heartbeat:Xen): Started hex-0 + vm-35 (ocf::heartbeat:Xen): Started hex-7 + vm-36 (ocf::heartbeat:Xen): Started hex-8 + vm-37 (ocf::heartbeat:Xen): Started hex-9 + vm-38 (ocf::heartbeat:Xen): Started hex-0 + vm-39 (ocf::heartbeat:Xen): Started hex-7 + vm-40 (ocf::heartbeat:Xen): Started hex-8 + vm-41 (ocf::heartbeat:Xen): Started hex-9 + vm-42 (ocf::heartbeat:Xen): Started hex-0 + vm-43 (ocf::heartbeat:Xen): Started hex-7 + vm-44 (ocf::heartbeat:Xen): Started hex-8 + vm-45 (ocf::heartbeat:Xen): Started hex-9 + vm-46 (ocf::heartbeat:Xen): Started hex-0 + vm-47 (ocf::heartbeat:Xen): Started hex-7 + vm-48 (ocf::heartbeat:Xen): Started hex-8 + vm-49 (ocf::heartbeat:Xen): Started hex-9 + vm-50 (ocf::heartbeat:Xen): Started hex-0 + vm-51 (ocf::heartbeat:Xen): Started hex-7 + vm-52 (ocf::heartbeat:Xen): Started hex-8 + vm-53 (ocf::heartbeat:Xen): Started hex-9 + vm-54 (ocf::heartbeat:Xen): Started hex-0 + vm-55 (ocf::heartbeat:Xen): Started hex-7 + vm-56 (ocf::heartbeat:Xen): Started hex-8 + vm-57 (ocf::heartbeat:Xen): Started hex-9 + vm-58 (ocf::heartbeat:Xen): Started hex-0 + vm-59 (ocf::heartbeat:Xen): Started hex-7 + vm-60 (ocf::heartbeat:Xen): Started hex-8 + vm-61 (ocf::heartbeat:Xen): Started hex-9 + vm-62 (ocf::heartbeat:Xen): Stopped + vm-63 (ocf::heartbeat:Xen): Stopped + vm-64 (ocf::heartbeat:Xen): Stopped + +Transition Summary: + * Move fencing-sbd (Started hex-9 -> hex-0) + * Move dummy1 (Started hex-9 -> hex-0) + * Stop dlm:3 (hex-9) + * Stop o2cb:3 (hex-9) + * Stop clvm:3 (hex-9) + * Stop cmirrord:3 (hex-9) + * Stop vg1:3 (hex-9) + * Stop ocfs2-1:3 (hex-9) + * Stop vm-03 (hex-9) + * Stop vm-06 (hex-9) + * Stop vm-09 (hex-9) + * Stop vm-13 (hex-9) + * Stop vm-17 (hex-9) + * Stop vm-21 (hex-9) + * Stop vm-25 (hex-9) + * Stop vm-29 (hex-9) + * Stop vm-33 (hex-9) + * Stop vm-37 (hex-9) + * Stop vm-41 (hex-9) + * Stop vm-45 (hex-9) + * Stop vm-49 (hex-9) + * Stop vm-53 (hex-9) + * Stop vm-57 (hex-9) + * Stop vm-61 (hex-9) + +Executing cluster transition: + * Pseudo action: fencing-sbd_stop_0 + * Resource action: dummy1 monitor=300000 on hex-8 + * Resource action: dummy1 monitor=300000 on hex-7 + * Pseudo action: load_stopped_hex-8 + * Pseudo action: load_stopped_hex-7 + * Pseudo action: load_stopped_hex-0 + * Resource action: fencing-sbd start on hex-0 + * Pseudo action: stonith_up + * Fencing hex-9 + * Pseudo action: stonith_complete + * Pseudo action: dummy1_stop_0 + * Pseudo action: vm-03_stop_0 + * Pseudo action: vm-06_stop_0 + * Pseudo action: vm-09_stop_0 + * Pseudo action: vm-13_stop_0 + * Pseudo action: vm-17_stop_0 + * Pseudo action: vm-21_stop_0 + * Pseudo action: vm-25_stop_0 + * Pseudo action: vm-29_stop_0 + * Pseudo action: vm-33_stop_0 + * Pseudo action: vm-37_stop_0 + * Pseudo action: vm-41_stop_0 + * Pseudo action: vm-45_stop_0 + * Pseudo action: vm-49_stop_0 + * Pseudo action: vm-53_stop_0 + * Pseudo action: vm-57_stop_0 + * Pseudo action: vm-61_stop_0 + * Pseudo action: load_stopped_hex-9 + * Resource action: dummy1 start on hex-0 + * Pseudo action: base-clone_stop_0 + * Resource action: dummy1 monitor=30000 on hex-0 + * Pseudo action: base-group:3_stop_0 + * Pseudo action: ocfs2-1:3_stop_0 + * Pseudo action: vg1:3_stop_0 + * Pseudo action: cmirrord:3_stop_0 + * Pseudo action: clvm:3_stop_0 + * Pseudo action: o2cb:3_stop_0 + * Pseudo action: dlm:3_stop_0 + * Pseudo action: all_stopped + * Pseudo action: base-group:3_stopped_0 + * Pseudo action: base-clone_stopped_0 + +Revised cluster status: +Online: [ hex-7 hex-8 hex-0 ] +OFFLINE: [ hex-9 ] + + vm-00 (ocf::heartbeat:Xen): Started hex-0 + Clone Set: base-clone [base-group] + Started: [ hex-0 hex-7 hex-8 ] + Stopped: [ base-group:3 ] + vm-01 (ocf::heartbeat:Xen): Started hex-7 + vm-02 (ocf::heartbeat:Xen): Started hex-8 + vm-03 (ocf::heartbeat:Xen): Stopped + vm-04 (ocf::heartbeat:Xen): Started hex-7 + vm-05 (ocf::heartbeat:Xen): Started hex-8 + fencing-sbd (stonith:external/sbd): Started hex-0 + vm-06 (ocf::heartbeat:Xen): Stopped + vm-07 (ocf::heartbeat:Xen): Started hex-7 + vm-08 (ocf::heartbeat:Xen): Started hex-8 + vm-09 (ocf::heartbeat:Xen): Stopped + vm-10 (ocf::heartbeat:Xen): Started hex-0 + vm-11 (ocf::heartbeat:Xen): Started hex-7 + vm-12 (ocf::heartbeat:Xen): Started hex-8 + vm-13 (ocf::heartbeat:Xen): Stopped + vm-14 (ocf::heartbeat:Xen): Started hex-0 + vm-15 (ocf::heartbeat:Xen): Started hex-7 + vm-16 (ocf::heartbeat:Xen): Started hex-8 + vm-17 (ocf::heartbeat:Xen): Stopped + vm-18 (ocf::heartbeat:Xen): Started hex-0 + vm-19 (ocf::heartbeat:Xen): Started hex-7 + vm-20 (ocf::heartbeat:Xen): Started hex-8 + vm-21 (ocf::heartbeat:Xen): Stopped + vm-22 (ocf::heartbeat:Xen): Started hex-0 + vm-23 (ocf::heartbeat:Xen): Started hex-7 + vm-24 (ocf::heartbeat:Xen): Started hex-8 + vm-25 (ocf::heartbeat:Xen): Stopped + vm-26 (ocf::heartbeat:Xen): Started hex-0 + vm-27 (ocf::heartbeat:Xen): Started hex-7 + vm-28 (ocf::heartbeat:Xen): Started hex-8 + vm-29 (ocf::heartbeat:Xen): Stopped + vm-30 (ocf::heartbeat:Xen): Started hex-0 + vm-31 (ocf::heartbeat:Xen): Started hex-7 + vm-32 (ocf::heartbeat:Xen): Started hex-8 + dummy1 (ocf::heartbeat:Dummy): Started hex-0 + vm-33 (ocf::heartbeat:Xen): Stopped + vm-34 (ocf::heartbeat:Xen): Started hex-0 + vm-35 (ocf::heartbeat:Xen): Started hex-7 + vm-36 (ocf::heartbeat:Xen): Started hex-8 + vm-37 (ocf::heartbeat:Xen): Stopped + vm-38 (ocf::heartbeat:Xen): Started hex-0 + vm-39 (ocf::heartbeat:Xen): Started hex-7 + vm-40 (ocf::heartbeat:Xen): Started hex-8 + vm-41 (ocf::heartbeat:Xen): Stopped + vm-42 (ocf::heartbeat:Xen): Started hex-0 + vm-43 (ocf::heartbeat:Xen): Started hex-7 + vm-44 (ocf::heartbeat:Xen): Started hex-8 + vm-45 (ocf::heartbeat:Xen): Stopped + vm-46 (ocf::heartbeat:Xen): Started hex-0 + vm-47 (ocf::heartbeat:Xen): Started hex-7 + vm-48 (ocf::heartbeat:Xen): Started hex-8 + vm-49 (ocf::heartbeat:Xen): Stopped + vm-50 (ocf::heartbeat:Xen): Started hex-0 + vm-51 (ocf::heartbeat:Xen): Started hex-7 + vm-52 (ocf::heartbeat:Xen): Started hex-8 + vm-53 (ocf::heartbeat:Xen): Stopped + vm-54 (ocf::heartbeat:Xen): Started hex-0 + vm-55 (ocf::heartbeat:Xen): Started hex-7 + vm-56 (ocf::heartbeat:Xen): Started hex-8 + vm-57 (ocf::heartbeat:Xen): Stopped + vm-58 (ocf::heartbeat:Xen): Started hex-0 + vm-59 (ocf::heartbeat:Xen): Started hex-7 + vm-60 (ocf::heartbeat:Xen): Started hex-8 + vm-61 (ocf::heartbeat:Xen): Stopped + vm-62 (ocf::heartbeat:Xen): Stopped + vm-63 (ocf::heartbeat:Xen): Stopped + vm-64 (ocf::heartbeat:Xen): Stopped + diff --git a/pengine/test10/bug-lf-2574.summary b/pengine/test10/bug-lf-2574.summary new file mode 100644 index 0000000000..368eb2ecd6 --- /dev/null +++ b/pengine/test10/bug-lf-2574.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Online: [ srv01 srv02 srv03 ] + + main_rsc (ocf::pacemaker:Dummy): Started srv01 + main_rsc2 (ocf::pacemaker:Dummy): Started srv02 + Clone Set: clnDummy1 [prmDummy1] + Started: [ srv02 srv03 ] + Stopped: [ prmDummy1:0 ] + Clone Set: clnPingd [prmPingd] + Started: [ srv01 srv02 srv03 ] + +Transition Summary: + * Move main_rsc (Started srv01 -> srv03) + * Stop prmPingd:0 (srv01) + +Executing cluster transition: + * Resource action: main_rsc stop on srv01 + * Pseudo action: clnPingd_stop_0 + * Resource action: main_rsc start on srv03 + * Resource action: prmPingd:0 stop on srv01 + * Pseudo action: clnPingd_stopped_0 + * Pseudo action: all_stopped + * Resource action: main_rsc monitor=10000 on srv03 + +Revised cluster status: +Online: [ srv01 srv02 srv03 ] + + main_rsc (ocf::pacemaker:Dummy): Started srv03 + main_rsc2 (ocf::pacemaker:Dummy): Started srv02 + Clone Set: clnDummy1 [prmDummy1] + Started: [ srv02 srv03 ] + Stopped: [ prmDummy1:0 ] + Clone Set: clnPingd [prmPingd] + Started: [ srv02 srv03 ] + Stopped: [ prmPingd:0 ] + diff --git a/pengine/test10/bug-lf-2581.summary b/pengine/test10/bug-lf-2581.summary new file mode 100644 index 0000000000..697983947c --- /dev/null +++ b/pengine/test10/bug-lf-2581.summary @@ -0,0 +1,58 @@ + +Current cluster status: +Online: [ elvis queen ] + + Clone Set: AZ-clone [AZ-group] + Started: [ elvis ] + Stopped: [ AZ-group:1 ] + Resource Group: BC-group-1 + B-1 (ocf::rgk:typeB): Started elvis + C-1 (ocf::rgk:typeC): Started elvis + Resource Group: BC-group-2 + B-2 (ocf::rgk:typeB): Started elvis + C-2 (ocf::rgk:typeC): Started elvis + Clone Set: stonith-l2network-set [stonith-l2network] + Started: [ elvis ] + Stopped: [ stonith-l2network:1 ] + +Transition Summary: + * Start A:1 (queen) + * Start Z:1 (queen) + * Start stonith-l2network:1 (queen) + +Executing cluster transition: + * Resource action: A:1 monitor on queen + * Resource action: Z:1 monitor on queen + * Pseudo action: AZ-clone_start_0 + * Resource action: B-1 monitor on queen + * Resource action: C-1 monitor on queen + * Resource action: B-2 monitor on queen + * Resource action: C-2 monitor on queen + * Resource action: stonith-l2network:1 monitor on queen + * Pseudo action: stonith-l2network-set_start_0 + * Pseudo action: probe_complete + * Pseudo action: AZ-group:1_start_0 + * Resource action: A:1 start on queen + * Resource action: Z:1 start on queen + * Resource action: stonith-l2network:1 start on queen + * Pseudo action: stonith-l2network-set_running_0 + * Pseudo action: AZ-group:1_running_0 + * Resource action: A:1 monitor=120000 on queen + * Resource action: Z:1 monitor=120000 on queen + * Pseudo action: AZ-clone_running_0 + * Resource action: stonith-l2network:1 monitor=300000 on queen + +Revised cluster status: +Online: [ elvis queen ] + + Clone Set: AZ-clone [AZ-group] + Started: [ elvis queen ] + Resource Group: BC-group-1 + B-1 (ocf::rgk:typeB): Started elvis + C-1 (ocf::rgk:typeC): Started elvis + Resource Group: BC-group-2 + B-2 (ocf::rgk:typeB): Started elvis + C-2 (ocf::rgk:typeC): Started elvis + Clone Set: stonith-l2network-set [stonith-l2network] + Started: [ elvis queen ] + diff --git a/pengine/test10/bug-lf-2606.summary b/pengine/test10/bug-lf-2606.summary new file mode 100644 index 0000000000..6941d290c4 --- /dev/null +++ b/pengine/test10/bug-lf-2606.summary @@ -0,0 +1,44 @@ + +Current cluster status: +Node node2: UNCLEAN (online) +Online: [ node1 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 FAILED + rsc2 (ocf::pacemaker:Dummy): Started node2 + Master/Slave Set: ms3 [rsc3] + Masters: [ node2 ] + Slaves: [ node1 ] + +Transition Summary: + * Stop rsc1 (node2) + * Move rsc2 (Started node2 -> node1) + * Demote rsc3:1 (Master -> Stopped node2) + +Executing cluster transition: + * Pseudo action: ms3_demote_0 + * Pseudo action: stonith_up + * Fencing node2 + * Pseudo action: stonith_complete + * Pseudo action: rsc1_stop_0 + * Pseudo action: rsc2_stop_0 + * Pseudo action: rsc3:1_demote_0 + * Pseudo action: ms3_demoted_0 + * Pseudo action: ms3_stop_0 + * Resource action: rsc2 start on node1 + * Pseudo action: rsc3:1_stop_0 + * Pseudo action: ms3_stopped_0 + * Pseudo action: all_stopped + * Resource action: rsc2 monitor=10000 on node1 + +Revised cluster status: +Online: [ node1 ] +OFFLINE: [ node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Started node1 + Master/Slave Set: ms3 [rsc3] + Slaves: [ node1 ] + Stopped: [ rsc3:1 ] + diff --git a/pengine/test10/bug-lf-2613.summary b/pengine/test10/bug-lf-2613.summary new file mode 100644 index 0000000000..187b71f0c7 --- /dev/null +++ b/pengine/test10/bug-lf-2613.summary @@ -0,0 +1,89 @@ + +Current cluster status: +Online: [ act1 act2 act3 sby2 sby1 ] + + Resource Group: grpPostgreSQLDB1 + prmExPostgreSQLDB1 (ocf::pacemaker:Dummy): Started act1 + prmFsPostgreSQLDB1-1 (ocf::pacemaker:Dummy): Started act1 + prmFsPostgreSQLDB1-2 (ocf::pacemaker:Dummy): Started act1 + prmFsPostgreSQLDB1-3 (ocf::pacemaker:Dummy): Started act1 + prmIpPostgreSQLDB1 (ocf::pacemaker:Dummy): Started act1 + prmApPostgreSQLDB1 (ocf::pacemaker:Dummy): Started act1 FAILED + Resource Group: grpPostgreSQLDB2 + prmExPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-1 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-2 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-3 (ocf::pacemaker:Dummy): Started act2 + prmIpPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + prmApPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + Resource Group: grpPostgreSQLDB3 + prmExPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB3-1 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB3-2 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB3-3 (ocf::pacemaker:Dummy): Started act3 + prmIpPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act3 + prmApPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act3 + +Transition Summary: + * Move prmExPostgreSQLDB1 (Started act1 -> sby1) + * Move prmFsPostgreSQLDB1-1 (Started act1 -> sby1) + * Move prmFsPostgreSQLDB1-2 (Started act1 -> sby1) + * Move prmFsPostgreSQLDB1-3 (Started act1 -> sby1) + * Move prmIpPostgreSQLDB1 (Started act1 -> sby1) + * Move prmApPostgreSQLDB1 (Started act1 -> sby1) + +Executing cluster transition: + * Pseudo action: grpPostgreSQLDB1_stop_0 + * Resource action: prmApPostgreSQLDB1 stop on act1 + * Pseudo action: load_stopped_sby1 + * Pseudo action: load_stopped_sby2 + * Pseudo action: load_stopped_act3 + * Pseudo action: load_stopped_act2 + * Resource action: prmIpPostgreSQLDB1 stop on act1 + * Resource action: prmFsPostgreSQLDB1-3 stop on act1 + * Resource action: prmFsPostgreSQLDB1-2 stop on act1 + * Resource action: prmFsPostgreSQLDB1-1 stop on act1 + * Resource action: prmExPostgreSQLDB1 stop on act1 + * Pseudo action: load_stopped_act1 + * Pseudo action: all_stopped + * Pseudo action: grpPostgreSQLDB1_stopped_0 + * Pseudo action: grpPostgreSQLDB1_start_0 + * Resource action: prmExPostgreSQLDB1 start on sby1 + * Resource action: prmFsPostgreSQLDB1-1 start on sby1 + * Resource action: prmFsPostgreSQLDB1-2 start on sby1 + * Resource action: prmFsPostgreSQLDB1-3 start on sby1 + * Resource action: prmIpPostgreSQLDB1 start on sby1 + * Resource action: prmApPostgreSQLDB1 start on sby1 + * Pseudo action: grpPostgreSQLDB1_running_0 + * Resource action: prmExPostgreSQLDB1 monitor=5000 on sby1 + * Resource action: prmFsPostgreSQLDB1-1 monitor=5000 on sby1 + * Resource action: prmFsPostgreSQLDB1-2 monitor=5000 on sby1 + * Resource action: prmFsPostgreSQLDB1-3 monitor=5000 on sby1 + * Resource action: prmIpPostgreSQLDB1 monitor=5000 on sby1 + * Resource action: prmApPostgreSQLDB1 monitor=5000 on sby1 + +Revised cluster status: +Online: [ act1 act2 act3 sby2 sby1 ] + + Resource Group: grpPostgreSQLDB1 + prmExPostgreSQLDB1 (ocf::pacemaker:Dummy): Started sby1 + prmFsPostgreSQLDB1-1 (ocf::pacemaker:Dummy): Started sby1 + prmFsPostgreSQLDB1-2 (ocf::pacemaker:Dummy): Started sby1 + prmFsPostgreSQLDB1-3 (ocf::pacemaker:Dummy): Started sby1 + prmIpPostgreSQLDB1 (ocf::pacemaker:Dummy): Started sby1 + prmApPostgreSQLDB1 (ocf::pacemaker:Dummy): Started sby1 + Resource Group: grpPostgreSQLDB2 + prmExPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-1 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-2 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-3 (ocf::pacemaker:Dummy): Started act2 + prmIpPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + prmApPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + Resource Group: grpPostgreSQLDB3 + prmExPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB3-1 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB3-2 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB3-3 (ocf::pacemaker:Dummy): Started act3 + prmIpPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act3 + prmApPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act3 + diff --git a/pengine/test10/bug-lf-2619.summary b/pengine/test10/bug-lf-2619.summary new file mode 100644 index 0000000000..ffac3f0963 --- /dev/null +++ b/pengine/test10/bug-lf-2619.summary @@ -0,0 +1,99 @@ + +Current cluster status: +Online: [ act1 act2 act3 sby2 sby1 ] + + Resource Group: grpPostgreSQLDB1 + prmExPostgreSQLDB1 (ocf::pacemaker:Dummy): Started act1 + prmFsPostgreSQLDB1-1 (ocf::pacemaker:Dummy): Started act1 + prmFsPostgreSQLDB1-2 (ocf::pacemaker:Dummy): Started act1 + prmFsPostgreSQLDB1-3 (ocf::pacemaker:Dummy): Started act1 + prmIpPostgreSQLDB1 (ocf::pacemaker:Dummy): Started act1 + prmApPostgreSQLDB1 (ocf::pacemaker:Dummy): Started act1 + Resource Group: grpPostgreSQLDB2 + prmExPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-1 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-2 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-3 (ocf::pacemaker:Dummy): Started act2 + prmIpPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + prmApPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + Resource Group: grpPostgreSQLDB3 + prmExPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB3-1 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB3-2 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB3-3 (ocf::pacemaker:Dummy): Started act3 + prmIpPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act3 + prmApPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act3 + Clone Set: clnPingd [prmPingd] + prmPingd:0 (ocf::pacemaker:ping): Started act1 FAILED + Started: [ act2 act3 sby1 sby2 ] + +Transition Summary: + * Move prmExPostgreSQLDB1 (Started act1 -> sby1) + * Move prmFsPostgreSQLDB1-1 (Started act1 -> sby1) + * Move prmFsPostgreSQLDB1-2 (Started act1 -> sby1) + * Move prmFsPostgreSQLDB1-3 (Started act1 -> sby1) + * Move prmIpPostgreSQLDB1 (Started act1 -> sby1) + * Move prmApPostgreSQLDB1 (Started act1 -> sby1) + * Stop prmPingd:0 (act1) + +Executing cluster transition: + * Pseudo action: grpPostgreSQLDB1_stop_0 + * Resource action: prmApPostgreSQLDB1 stop on act1 + * Pseudo action: load_stopped_sby1 + * Pseudo action: load_stopped_sby2 + * Pseudo action: load_stopped_act3 + * Pseudo action: load_stopped_act2 + * Resource action: prmIpPostgreSQLDB1 stop on act1 + * Resource action: prmFsPostgreSQLDB1-3 stop on act1 + * Resource action: prmFsPostgreSQLDB1-2 stop on act1 + * Resource action: prmFsPostgreSQLDB1-1 stop on act1 + * Resource action: prmExPostgreSQLDB1 stop on act1 + * Pseudo action: load_stopped_act1 + * Pseudo action: grpPostgreSQLDB1_stopped_0 + * Pseudo action: grpPostgreSQLDB1_start_0 + * Resource action: prmExPostgreSQLDB1 start on sby1 + * Resource action: prmFsPostgreSQLDB1-1 start on sby1 + * Resource action: prmFsPostgreSQLDB1-2 start on sby1 + * Resource action: prmFsPostgreSQLDB1-3 start on sby1 + * Resource action: prmIpPostgreSQLDB1 start on sby1 + * Resource action: prmApPostgreSQLDB1 start on sby1 + * Pseudo action: clnPingd_stop_0 + * Pseudo action: grpPostgreSQLDB1_running_0 + * Resource action: prmExPostgreSQLDB1 monitor=5000 on sby1 + * Resource action: prmFsPostgreSQLDB1-1 monitor=5000 on sby1 + * Resource action: prmFsPostgreSQLDB1-2 monitor=5000 on sby1 + * Resource action: prmFsPostgreSQLDB1-3 monitor=5000 on sby1 + * Resource action: prmIpPostgreSQLDB1 monitor=5000 on sby1 + * Resource action: prmApPostgreSQLDB1 monitor=5000 on sby1 + * Resource action: prmPingd:0 stop on act1 + * Pseudo action: clnPingd_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ act1 act2 act3 sby2 sby1 ] + + Resource Group: grpPostgreSQLDB1 + prmExPostgreSQLDB1 (ocf::pacemaker:Dummy): Started sby1 + prmFsPostgreSQLDB1-1 (ocf::pacemaker:Dummy): Started sby1 + prmFsPostgreSQLDB1-2 (ocf::pacemaker:Dummy): Started sby1 + prmFsPostgreSQLDB1-3 (ocf::pacemaker:Dummy): Started sby1 + prmIpPostgreSQLDB1 (ocf::pacemaker:Dummy): Started sby1 + prmApPostgreSQLDB1 (ocf::pacemaker:Dummy): Started sby1 + Resource Group: grpPostgreSQLDB2 + prmExPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-1 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-2 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-3 (ocf::pacemaker:Dummy): Started act2 + prmIpPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + prmApPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + Resource Group: grpPostgreSQLDB3 + prmExPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB3-1 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB3-2 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB3-3 (ocf::pacemaker:Dummy): Started act3 + prmIpPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act3 + prmApPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act3 + Clone Set: clnPingd [prmPingd] + Started: [ act2 act3 sby1 sby2 ] + Stopped: [ prmPingd:0 ] + diff --git a/pengine/test10/bug-n-385265-2.summary b/pengine/test10/bug-n-385265-2.summary new file mode 100644 index 0000000000..aac595318f --- /dev/null +++ b/pengine/test10/bug-n-385265-2.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ ih01 ih02 ] + + Resource Group: group_common + resource_ip_common (ocf::heartbeat:IPaddr2): Started ih02 FAILED + resource_idvscommon (ocf::dfs:idvs): Started ih02 + +Transition Summary: + * Move resource_ip_common (Started ih02 -> ih01) + * Move resource_idvscommon (Started ih02 -> ih01) + +Executing cluster transition: + * Pseudo action: group_common_stop_0 + * Resource action: resource_idvscommon stop on ih02 + * Resource action: resource_ip_common stop on ih02 + * Pseudo action: all_stopped + * Pseudo action: group_common_stopped_0 + * Pseudo action: group_common_start_0 + * Resource action: resource_ip_common start on ih01 + * Resource action: resource_idvscommon start on ih01 + * Pseudo action: group_common_running_0 + * Resource action: resource_ip_common monitor=30000 on ih01 + * Resource action: resource_idvscommon monitor=30000 on ih01 + +Revised cluster status: +Online: [ ih01 ih02 ] + + Resource Group: group_common + resource_ip_common (ocf::heartbeat:IPaddr2): Started ih01 + resource_idvscommon (ocf::dfs:idvs): Started ih01 + diff --git a/pengine/test10/bug-n-385265.summary b/pengine/test10/bug-n-385265.summary new file mode 100644 index 0000000000..7b70f2bd61 --- /dev/null +++ b/pengine/test10/bug-n-385265.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ ih01 ih02 ] + + Resource Group: group_common + resource_ip_common (ocf::heartbeat:IPaddr2): Started ih02 + resource_idvscommon (ocf::dfs:idvs): Started ih02 FAILED + +Transition Summary: + * Stop resource_idvscommon (ih02) + +Executing cluster transition: + * Pseudo action: group_common_stop_0 + * Resource action: resource_idvscommon stop on ih02 + * Pseudo action: all_stopped + * Pseudo action: group_common_stopped_0 + +Revised cluster status: +Online: [ ih01 ih02 ] + + Resource Group: group_common + resource_ip_common (ocf::heartbeat:IPaddr2): Started ih02 + resource_idvscommon (ocf::dfs:idvs): Stopped + diff --git a/pengine/test10/bug-n-387749.summary b/pengine/test10/bug-n-387749.summary new file mode 100644 index 0000000000..ea0f8dce56 --- /dev/null +++ b/pengine/test10/bug-n-387749.summary @@ -0,0 +1,59 @@ + +Current cluster status: +Online: [ power720-1 power720-2 ] +OFFLINE: [ power720-4 ] + + Clone Set: export_home_ocfs2_clone_set [export_home_ocfs2] (unique) + export_home_ocfs2:0 (ocf::heartbeat:Filesystem): Stopped + export_home_ocfs2:1 (ocf::heartbeat:Filesystem): Started power720-2 + export_home_ocfs2:2 (ocf::heartbeat:Filesystem): Stopped + Resource Group: group_nfs + resource_ipaddr1_single (ocf::heartbeat:IPaddr): Started power720-2 + resource_nfsserver_single (lsb:nfsserver): Started power720-2 + +Transition Summary: + * Start export_home_ocfs2:0 (power720-1) + * Move resource_ipaddr1_single (Started power720-2 -> power720-1) + * Move resource_nfsserver_single (Started power720-2 -> power720-1) + +Executing cluster transition: + * Resource action: export_home_ocfs2:0 monitor on power720-1 + * Resource action: export_home_ocfs2:1 monitor on power720-1 + * Resource action: export_home_ocfs2:2 monitor on power720-1 + * Pseudo action: export_home_ocfs2_clone_set_pre_notify_start_0 + * Pseudo action: group_nfs_stop_0 + * Resource action: resource_ipaddr1_single monitor on power720-1 + * Resource action: resource_nfsserver_single monitor on power720-1 + * Pseudo action: probe_complete + * Resource action: export_home_ocfs2:1 notify on power720-2 + * Pseudo action: export_home_ocfs2_clone_set_confirmed-pre_notify_start_0 + * Pseudo action: export_home_ocfs2_clone_set_start_0 + * Resource action: resource_nfsserver_single stop on power720-2 + * Resource action: export_home_ocfs2:0 start on power720-1 + * Pseudo action: export_home_ocfs2_clone_set_running_0 + * Resource action: resource_ipaddr1_single stop on power720-2 + * Pseudo action: all_stopped + * Pseudo action: export_home_ocfs2_clone_set_post_notify_running_0 + * Pseudo action: group_nfs_stopped_0 + * Resource action: export_home_ocfs2:0 notify on power720-1 + * Resource action: export_home_ocfs2:1 notify on power720-2 + * Pseudo action: export_home_ocfs2_clone_set_confirmed-post_notify_running_0 + * Pseudo action: group_nfs_start_0 + * Resource action: resource_ipaddr1_single start on power720-1 + * Resource action: resource_nfsserver_single start on power720-1 + * Pseudo action: group_nfs_running_0 + * Resource action: resource_ipaddr1_single monitor=5000 on power720-1 + * Resource action: resource_nfsserver_single monitor=15000 on power720-1 + +Revised cluster status: +Online: [ power720-1 power720-2 ] +OFFLINE: [ power720-4 ] + + Clone Set: export_home_ocfs2_clone_set [export_home_ocfs2] (unique) + export_home_ocfs2:0 (ocf::heartbeat:Filesystem): Started power720-1 + export_home_ocfs2:1 (ocf::heartbeat:Filesystem): Started power720-2 + export_home_ocfs2:2 (ocf::heartbeat:Filesystem): Stopped + Resource Group: group_nfs + resource_ipaddr1_single (ocf::heartbeat:IPaddr): Started power720-1 + resource_nfsserver_single (lsb:nfsserver): Started power720-1 + diff --git a/pengine/test10/bug-pm-11.summary b/pengine/test10/bug-pm-11.summary new file mode 100644 index 0000000000..57db5bdc0c --- /dev/null +++ b/pengine/test10/bug-pm-11.summary @@ -0,0 +1,48 @@ + +Current cluster status: +Online: [ node-b node-a ] + + Master/Slave Set: ms-sf [group] (unique) + Resource Group: group:0 + stateful-1:0 (ocf::heartbeat:Stateful): Started node-b + stateful-2:0 (ocf::heartbeat:Stateful): Stopped + Resource Group: group:1 + stateful-1:1 (ocf::heartbeat:Stateful): Master node-a + stateful-2:1 (ocf::heartbeat:Stateful): Stopped + +Transition Summary: + * Start stateful-2:0 (node-b) + * Start stateful-2:1 (node-a) + * Promote stateful-2:1 (Stopped -> Master node-a) + +Executing cluster transition: + * Resource action: stateful-2:0 monitor on node-a + * Resource action: stateful-2:0 monitor on node-b + * Resource action: stateful-2:1 monitor on node-a + * Resource action: stateful-2:1 monitor on node-b + * Pseudo action: ms-sf_start_0 + * Pseudo action: probe_complete + * Pseudo action: group:0_start_0 + * Resource action: stateful-2:0 start on node-b + * Pseudo action: group:1_start_0 + * Resource action: stateful-2:1 start on node-a + * Pseudo action: group:0_running_0 + * Pseudo action: group:1_running_0 + * Pseudo action: ms-sf_running_0 + * Pseudo action: ms-sf_promote_0 + * Pseudo action: group:1_promote_0 + * Resource action: stateful-2:1 promote on node-a + * Pseudo action: group:1_promoted_0 + * Pseudo action: ms-sf_promoted_0 + +Revised cluster status: +Online: [ node-b node-a ] + + Master/Slave Set: ms-sf [group] (unique) + Resource Group: group:0 + stateful-1:0 (ocf::heartbeat:Stateful): Started node-b + stateful-2:0 (ocf::heartbeat:Stateful): Started node-b + Resource Group: group:1 + stateful-1:1 (ocf::heartbeat:Stateful): Master node-a + stateful-2:1 (ocf::heartbeat:Stateful): Master node-a + diff --git a/pengine/test10/bug-pm-12.summary b/pengine/test10/bug-pm-12.summary new file mode 100644 index 0000000000..feeb699d8f --- /dev/null +++ b/pengine/test10/bug-pm-12.summary @@ -0,0 +1,56 @@ + +Current cluster status: +Online: [ node-b node-a ] + + Master/Slave Set: ms-sf [group] (unique) + Resource Group: group:0 + stateful-1:0 (ocf::heartbeat:Stateful): Started node-b + stateful-2:0 (ocf::heartbeat:Stateful): Started node-b + Resource Group: group:1 + stateful-1:1 (ocf::heartbeat:Stateful): Master node-a + stateful-2:1 (ocf::heartbeat:Stateful): Master node-a + +Transition Summary: + * Restart stateful-2:0 (Slave node-b) + * Restart stateful-2:1 (Master node-a) + +Executing cluster transition: + * Pseudo action: ms-sf_demote_0 + * Pseudo action: group:1_demote_0 + * Resource action: stateful-2:1 demote on node-a + * Pseudo action: group:1_demoted_0 + * Pseudo action: ms-sf_demoted_0 + * Pseudo action: ms-sf_stop_0 + * Pseudo action: group:0_stop_0 + * Resource action: stateful-2:0 stop on node-b + * Pseudo action: group:1_stop_0 + * Resource action: stateful-2:1 stop on node-a + * Pseudo action: all_stopped + * Pseudo action: group:0_stopped_0 + * Pseudo action: group:1_stopped_0 + * Pseudo action: ms-sf_stopped_0 + * Pseudo action: ms-sf_start_0 + * Pseudo action: group:0_start_0 + * Resource action: stateful-2:0 start on node-b + * Pseudo action: group:1_start_0 + * Resource action: stateful-2:1 start on node-a + * Pseudo action: group:0_running_0 + * Pseudo action: group:1_running_0 + * Pseudo action: ms-sf_running_0 + * Pseudo action: ms-sf_promote_0 + * Pseudo action: group:1_promote_0 + * Resource action: stateful-2:1 promote on node-a + * Pseudo action: group:1_promoted_0 + * Pseudo action: ms-sf_promoted_0 + +Revised cluster status: +Online: [ node-b node-a ] + + Master/Slave Set: ms-sf [group] (unique) + Resource Group: group:0 + stateful-1:0 (ocf::heartbeat:Stateful): Started node-b + stateful-2:0 (ocf::heartbeat:Stateful): Started node-b + Resource Group: group:1 + stateful-1:1 (ocf::heartbeat:Stateful): Master node-a + stateful-2:1 (ocf::heartbeat:Stateful): Master node-a + diff --git a/pengine/test10/bug-suse-707150.summary b/pengine/test10/bug-suse-707150.summary new file mode 100644 index 0000000000..cf37e55745 --- /dev/null +++ b/pengine/test10/bug-suse-707150.summary @@ -0,0 +1,72 @@ + +Current cluster status: +Online: [ hex-9 hex-0 ] +OFFLINE: [ hex-7 hex-8 ] + + vm-00 (ocf::heartbeat:Xen): Stopped + Clone Set: base-clone [base-group] + Resource Group: base-group:0 + dlm:0 (ocf::pacemaker:controld): Started hex-0 + o2cb:0 (ocf::ocfs2:o2cb): Stopped + clvm:0 (ocf::lvm2:clvmd): Stopped + cmirrord:0 (ocf::lvm2:cmirrord): Stopped + vg1:0 (ocf::heartbeat:LVM): Stopped + ocfs2-1:0 (ocf::heartbeat:Filesystem): Stopped + Stopped: [ base-group:1 base-group:2 base-group:3 ] + vm-01 (ocf::heartbeat:Xen): Stopped + fencing-sbd (stonith:external/sbd): Started hex-9 + dummy1 (ocf::heartbeat:Dummy): Started hex-0 + +Transition Summary: + * Start o2cb:0 (hex-0) + * Start clvm:0 (hex-0) + * Start cmirrord:0 (hex-0) + * Start dlm:1 (hex-9) + * Start o2cb:1 (hex-9) + * Start clvm:1 (hex-9) + * Start cmirrord:1 (hex-9) + * Start vm-01 (hex-9 - blocked) + +Executing cluster transition: + * Resource action: vg1:0 monitor on hex-9 + * Pseudo action: base-clone_start_0 + * Pseudo action: probe_complete + * Pseudo action: load_stopped_hex-0 + * Pseudo action: load_stopped_hex-9 + * Pseudo action: load_stopped_hex-8 + * Pseudo action: load_stopped_hex-7 + * Pseudo action: base-group:0_start_0 + * Resource action: o2cb:0 start on hex-0 + * Resource action: clvm:0 start on hex-0 + * Resource action: cmirrord:0 start on hex-0 + * Pseudo action: base-group:1_start_0 + * Resource action: dlm:1 start on hex-9 + * Resource action: o2cb:1 start on hex-9 + * Resource action: clvm:1 start on hex-9 + * Resource action: cmirrord:1 start on hex-9 + +Revised cluster status: +Online: [ hex-9 hex-0 ] +OFFLINE: [ hex-7 hex-8 ] + + vm-00 (ocf::heartbeat:Xen): Stopped + Clone Set: base-clone [base-group] + Resource Group: base-group:0 + dlm:0 (ocf::pacemaker:controld): Started hex-0 + o2cb:0 (ocf::ocfs2:o2cb): Started hex-0 + clvm:0 (ocf::lvm2:clvmd): Started hex-0 + cmirrord:0 (ocf::lvm2:cmirrord): Started hex-0 + vg1:0 (ocf::heartbeat:LVM): Stopped + ocfs2-1:0 (ocf::heartbeat:Filesystem): Stopped + Resource Group: base-group:1 + dlm:1 (ocf::pacemaker:controld): Started hex-9 + o2cb:1 (ocf::ocfs2:o2cb): Started hex-9 + clvm:1 (ocf::lvm2:clvmd): Started hex-9 + cmirrord:1 (ocf::lvm2:cmirrord): Started hex-9 + vg1:1 (ocf::heartbeat:LVM): Stopped + ocfs2-1:1 (ocf::heartbeat:Filesystem): Stopped + Stopped: [ base-group:2 base-group:3 ] + vm-01 (ocf::heartbeat:Xen): Stopped + fencing-sbd (stonith:external/sbd): Started hex-9 + dummy1 (ocf::heartbeat:Dummy): Started hex-0 + diff --git a/pengine/test10/clone-anon-dup.summary b/pengine/test10/clone-anon-dup.summary new file mode 100644 index 0000000000..0bb2f1b7df --- /dev/null +++ b/pengine/test10/clone-anon-dup.summary @@ -0,0 +1,35 @@ + +Current cluster status: +Online: [ wc01 wc02 wc03 ] + + stonith-1 (stonith:dummy): Stopped + Clone Set: clone_webservice [group_webservice] + Resource Group: group_webservice:2 + fs_www:2 (ocf::heartbeat:Filesystem): ORPHANED Stopped + apache2:2 (ocf::heartbeat:apache): ORPHANED Started wc02 + Started: [ wc01 wc02 ] + +Transition Summary: + * Start stonith-1 (wc01) + * Stop apache2:2 (wc02) + +Executing cluster transition: + * Resource action: stonith-1 monitor on wc03 + * Resource action: stonith-1 monitor on wc02 + * Resource action: stonith-1 monitor on wc01 + * Pseudo action: clone_webservice_stop_0 + * Pseudo action: probe_complete + * Resource action: stonith-1 start on wc01 + * Pseudo action: group_webservice:2_stop_0 + * Resource action: apache2:0 stop on wc02 + * Pseudo action: all_stopped + * Pseudo action: group_webservice:2_stopped_0 + * Pseudo action: clone_webservice_stopped_0 + +Revised cluster status: +Online: [ wc01 wc02 wc03 ] + + stonith-1 (stonith:dummy): Started wc01 + Clone Set: clone_webservice [group_webservice] + Started: [ wc01 wc02 ] + diff --git a/pengine/test10/clone-anon-failcount.summary b/pengine/test10/clone-anon-failcount.summary new file mode 100644 index 0000000000..51bfb1933b --- /dev/null +++ b/pengine/test10/clone-anon-failcount.summary @@ -0,0 +1,114 @@ + +Current cluster status: +Online: [ srv01 srv02 srv03 srv04 ] + + Resource Group: UMgroup01 + UmVIPcheck (ocf::pacemaker:Dummy): Started srv01 + UmIPaddr (ocf::pacemaker:Dummy): Started srv01 + UmDummy01 (ocf::pacemaker:Dummy): Started srv01 + UmDummy02 (ocf::pacemaker:Dummy): Started srv01 + Resource Group: OVDBgroup02-1 + prmExPostgreSQLDB1 (ocf::pacemaker:Dummy): Started srv01 + Resource Group: OVDBgroup02-2 + prmExPostgreSQLDB2 (ocf::pacemaker:Dummy): Started srv02 + Resource Group: OVDBgroup02-3 + prmExPostgreSQLDB3 (ocf::pacemaker:Dummy): Started srv03 + Resource Group: grpStonith1 + prmStonithN1 (stonith:external/ssh): Started srv04 + Resource Group: grpStonith2 + prmStonithN2 (stonith:external/ssh): Started srv01 + Resource Group: grpStonith3 + prmStonithN3 (stonith:external/ssh): Started srv02 + Resource Group: grpStonith4 + prmStonithN4 (stonith:external/ssh): Started srv03 + Clone Set: clnUMgroup01 [clnUmResource] + Started: [ srv01 srv04 ] + Clone Set: clnPingd [clnPrmPingd] + Started: [ srv01 srv02 srv03 srv04 ] + Clone Set: clnDiskd1 [clnPrmDiskd1] + Started: [ srv01 srv02 srv03 srv04 ] + Clone Set: clnG3dummy1 [clnG3dummy01] + Started: [ srv01 srv02 srv03 srv04 ] + Clone Set: clnG3dummy2 [clnG3dummy02] + Started: [ srv01 srv02 srv03 srv04 ] + +Transition Summary: + * Move UmVIPcheck (Started srv01 -> srv04) + * Move UmIPaddr (Started srv01 -> srv04) + * Move UmDummy01 (Started srv01 -> srv04) + * Move UmDummy02 (Started srv01 -> srv04) + * Stop clnUMdummy01:0 (srv01) + * Stop clnUMdummy02:0 (srv01) + * Recover clnUMdummy01:1 (Started srv04) + * Restart clnUMdummy02:1 (Started srv04) + +Executing cluster transition: + * Pseudo action: UMgroup01_stop_0 + * Resource action: UmDummy02 stop on srv01 + * Resource action: UmDummy01 stop on srv01 + * Resource action: UmIPaddr stop on srv01 + * Resource action: UmVIPcheck stop on srv01 + * Pseudo action: UMgroup01_stopped_0 + * Pseudo action: clnUMgroup01_stop_0 + * Pseudo action: clnUmResource:0_stop_0 + * Resource action: clnUMdummy02:0 stop on srv01 + * Pseudo action: clnUmResource:1_stop_0 + * Resource action: clnUMdummy02:1 stop on srv04 + * Resource action: clnUMdummy01:0 stop on srv01 + * Resource action: clnUMdummy01:1 stop on srv04 + * Pseudo action: all_stopped + * Pseudo action: clnUmResource:0_stopped_0 + * Pseudo action: clnUmResource:1_stopped_0 + * Pseudo action: clnUMgroup01_stopped_0 + * Pseudo action: clnUMgroup01_start_0 + * Pseudo action: clnUmResource:1_start_0 + * Resource action: clnUMdummy01:1 start on srv04 + * Resource action: clnUMdummy01:1 monitor=10000 on srv04 + * Resource action: clnUMdummy02:1 start on srv04 + * Resource action: clnUMdummy02:1 monitor=10000 on srv04 + * Pseudo action: clnUmResource:1_running_0 + * Pseudo action: clnUMgroup01_running_0 + * Pseudo action: UMgroup01_start_0 + * Resource action: UmVIPcheck start on srv04 + * Resource action: UmIPaddr start on srv04 + * Resource action: UmDummy01 start on srv04 + * Resource action: UmDummy02 start on srv04 + * Pseudo action: UMgroup01_running_0 + * Resource action: UmIPaddr monitor=10000 on srv04 + * Resource action: UmDummy01 monitor=10000 on srv04 + * Resource action: UmDummy02 monitor=10000 on srv04 + +Revised cluster status: +Online: [ srv01 srv02 srv03 srv04 ] + + Resource Group: UMgroup01 + UmVIPcheck (ocf::pacemaker:Dummy): Started srv04 + UmIPaddr (ocf::pacemaker:Dummy): Started srv04 + UmDummy01 (ocf::pacemaker:Dummy): Started srv04 + UmDummy02 (ocf::pacemaker:Dummy): Started srv04 + Resource Group: OVDBgroup02-1 + prmExPostgreSQLDB1 (ocf::pacemaker:Dummy): Started srv01 + Resource Group: OVDBgroup02-2 + prmExPostgreSQLDB2 (ocf::pacemaker:Dummy): Started srv02 + Resource Group: OVDBgroup02-3 + prmExPostgreSQLDB3 (ocf::pacemaker:Dummy): Started srv03 + Resource Group: grpStonith1 + prmStonithN1 (stonith:external/ssh): Started srv04 + Resource Group: grpStonith2 + prmStonithN2 (stonith:external/ssh): Started srv01 + Resource Group: grpStonith3 + prmStonithN3 (stonith:external/ssh): Started srv02 + Resource Group: grpStonith4 + prmStonithN4 (stonith:external/ssh): Started srv03 + Clone Set: clnUMgroup01 [clnUmResource] + Started: [ srv04 ] + Stopped: [ clnUmResource:0 ] + Clone Set: clnPingd [clnPrmPingd] + Started: [ srv01 srv02 srv03 srv04 ] + Clone Set: clnDiskd1 [clnPrmDiskd1] + Started: [ srv01 srv02 srv03 srv04 ] + Clone Set: clnG3dummy1 [clnG3dummy01] + Started: [ srv01 srv02 srv03 srv04 ] + Clone Set: clnG3dummy2 [clnG3dummy02] + Started: [ srv01 srv02 srv03 srv04 ] + diff --git a/pengine/test10/clone-anon-probe-1.summary b/pengine/test10/clone-anon-probe-1.summary new file mode 100644 index 0000000000..fa326a5fda --- /dev/null +++ b/pengine/test10/clone-anon-probe-1.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ mysql-02 mysql-01 ] + + Clone Set: ms-drbd0 [drbd0] + Stopped: [ drbd0:0 drbd0:1 ] + +Transition Summary: + * Start drbd0:0 (mysql-01) + * Start drbd0:1 (mysql-02) + +Executing cluster transition: + * Resource action: drbd0:0 monitor on mysql-01 + * Resource action: drbd0:1 monitor on mysql-02 + * Pseudo action: ms-drbd0_start_0 + * Pseudo action: probe_complete + * Resource action: drbd0:0 start on mysql-01 + * Resource action: drbd0:1 start on mysql-02 + * Pseudo action: ms-drbd0_running_0 + +Revised cluster status: +Online: [ mysql-02 mysql-01 ] + + Clone Set: ms-drbd0 [drbd0] + Started: [ mysql-01 mysql-02 ] + diff --git a/pengine/test10/clone-anon-probe-2.summary b/pengine/test10/clone-anon-probe-2.summary new file mode 100644 index 0000000000..9093073282 --- /dev/null +++ b/pengine/test10/clone-anon-probe-2.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ mysql-02 mysql-01 ] + + Clone Set: ms-drbd0 [drbd0] + Started: [ mysql-02 ] + Stopped: [ drbd0:1 ] + +Transition Summary: + * Start drbd0:1 (mysql-01) + +Executing cluster transition: + * Pseudo action: ms-drbd0_start_0 + * Resource action: drbd0:1 start on mysql-01 + * Pseudo action: ms-drbd0_running_0 + +Revised cluster status: +Online: [ mysql-02 mysql-01 ] + + Clone Set: ms-drbd0 [drbd0] + Started: [ mysql-02 mysql-01 ] + diff --git a/pengine/test10/clone-colocate-instance-1.summary b/pengine/test10/clone-colocate-instance-1.summary new file mode 100644 index 0000000000..4cc23cc11c --- /dev/null +++ b/pengine/test10/clone-colocate-instance-1.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Online: [ alice.demo bob.demo ] + + dummy1 (ocf::heartbeat:Dummy): Stopped + dummy2 (ocf::heartbeat:Dummy): Stopped + Clone Set: cl_dummy [dummy] + Stopped: [ dummy:0 dummy:1 ] + +Transition Summary: + * Start dummy1 (alice.demo) + * Start dummy2 (bob.demo) + * Start dummy:0 (alice.demo) + * Start dummy:1 (bob.demo) + +Executing cluster transition: + * Resource action: dummy1 monitor on bob.demo + * Resource action: dummy1 monitor on alice.demo + * Resource action: dummy2 monitor on bob.demo + * Resource action: dummy2 monitor on alice.demo + * Resource action: dummy:0 monitor on alice.demo + * Resource action: dummy:1 monitor on bob.demo + * Pseudo action: cl_dummy_start_0 + * Pseudo action: probe_complete + * Resource action: dummy1 start on alice.demo + * Resource action: dummy2 start on bob.demo + * Resource action: dummy:0 start on alice.demo + * Resource action: dummy:1 start on bob.demo + * Pseudo action: cl_dummy_running_0 + +Revised cluster status: +Online: [ alice.demo bob.demo ] + + dummy1 (ocf::heartbeat:Dummy): Started alice.demo + dummy2 (ocf::heartbeat:Dummy): Started bob.demo + Clone Set: cl_dummy [dummy] + Started: [ alice.demo bob.demo ] + diff --git a/pengine/test10/clone-colocate-instance-2.summary b/pengine/test10/clone-colocate-instance-2.summary new file mode 100644 index 0000000000..95a64fd140 --- /dev/null +++ b/pengine/test10/clone-colocate-instance-2.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Online: [ alice.demo bob.demo ] + + dummy1 (ocf::heartbeat:Dummy): Stopped + dummy2 (ocf::heartbeat:Dummy): Stopped + Clone Set: cl_dummy [dummy] + Stopped: [ dummy:0 dummy:1 ] + +Transition Summary: + * Start dummy1 (bob.demo) + * Start dummy2 (alice.demo) + * Start dummy:0 (alice.demo) + * Start dummy:1 (bob.demo) + +Executing cluster transition: + * Resource action: dummy1 monitor on bob.demo + * Resource action: dummy1 monitor on alice.demo + * Resource action: dummy2 monitor on bob.demo + * Resource action: dummy2 monitor on alice.demo + * Resource action: dummy:0 monitor on alice.demo + * Resource action: dummy:1 monitor on bob.demo + * Pseudo action: cl_dummy_start_0 + * Pseudo action: probe_complete + * Resource action: dummy1 start on bob.demo + * Resource action: dummy2 start on alice.demo + * Resource action: dummy:0 start on alice.demo + * Resource action: dummy:1 start on bob.demo + * Pseudo action: cl_dummy_running_0 + +Revised cluster status: +Online: [ alice.demo bob.demo ] + + dummy1 (ocf::heartbeat:Dummy): Started bob.demo + dummy2 (ocf::heartbeat:Dummy): Started alice.demo + Clone Set: cl_dummy [dummy] + Started: [ alice.demo bob.demo ] + diff --git a/pengine/test10/clone-max-zero.summary b/pengine/test10/clone-max-zero.summary new file mode 100644 index 0000000000..c03530b3ad --- /dev/null +++ b/pengine/test10/clone-max-zero.summary @@ -0,0 +1,50 @@ + +Current cluster status: +Online: [ c001n11 c001n12 ] + + fencing (stonith:external/ssh): Started c001n11 + Clone Set: dlm-clone [dlm] + dlm:0 (ocf::pacemaker:controld): ORPHANED Started c001n12 + dlm:1 (ocf::pacemaker:controld): ORPHANED Started c001n11 + Clone Set: o2cb-clone [o2cb] + Started: [ c001n11 c001n12 ] + Clone Set: clone-drbd0 [drbd0] + Started: [ c001n11 c001n12 ] + Clone Set: c-ocfs2-1 [ocfs2-1] + Started: [ c001n11 c001n12 ] + +Transition Summary: + * Stop dlm:0 (c001n12) + * Stop dlm:1 (c001n11) + * Stop o2cb:0 (c001n11) + * Stop o2cb:1 (c001n12) + * Stop ocfs2-1:0 (c001n11) + * Stop ocfs2-1:1 (c001n12) + +Executing cluster transition: + * Pseudo action: c-ocfs2-1_stop_0 + * Resource action: ocfs2-1:0 stop on c001n11 + * Resource action: ocfs2-1:1 stop on c001n12 + * Pseudo action: c-ocfs2-1_stopped_0 + * Pseudo action: o2cb-clone_stop_0 + * Resource action: o2cb:0 stop on c001n11 + * Resource action: o2cb:1 stop on c001n12 + * Pseudo action: o2cb-clone_stopped_0 + * Pseudo action: dlm-clone_stop_0 + * Resource action: dlm:1 stop on c001n12 + * Resource action: dlm:0 stop on c001n11 + * Pseudo action: dlm-clone_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ c001n11 c001n12 ] + + fencing (stonith:external/ssh): Started c001n11 + Clone Set: dlm-clone [dlm] + Clone Set: o2cb-clone [o2cb] + Stopped: [ o2cb:0 o2cb:1 ] + Clone Set: clone-drbd0 [drbd0] + Started: [ c001n11 c001n12 ] + Clone Set: c-ocfs2-1 [ocfs2-1] + Stopped: [ ocfs2-1:0 ocfs2-1:1 ] + diff --git a/pengine/test10/clone-no-shuffle.summary b/pengine/test10/clone-no-shuffle.summary new file mode 100644 index 0000000000..326ccab4e3 --- /dev/null +++ b/pengine/test10/clone-no-shuffle.summary @@ -0,0 +1,61 @@ + +Current cluster status: +Online: [ dktest2sles10 dktest1sles10 ] + + stonith-1 (stonith:dummy): Stopped + Master/Slave Set: ms-drbd1 [drbd1] + Masters: [ dktest2sles10 ] + Stopped: [ drbd1:1 ] + testip (ocf::heartbeat:IPaddr2): Started dktest2sles10 + +Transition Summary: + * Start stonith-1 (dktest1sles10) + * Demote drbd1:0 (Master -> Stopped dktest2sles10) + * Start drbd1:1 (dktest1sles10) + * Stop testip (dktest2sles10) + +Executing cluster transition: + * Resource action: stonith-1 monitor on dktest1sles10 + * Resource action: stonith-1 monitor on dktest2sles10 + * Resource action: drbd1:1 monitor on dktest1sles10 + * Pseudo action: ms-drbd1_pre_notify_demote_0 + * Resource action: testip monitor on dktest1sles10 + * Pseudo action: probe_complete + * Resource action: stonith-1 start on dktest1sles10 + * Resource action: drbd1:0 notify on dktest2sles10 + * Pseudo action: ms-drbd1_confirmed-pre_notify_demote_0 + * Resource action: testip stop on dktest2sles10 + * Pseudo action: ms-drbd1_demote_0 + * Resource action: drbd1:0 demote on dktest2sles10 + * Pseudo action: ms-drbd1_demoted_0 + * Pseudo action: ms-drbd1_post_notify_demoted_0 + * Resource action: drbd1:0 notify on dktest2sles10 + * Pseudo action: ms-drbd1_confirmed-post_notify_demoted_0 + * Pseudo action: ms-drbd1_pre_notify_stop_0 + * Resource action: drbd1:0 notify on dktest2sles10 + * Pseudo action: ms-drbd1_confirmed-pre_notify_stop_0 + * Pseudo action: ms-drbd1_stop_0 + * Resource action: drbd1:0 stop on dktest2sles10 + * Pseudo action: ms-drbd1_stopped_0 + * Pseudo action: ms-drbd1_post_notify_stopped_0 + * Pseudo action: ms-drbd1_confirmed-post_notify_stopped_0 + * Pseudo action: ms-drbd1_pre_notify_start_0 + * Pseudo action: all_stopped + * Pseudo action: ms-drbd1_confirmed-pre_notify_start_0 + * Pseudo action: ms-drbd1_start_0 + * Resource action: drbd1:1 start on dktest1sles10 + * Pseudo action: ms-drbd1_running_0 + * Pseudo action: ms-drbd1_post_notify_running_0 + * Resource action: drbd1:1 notify on dktest1sles10 + * Pseudo action: ms-drbd1_confirmed-post_notify_running_0 + * Resource action: drbd1:1 monitor=11000 on dktest1sles10 + +Revised cluster status: +Online: [ dktest2sles10 dktest1sles10 ] + + stonith-1 (stonith:dummy): Started dktest1sles10 + Master/Slave Set: ms-drbd1 [drbd1] + Slaves: [ dktest1sles10 ] + Stopped: [ drbd1:0 ] + testip (ocf::heartbeat:IPaddr2): Stopped + diff --git a/pengine/test10/clone-order-instance.summary b/pengine/test10/clone-order-instance.summary new file mode 100644 index 0000000000..613a2c45ae --- /dev/null +++ b/pengine/test10/clone-order-instance.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ alice.demo bob.demo ] + + dummy1 (ocf::heartbeat:Dummy): Stopped + Clone Set: cl_dummy [dummy] + Stopped: [ dummy:0 dummy:1 ] + +Transition Summary: + * Start dummy1 (alice.demo) + * Start dummy:0 (bob.demo) + * Start dummy:1 (alice.demo) + +Executing cluster transition: + * Resource action: dummy1 monitor on bob.demo + * Resource action: dummy1 monitor on alice.demo + * Resource action: dummy:0 monitor on bob.demo + * Resource action: dummy:1 monitor on alice.demo + * Pseudo action: cl_dummy_start_0 + * Pseudo action: probe_complete + * Resource action: dummy1 start on alice.demo + * Resource action: dummy:0 start on bob.demo + * Resource action: dummy:1 start on alice.demo + * Pseudo action: cl_dummy_running_0 + +Revised cluster status: +Online: [ alice.demo bob.demo ] + + dummy1 (ocf::heartbeat:Dummy): Started alice.demo + Clone Set: cl_dummy [dummy] + Started: [ bob.demo alice.demo ] + diff --git a/pengine/test10/clone-order-primitive.summary b/pengine/test10/clone-order-primitive.summary new file mode 100644 index 0000000000..ff7a3e70da --- /dev/null +++ b/pengine/test10/clone-order-primitive.summary @@ -0,0 +1,27 @@ + +Current cluster status: +Online: [ pcw2709.see.ed.ac.uk pcw2058.see.ed.ac.uk pcw2059.see.ed.ac.uk pcw2688.see.ed.ac.uk ] + + Clone Set: cups_clone [cups_lsb] + Stopped: [ cups_lsb:0 cups_lsb:1 ] + smb_lsb (lsb:smb): Stopped + +Transition Summary: + * Start cups_lsb:0 (pcw2058.see.ed.ac.uk) + * Start cups_lsb:1 (pcw2059.see.ed.ac.uk) + * Start smb_lsb (pcw2688.see.ed.ac.uk) + +Executing cluster transition: + * Resource action: smb_lsb start on pcw2688.see.ed.ac.uk + * Pseudo action: cups_clone_start_0 + * Resource action: cups_lsb:0 start on pcw2058.see.ed.ac.uk + * Resource action: cups_lsb:1 start on pcw2059.see.ed.ac.uk + * Pseudo action: cups_clone_running_0 + +Revised cluster status: +Online: [ pcw2709.see.ed.ac.uk pcw2058.see.ed.ac.uk pcw2059.see.ed.ac.uk pcw2688.see.ed.ac.uk ] + + Clone Set: cups_clone [cups_lsb] + Started: [ pcw2058.see.ed.ac.uk pcw2059.see.ed.ac.uk ] + smb_lsb (lsb:smb): Started pcw2688.see.ed.ac.uk + diff --git a/pengine/test10/cloned-group.summary b/pengine/test10/cloned-group.summary new file mode 100644 index 0000000000..7c5d453c03 --- /dev/null +++ b/pengine/test10/cloned-group.summary @@ -0,0 +1,47 @@ + +Current cluster status: +Online: [ webcluster01 ] +OFFLINE: [ webcluster02 ] + + Clone Set: apache2_clone [grrr] + Resource Group: grrr:2 + apache2:2 (ocf::heartbeat:apache): ORPHANED Started webcluster01 + mysql-proxy:2 (lsb:mysql-proxy): ORPHANED Started webcluster01 + Started: [ webcluster01 ] + Stopped: [ grrr:0 ] + +Transition Summary: + * Restart apache2:1 (Started webcluster01) + * Restart mysql-proxy:1 (Started webcluster01) + * Stop apache2:2 (webcluster01) + * Stop mysql-proxy:2 (webcluster01) + +Executing cluster transition: + * Pseudo action: apache2_clone_stop_0 + * Pseudo action: grrr:1_stop_0 + * Resource action: mysql-proxy:1 stop on webcluster01 + * Pseudo action: grrr:2_stop_0 + * Resource action: mysql-proxy:0 stop on webcluster01 + * Resource action: apache2:1 stop on webcluster01 + * Resource action: apache2:0 stop on webcluster01 + * Pseudo action: all_stopped + * Pseudo action: grrr:1_stopped_0 + * Pseudo action: grrr:2_stopped_0 + * Pseudo action: apache2_clone_stopped_0 + * Pseudo action: apache2_clone_start_0 + * Pseudo action: grrr:1_start_0 + * Resource action: apache2:1 start on webcluster01 + * Resource action: apache2:1 monitor=10000 on webcluster01 + * Resource action: mysql-proxy:1 start on webcluster01 + * Resource action: mysql-proxy:1 monitor=10000 on webcluster01 + * Pseudo action: grrr:1_running_0 + * Pseudo action: apache2_clone_running_0 + +Revised cluster status: +Online: [ webcluster01 ] +OFFLINE: [ webcluster02 ] + + Clone Set: apache2_clone [grrr] + Started: [ webcluster01 ] + Stopped: [ grrr:0 ] + diff --git a/pengine/test10/coloc-attr.summary b/pengine/test10/coloc-attr.summary new file mode 100644 index 0000000000..63a24bdfcb --- /dev/null +++ b/pengine/test10/coloc-attr.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Online: [ power720-1 power720-2 power720-3 power720-4 ] + + Resource Group: group_test1 + resource_t11 (lsb:nfsserver): Stopped + Resource Group: group_test2 + resource_t21 (ocf::heartbeat:Dummy): Stopped + +Transition Summary: + * Start resource_t11 (power720-3) + * Start resource_t21 (power720-4) + +Executing cluster transition: + * Pseudo action: group_test1_start_0 + * Resource action: resource_t11 start on power720-3 + * Pseudo action: group_test1_running_0 + * Pseudo action: group_test2_start_0 + * Resource action: resource_t21 start on power720-4 + * Pseudo action: group_test2_running_0 + +Revised cluster status: +Online: [ power720-1 power720-2 power720-3 power720-4 ] + + Resource Group: group_test1 + resource_t11 (lsb:nfsserver): Started power720-3 + Resource Group: group_test2 + resource_t21 (ocf::heartbeat:Dummy): Started power720-4 + diff --git a/pengine/test10/coloc-clone-stays-active.summary b/pengine/test10/coloc-clone-stays-active.summary new file mode 100644 index 0000000000..289e3338e7 --- /dev/null +++ b/pengine/test10/coloc-clone-stays-active.summary @@ -0,0 +1,206 @@ + +Current cluster status: +Online: [ s01-1 s01-0 ] + + stonith-s01-0 (stonith:external/ipmi): Started s01-1 + stonith-s01-1 (stonith:external/ipmi): Started s01-0 + Resource Group: iscsi-pool-0-target-all + iscsi-pool-0-target (ocf::vds-ok:iSCSITarget): Started s01-0 + iscsi-pool-0-lun-1 (ocf::vds-ok:iSCSILogicalUnit): Started s01-0 + Resource Group: iscsi-pool-0-vips + vip-235 (ocf::heartbeat:IPaddr2): Started s01-0 + vip-236 (ocf::heartbeat:IPaddr2): Started s01-0 + Resource Group: iscsi-pool-1-target-all + iscsi-pool-1-target (ocf::vds-ok:iSCSITarget): Started s01-1 + iscsi-pool-1-lun-1 (ocf::vds-ok:iSCSILogicalUnit): Started s01-1 + Resource Group: iscsi-pool-1-vips + vip-237 (ocf::heartbeat:IPaddr2): Started s01-1 + vip-238 (ocf::heartbeat:IPaddr2): Started s01-1 + Master/Slave Set: ms-drbd-pool-0 [drbd-pool-0] + Masters: [ s01-0 ] + Slaves: [ s01-1 ] + Master/Slave Set: ms-drbd-pool-1 [drbd-pool-1] + Masters: [ s01-1 ] + Slaves: [ s01-0 ] + Master/Slave Set: ms-iscsi-pool-0-vips-fw [iscsi-pool-0-vips-fw] + Masters: [ s01-0 ] + Slaves: [ s01-1 ] + Master/Slave Set: ms-iscsi-pool-1-vips-fw [iscsi-pool-1-vips-fw] + Masters: [ s01-1 ] + Slaves: [ s01-0 ] + Clone Set: cl-o2cb [o2cb] + Stopped: [ o2cb:0 o2cb:1 ] + Master/Slave Set: ms-drbd-s01-service [drbd-s01-service] + Masters: [ s01-1 s01-0 ] + Clone Set: cl-s01-service-fs [s01-service-fs] + Started: [ s01-1 s01-0 ] + Clone Set: cl-ietd [ietd] + Started: [ s01-0 s01-1 ] + Clone Set: cl-dhcpd [dhcpd] + Stopped: [ dhcpd:0 dhcpd:1 ] + Resource Group: http-server + vip-233 (ocf::heartbeat:IPaddr2): Started s01-0 + nginx (lsb:nginx): Stopped + Master/Slave Set: ms-drbd-s01-logs [drbd-s01-logs] + Masters: [ s01-1 s01-0 ] + Clone Set: cl-s01-logs-fs [s01-logs-fs] + Started: [ s01-0 s01-1 ] + Resource Group: syslog-server + vip-234 (ocf::heartbeat:IPaddr2): Started s01-1 + syslog-ng (ocf::heartbeat:syslog-ng): Started s01-1 + Resource Group: tftp-server + vip-232 (ocf::heartbeat:IPaddr2): Stopped + tftpd (ocf::heartbeat:Xinetd): Stopped + Clone Set: cl-xinetd [xinetd] + Started: [ s01-0 s01-1 ] + Clone Set: cl-ospf-routing [ospf-routing] + Started: [ s01-0 s01-1 ] + Clone Set: connected-outer [ping-bmc-and-switch] + Started: [ s01-0 s01-1 ] + Resource Group: iscsi-vds-dom0-stateless-0-target-all + iscsi-vds-dom0-stateless-0-target (ocf::vds-ok:iSCSITarget): Stopped + iscsi-vds-dom0-stateless-0-lun-1 (ocf::vds-ok:iSCSILogicalUnit): Stopped + Resource Group: iscsi-vds-dom0-stateless-0-vips + vip-227 (ocf::heartbeat:IPaddr2): Stopped + vip-228 (ocf::heartbeat:IPaddr2): Stopped + Master/Slave Set: ms-drbd-vds-dom0-stateless-0 [drbd-vds-dom0-stateless-0] + Masters: [ s01-0 ] + Slaves: [ s01-1 ] + Master/Slave Set: ms-iscsi-vds-dom0-stateless-0-vips-fw [iscsi-vds-dom0-stateless-0-vips-fw] + Slaves: [ s01-0 s01-1 ] + Clone Set: cl-dlm [dlm] + Started: [ s01-0 s01-1 ] + Master/Slave Set: ms-drbd-vds-tftpboot [drbd-vds-tftpboot] + Masters: [ s01-1 s01-0 ] + Clone Set: cl-vds-tftpboot-fs [vds-tftpboot-fs] + Stopped: [ vds-tftpboot-fs:0 vds-tftpboot-fs:1 ] + Clone Set: cl-gfs2 [gfs2] + Started: [ s01-0 s01-1 ] + Master/Slave Set: ms-drbd-vds-http [drbd-vds-http] + Masters: [ s01-1 s01-0 ] + Clone Set: cl-vds-http-fs [vds-http-fs] + Started: [ s01-1 s01-0 ] + Clone Set: cl-clvmd [clvmd] + Started: [ s01-1 s01-0 ] + Master/Slave Set: ms-drbd-s01-vm-data [drbd-s01-vm-data] + Masters: [ s01-1 s01-0 ] + Clone Set: cl-s01-vm-data-metadata-fs [s01-vm-data-metadata-fs] + Started: [ s01-1 s01-0 ] + Clone Set: cl-vg-s01-vm-data [vg-s01-vm-data] + Started: [ s01-1 s01-0 ] + mgmt-vm (ocf::vds-ok:VirtualDomain): Started s01-0 + Clone Set: cl-drbdlinks-s01-service [drbdlinks-s01-service] + Started: [ s01-1 s01-0 ] + Clone Set: cl-libvirtd [libvirtd] + Started: [ s01-1 s01-0 ] + Clone Set: cl-s01-vm-data-storage-pool [s01-vm-data-storage-pool] + Started: [ s01-1 s01-0 ] + +Transition Summary: + * Migrate mgmt-vm (Started s01-0 -> s01-1) + +Executing cluster transition: + * Resource action: mgmt-vm migrate_to on s01-0 + * Resource action: mgmt-vm migrate_from on s01-1 + * Resource action: mgmt-vm stop on s01-0 + * Pseudo action: all_stopped + * Pseudo action: mgmt-vm_start_0 + * Resource action: mgmt-vm monitor=10000 on s01-1 + +Revised cluster status: +Online: [ s01-1 s01-0 ] + + stonith-s01-0 (stonith:external/ipmi): Started s01-1 + stonith-s01-1 (stonith:external/ipmi): Started s01-0 + Resource Group: iscsi-pool-0-target-all + iscsi-pool-0-target (ocf::vds-ok:iSCSITarget): Started s01-0 + iscsi-pool-0-lun-1 (ocf::vds-ok:iSCSILogicalUnit): Started s01-0 + Resource Group: iscsi-pool-0-vips + vip-235 (ocf::heartbeat:IPaddr2): Started s01-0 + vip-236 (ocf::heartbeat:IPaddr2): Started s01-0 + Resource Group: iscsi-pool-1-target-all + iscsi-pool-1-target (ocf::vds-ok:iSCSITarget): Started s01-1 + iscsi-pool-1-lun-1 (ocf::vds-ok:iSCSILogicalUnit): Started s01-1 + Resource Group: iscsi-pool-1-vips + vip-237 (ocf::heartbeat:IPaddr2): Started s01-1 + vip-238 (ocf::heartbeat:IPaddr2): Started s01-1 + Master/Slave Set: ms-drbd-pool-0 [drbd-pool-0] + Masters: [ s01-0 ] + Slaves: [ s01-1 ] + Master/Slave Set: ms-drbd-pool-1 [drbd-pool-1] + Masters: [ s01-1 ] + Slaves: [ s01-0 ] + Master/Slave Set: ms-iscsi-pool-0-vips-fw [iscsi-pool-0-vips-fw] + Masters: [ s01-0 ] + Slaves: [ s01-1 ] + Master/Slave Set: ms-iscsi-pool-1-vips-fw [iscsi-pool-1-vips-fw] + Masters: [ s01-1 ] + Slaves: [ s01-0 ] + Clone Set: cl-o2cb [o2cb] + Stopped: [ o2cb:0 o2cb:1 ] + Master/Slave Set: ms-drbd-s01-service [drbd-s01-service] + Masters: [ s01-1 s01-0 ] + Clone Set: cl-s01-service-fs [s01-service-fs] + Started: [ s01-1 s01-0 ] + Clone Set: cl-ietd [ietd] + Started: [ s01-0 s01-1 ] + Clone Set: cl-dhcpd [dhcpd] + Stopped: [ dhcpd:0 dhcpd:1 ] + Resource Group: http-server + vip-233 (ocf::heartbeat:IPaddr2): Started s01-0 + nginx (lsb:nginx): Stopped + Master/Slave Set: ms-drbd-s01-logs [drbd-s01-logs] + Masters: [ s01-1 s01-0 ] + Clone Set: cl-s01-logs-fs [s01-logs-fs] + Started: [ s01-0 s01-1 ] + Resource Group: syslog-server + vip-234 (ocf::heartbeat:IPaddr2): Started s01-1 + syslog-ng (ocf::heartbeat:syslog-ng): Started s01-1 + Resource Group: tftp-server + vip-232 (ocf::heartbeat:IPaddr2): Stopped + tftpd (ocf::heartbeat:Xinetd): Stopped + Clone Set: cl-xinetd [xinetd] + Started: [ s01-0 s01-1 ] + Clone Set: cl-ospf-routing [ospf-routing] + Started: [ s01-0 s01-1 ] + Clone Set: connected-outer [ping-bmc-and-switch] + Started: [ s01-0 s01-1 ] + Resource Group: iscsi-vds-dom0-stateless-0-target-all + iscsi-vds-dom0-stateless-0-target (ocf::vds-ok:iSCSITarget): Stopped + iscsi-vds-dom0-stateless-0-lun-1 (ocf::vds-ok:iSCSILogicalUnit): Stopped + Resource Group: iscsi-vds-dom0-stateless-0-vips + vip-227 (ocf::heartbeat:IPaddr2): Stopped + vip-228 (ocf::heartbeat:IPaddr2): Stopped + Master/Slave Set: ms-drbd-vds-dom0-stateless-0 [drbd-vds-dom0-stateless-0] + Masters: [ s01-0 ] + Slaves: [ s01-1 ] + Master/Slave Set: ms-iscsi-vds-dom0-stateless-0-vips-fw [iscsi-vds-dom0-stateless-0-vips-fw] + Slaves: [ s01-0 s01-1 ] + Clone Set: cl-dlm [dlm] + Started: [ s01-0 s01-1 ] + Master/Slave Set: ms-drbd-vds-tftpboot [drbd-vds-tftpboot] + Masters: [ s01-1 s01-0 ] + Clone Set: cl-vds-tftpboot-fs [vds-tftpboot-fs] + Stopped: [ vds-tftpboot-fs:0 vds-tftpboot-fs:1 ] + Clone Set: cl-gfs2 [gfs2] + Started: [ s01-0 s01-1 ] + Master/Slave Set: ms-drbd-vds-http [drbd-vds-http] + Masters: [ s01-1 s01-0 ] + Clone Set: cl-vds-http-fs [vds-http-fs] + Started: [ s01-1 s01-0 ] + Clone Set: cl-clvmd [clvmd] + Started: [ s01-1 s01-0 ] + Master/Slave Set: ms-drbd-s01-vm-data [drbd-s01-vm-data] + Masters: [ s01-1 s01-0 ] + Clone Set: cl-s01-vm-data-metadata-fs [s01-vm-data-metadata-fs] + Started: [ s01-1 s01-0 ] + Clone Set: cl-vg-s01-vm-data [vg-s01-vm-data] + Started: [ s01-1 s01-0 ] + mgmt-vm (ocf::vds-ok:VirtualDomain): Started s01-1 + Clone Set: cl-drbdlinks-s01-service [drbdlinks-s01-service] + Started: [ s01-1 s01-0 ] + Clone Set: cl-libvirtd [libvirtd] + Started: [ s01-1 s01-0 ] + Clone Set: cl-s01-vm-data-storage-pool [s01-vm-data-storage-pool] + Started: [ s01-1 s01-0 ] + diff --git a/pengine/test10/coloc-group.summary b/pengine/test10/coloc-group.summary new file mode 100644 index 0000000000..07b27c5a01 --- /dev/null +++ b/pengine/test10/coloc-group.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (heartbeat:apache): Stopped + Resource Group: group1 + rsc2 (heartbeat:apache): Stopped + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node2) + * Start rsc2 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node3 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: group1_start_0 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc3 monitor on node3 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node3 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + +Revised cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (heartbeat:apache): Started node2 + Resource Group: group1 + rsc2 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Stopped + diff --git a/pengine/test10/coloc-intra-set.summary b/pengine/test10/coloc-intra-set.summary new file mode 100644 index 0000000000..4570ab2b51 --- /dev/null +++ b/pengine/test10/coloc-intra-set.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + fencing-sbd (stonith:external/sbd): Started hex-13 + dummy0 (ocf::heartbeat:Dummy): Started hex-14 + dummy1 (ocf::heartbeat:Dummy): Started hex-13 + dummy2 (ocf::heartbeat:Dummy): Started hex-14 + dummy3 (ocf::heartbeat:Dummy): Started hex-13 + +Transition Summary: + * Move dummy1 (Started hex-13 -> hex-14) + * Move dummy3 (Started hex-13 -> hex-14) + +Executing cluster transition: + * Resource action: dummy1 stop on hex-13 + * Resource action: dummy3 stop on hex-13 + * Pseudo action: all_stopped + * Resource action: dummy1 start on hex-14 + * Resource action: dummy3 start on hex-14 + * Resource action: dummy1 monitor=15000 on hex-14 + * Resource action: dummy3 monitor=15000 on hex-14 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + fencing-sbd (stonith:external/sbd): Started hex-13 + dummy0 (ocf::heartbeat:Dummy): Started hex-14 + dummy1 (ocf::heartbeat:Dummy): Started hex-14 + dummy2 (ocf::heartbeat:Dummy): Started hex-14 + dummy3 (ocf::heartbeat:Dummy): Started hex-14 + diff --git a/pengine/test10/coloc-list.summary b/pengine/test10/coloc-list.summary new file mode 100644 index 0000000000..fc1b6610a3 --- /dev/null +++ b/pengine/test10/coloc-list.summary @@ -0,0 +1,41 @@ + +Current cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Stopped + rsc5 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node2) + * Start rsc2 (node2) + * Start rsc4 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node3 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc3 monitor on node3 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node3 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Resource action: rsc5 monitor on node3 + * Resource action: rsc5 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + * Resource action: rsc4 start on node2 + +Revised cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (heartbeat:apache): Started node2 + rsc2 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Started node2 + rsc5 (heartbeat:apache): Stopped + diff --git a/pengine/test10/coloc-loop.summary b/pengine/test10/coloc-loop.summary new file mode 100644 index 0000000000..552525b335 --- /dev/null +++ b/pengine/test10/coloc-loop.summary @@ -0,0 +1,35 @@ + +Current cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + rsc3 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node1) + * Start rsc3 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node3 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node3 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node3 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node1 + * Resource action: rsc3 start on node1 + +Revised cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/coloc-many-one.summary b/pengine/test10/coloc-many-one.summary new file mode 100644 index 0000000000..4c571bf218 --- /dev/null +++ b/pengine/test10/coloc-many-one.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node2) + * Start rsc2 (node2) + * Start rsc4 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node3 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc3 monitor on node3 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node3 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + * Resource action: rsc4 start on node2 + +Revised cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (heartbeat:apache): Started node2 + rsc2 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/coloc-negative-group.summary b/pengine/test10/coloc-negative-group.summary new file mode 100644 index 0000000000..1165026ebe --- /dev/null +++ b/pengine/test10/coloc-negative-group.summary @@ -0,0 +1,23 @@ + +Current cluster status: +Online: [ lenny-a lenny-b ] + + Resource Group: grp_1 + res_Dummy_1 (ocf::heartbeat:Dummy): Started lenny-b + res_Dummy_2 (ocf::heartbeat:Dummy): Started lenny-b (unmanaged) + res_Dummy_3 (ocf::heartbeat:Dummy): Started lenny-a + +Transition Summary: + +Executing cluster transition: + * Resource action: res_Dummy_1 cancel=10000 on lenny-b + * Resource action: res_Dummy_3 cancel=10000 on lenny-a + +Revised cluster status: +Online: [ lenny-a lenny-b ] + + Resource Group: grp_1 + res_Dummy_1 (ocf::heartbeat:Dummy): Started lenny-b + res_Dummy_2 (ocf::heartbeat:Dummy): Started lenny-b (unmanaged) + res_Dummy_3 (ocf::heartbeat:Dummy): Started lenny-a + diff --git a/pengine/test10/coloc-slave-anti.summary b/pengine/test10/coloc-slave-anti.summary new file mode 100644 index 0000000000..a476fe0190 --- /dev/null +++ b/pengine/test10/coloc-slave-anti.summary @@ -0,0 +1,46 @@ + +Current cluster status: +Online: [ sirius pollux ] + + Clone Set: pingd-clone [pingd-1] + Started: [ sirius pollux ] + Master/Slave Set: drbd-msr [drbd-r0] + Masters: [ pollux ] + Slaves: [ sirius ] + Resource Group: group-1 + fs-1 (ocf::heartbeat:Filesystem): Stopped + ip-198 (ocf::heartbeat:IPaddr2): Stopped + apache (ocf::custom:apache2): Stopped + pollux-fencing (stonith:external/ipmi-soft): Started sirius + sirius-fencing (stonith:external/ipmi-soft): Started pollux + +Transition Summary: + * Start fs-1 (pollux) + * Start ip-198 (pollux) + * Start apache (pollux) + +Executing cluster transition: + * Pseudo action: group-1_start_0 + * Resource action: fs-1 start on pollux + * Resource action: ip-198 start on pollux + * Resource action: apache start on pollux + * Pseudo action: group-1_running_0 + * Resource action: fs-1 monitor=20000 on pollux + * Resource action: ip-198 monitor=30000 on pollux + * Resource action: apache monitor=60000 on pollux + +Revised cluster status: +Online: [ sirius pollux ] + + Clone Set: pingd-clone [pingd-1] + Started: [ sirius pollux ] + Master/Slave Set: drbd-msr [drbd-r0] + Masters: [ pollux ] + Slaves: [ sirius ] + Resource Group: group-1 + fs-1 (ocf::heartbeat:Filesystem): Started pollux + ip-198 (ocf::heartbeat:IPaddr2): Started pollux + apache (ocf::custom:apache2): Started pollux + pollux-fencing (stonith:external/ipmi-soft): Started sirius + sirius-fencing (stonith:external/ipmi-soft): Started pollux + diff --git a/pengine/test10/colocate-primitive-with-clone.summary b/pengine/test10/colocate-primitive-with-clone.summary new file mode 100644 index 0000000000..3b3acd72ab --- /dev/null +++ b/pengine/test10/colocate-primitive-with-clone.summary @@ -0,0 +1,125 @@ + +Current cluster status: +Online: [ srv01 srv02 srv03 srv04 ] + + Resource Group: UMgroup01 + UmVIPcheck (ocf::heartbeat:Dummy): Stopped + UmIPaddr (ocf::heartbeat:Dummy): Stopped + UmDummy01 (ocf::heartbeat:Dummy): Stopped + UmDummy02 (ocf::heartbeat:Dummy): Stopped + Resource Group: OVDBgroup02-1 + prmExPostgreSQLDB1 (ocf::heartbeat:Dummy): Started srv04 + prmFsPostgreSQLDB1-1 (ocf::heartbeat:Dummy): Started srv04 + prmFsPostgreSQLDB1-2 (ocf::heartbeat:Dummy): Started srv04 + prmFsPostgreSQLDB1-3 (ocf::heartbeat:Dummy): Started srv04 + prmIpPostgreSQLDB1 (ocf::heartbeat:Dummy): Started srv04 + prmApPostgreSQLDB1 (ocf::heartbeat:Dummy): Started srv04 + Resource Group: OVDBgroup02-2 + prmExPostgreSQLDB2 (ocf::heartbeat:Dummy): Started srv02 + prmFsPostgreSQLDB2-1 (ocf::heartbeat:Dummy): Started srv02 + prmFsPostgreSQLDB2-2 (ocf::heartbeat:Dummy): Started srv02 + prmFsPostgreSQLDB2-3 (ocf::heartbeat:Dummy): Started srv02 + prmIpPostgreSQLDB2 (ocf::heartbeat:Dummy): Started srv02 + prmApPostgreSQLDB2 (ocf::heartbeat:Dummy): Started srv02 + Resource Group: OVDBgroup02-3 + prmExPostgreSQLDB3 (ocf::heartbeat:Dummy): Started srv03 + prmFsPostgreSQLDB3-1 (ocf::heartbeat:Dummy): Started srv03 + prmFsPostgreSQLDB3-2 (ocf::heartbeat:Dummy): Started srv03 + prmFsPostgreSQLDB3-3 (ocf::heartbeat:Dummy): Started srv03 + prmIpPostgreSQLDB3 (ocf::heartbeat:Dummy): Started srv03 + prmApPostgreSQLDB3 (ocf::heartbeat:Dummy): Started srv03 + Resource Group: grpStonith1 + prmStonithN1 (stonith:external/ssh): Started srv04 + Resource Group: grpStonith2 + prmStonithN2 (stonith:external/ssh): Started srv03 + Resource Group: grpStonith3 + prmStonithN3 (stonith:external/ssh): Started srv02 + Resource Group: grpStonith4 + prmStonithN4 (stonith:external/ssh): Started srv03 + Clone Set: clnUMgroup01 [clnUmResource] + Started: [ srv04 ] + Stopped: [ clnUmResource:1 ] + Clone Set: clnPingd [clnPrmPingd] + Started: [ srv02 srv03 srv04 ] + Stopped: [ clnPrmPingd:0 ] + Clone Set: clnDiskd1 [clnPrmDiskd1] + Started: [ srv02 srv03 srv04 ] + Stopped: [ clnPrmDiskd1:0 ] + Clone Set: clnG3dummy1 [clnG3dummy01] + Started: [ srv02 srv03 srv04 ] + Stopped: [ clnG3dummy01:0 ] + Clone Set: clnG3dummy2 [clnG3dummy02] + Started: [ srv02 srv03 srv04 ] + Stopped: [ clnG3dummy02:0 ] + +Transition Summary: + * Start UmVIPcheck (srv04) + * Start UmIPaddr (srv04) + * Start UmDummy01 (srv04) + * Start UmDummy02 (srv04) + +Executing cluster transition: + * Pseudo action: UMgroup01_start_0 + * Resource action: UmVIPcheck start on srv04 + * Resource action: UmIPaddr start on srv04 + * Resource action: UmDummy01 start on srv04 + * Resource action: UmDummy02 start on srv04 + * Cluster action: do_shutdown on srv01 + * Pseudo action: UMgroup01_running_0 + * Resource action: UmIPaddr monitor=10000 on srv04 + * Resource action: UmDummy01 monitor=10000 on srv04 + * Resource action: UmDummy02 monitor=10000 on srv04 + +Revised cluster status: +Online: [ srv01 srv02 srv03 srv04 ] + + Resource Group: UMgroup01 + UmVIPcheck (ocf::heartbeat:Dummy): Started srv04 + UmIPaddr (ocf::heartbeat:Dummy): Started srv04 + UmDummy01 (ocf::heartbeat:Dummy): Started srv04 + UmDummy02 (ocf::heartbeat:Dummy): Started srv04 + Resource Group: OVDBgroup02-1 + prmExPostgreSQLDB1 (ocf::heartbeat:Dummy): Started srv04 + prmFsPostgreSQLDB1-1 (ocf::heartbeat:Dummy): Started srv04 + prmFsPostgreSQLDB1-2 (ocf::heartbeat:Dummy): Started srv04 + prmFsPostgreSQLDB1-3 (ocf::heartbeat:Dummy): Started srv04 + prmIpPostgreSQLDB1 (ocf::heartbeat:Dummy): Started srv04 + prmApPostgreSQLDB1 (ocf::heartbeat:Dummy): Started srv04 + Resource Group: OVDBgroup02-2 + prmExPostgreSQLDB2 (ocf::heartbeat:Dummy): Started srv02 + prmFsPostgreSQLDB2-1 (ocf::heartbeat:Dummy): Started srv02 + prmFsPostgreSQLDB2-2 (ocf::heartbeat:Dummy): Started srv02 + prmFsPostgreSQLDB2-3 (ocf::heartbeat:Dummy): Started srv02 + prmIpPostgreSQLDB2 (ocf::heartbeat:Dummy): Started srv02 + prmApPostgreSQLDB2 (ocf::heartbeat:Dummy): Started srv02 + Resource Group: OVDBgroup02-3 + prmExPostgreSQLDB3 (ocf::heartbeat:Dummy): Started srv03 + prmFsPostgreSQLDB3-1 (ocf::heartbeat:Dummy): Started srv03 + prmFsPostgreSQLDB3-2 (ocf::heartbeat:Dummy): Started srv03 + prmFsPostgreSQLDB3-3 (ocf::heartbeat:Dummy): Started srv03 + prmIpPostgreSQLDB3 (ocf::heartbeat:Dummy): Started srv03 + prmApPostgreSQLDB3 (ocf::heartbeat:Dummy): Started srv03 + Resource Group: grpStonith1 + prmStonithN1 (stonith:external/ssh): Started srv04 + Resource Group: grpStonith2 + prmStonithN2 (stonith:external/ssh): Started srv03 + Resource Group: grpStonith3 + prmStonithN3 (stonith:external/ssh): Started srv02 + Resource Group: grpStonith4 + prmStonithN4 (stonith:external/ssh): Started srv03 + Clone Set: clnUMgroup01 [clnUmResource] + Started: [ srv04 ] + Stopped: [ clnUmResource:1 ] + Clone Set: clnPingd [clnPrmPingd] + Started: [ srv02 srv03 srv04 ] + Stopped: [ clnPrmPingd:0 ] + Clone Set: clnDiskd1 [clnPrmDiskd1] + Started: [ srv02 srv03 srv04 ] + Stopped: [ clnPrmDiskd1:0 ] + Clone Set: clnG3dummy1 [clnG3dummy01] + Started: [ srv02 srv03 srv04 ] + Stopped: [ clnG3dummy01:0 ] + Clone Set: clnG3dummy2 [clnG3dummy02] + Started: [ srv02 srv03 srv04 ] + Stopped: [ clnG3dummy02:0 ] + diff --git a/pengine/test10/colocation_constraint_stops_master.summary b/pengine/test10/colocation_constraint_stops_master.summary new file mode 100644 index 0000000000..c052861ad6 --- /dev/null +++ b/pengine/test10/colocation_constraint_stops_master.summary @@ -0,0 +1,36 @@ + +Current cluster status: +Online: [ fc16-builder fc16-builder2 ] + + Master/Slave Set: MASTER_RSC_A [NATIVE_RSC_A] + Masters: [ fc16-builder ] + +Transition Summary: + * Demote NATIVE_RSC_A:0 (Master -> Stopped fc16-builder) + +Executing cluster transition: + * Pseudo action: MASTER_RSC_A_pre_notify_demote_0 + * Resource action: NATIVE_RSC_A:0 notify on fc16-builder + * Pseudo action: MASTER_RSC_A_confirmed-pre_notify_demote_0 + * Pseudo action: MASTER_RSC_A_demote_0 + * Resource action: NATIVE_RSC_A:0 demote on fc16-builder + * Pseudo action: MASTER_RSC_A_demoted_0 + * Pseudo action: MASTER_RSC_A_post_notify_demoted_0 + * Resource action: NATIVE_RSC_A:0 notify on fc16-builder + * Pseudo action: MASTER_RSC_A_confirmed-post_notify_demoted_0 + * Pseudo action: MASTER_RSC_A_pre_notify_stop_0 + * Resource action: NATIVE_RSC_A:0 notify on fc16-builder + * Pseudo action: MASTER_RSC_A_confirmed-pre_notify_stop_0 + * Pseudo action: MASTER_RSC_A_stop_0 + * Resource action: NATIVE_RSC_A:0 stop on fc16-builder + * Pseudo action: MASTER_RSC_A_stopped_0 + * Pseudo action: MASTER_RSC_A_post_notify_stopped_0 + * Pseudo action: MASTER_RSC_A_confirmed-post_notify_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ fc16-builder fc16-builder2 ] + + Master/Slave Set: MASTER_RSC_A [NATIVE_RSC_A] + Stopped: [ NATIVE_RSC_A:0 ] + diff --git a/pengine/test10/colocation_constraint_stops_slave.summary b/pengine/test10/colocation_constraint_stops_slave.summary new file mode 100644 index 0000000000..5528308d95 --- /dev/null +++ b/pengine/test10/colocation_constraint_stops_slave.summary @@ -0,0 +1,33 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + Master/Slave Set: MASTER_RSC_A [NATIVE_RSC_A] + Slaves: [ fc16-builder ] + NATIVE_RSC_B (ocf::pacemaker:Dummy): Started fc16-builder + +Transition Summary: + * Stop NATIVE_RSC_A:0 (fc16-builder) + * Stop NATIVE_RSC_B (fc16-builder) + +Executing cluster transition: + * Pseudo action: MASTER_RSC_A_pre_notify_stop_0 + * Resource action: NATIVE_RSC_B stop on fc16-builder + * Resource action: NATIVE_RSC_A:0 notify on fc16-builder + * Pseudo action: MASTER_RSC_A_confirmed-pre_notify_stop_0 + * Pseudo action: MASTER_RSC_A_stop_0 + * Resource action: NATIVE_RSC_A:0 stop on fc16-builder + * Pseudo action: MASTER_RSC_A_stopped_0 + * Pseudo action: MASTER_RSC_A_post_notify_stopped_0 + * Pseudo action: MASTER_RSC_A_confirmed-post_notify_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + Master/Slave Set: MASTER_RSC_A [NATIVE_RSC_A] + Stopped: [ NATIVE_RSC_A:0 ] + NATIVE_RSC_B (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/comments.summary b/pengine/test10/comments.summary new file mode 100644 index 0000000000..6361aeda18 --- /dev/null +++ b/pengine/test10/comments.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node2 node1 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node1 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node2 + +Revised cluster status: +Online: [ node2 node1 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/date-1.summary b/pengine/test10/date-1.summary new file mode 100644 index 0000000000..a78bfe26fc --- /dev/null +++ b/pengine/test10/date-1.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/date-2.summary b/pengine/test10/date-2.summary new file mode 100644 index 0000000000..53bfd45847 --- /dev/null +++ b/pengine/test10/date-2.summary @@ -0,0 +1,19 @@ + +Current cluster status: +OFFLINE: [ router1 router2 ] + + Resource Group: test + test_ip (heartbeat:IPaddr2_vlan): Stopped + test_mailto (ocf::heartbeat:MailTo): Stopped + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +OFFLINE: [ router1 router2 ] + + Resource Group: test + test_ip (heartbeat:IPaddr2_vlan): Stopped + test_mailto (ocf::heartbeat:MailTo): Stopped + diff --git a/pengine/test10/date-3.summary b/pengine/test10/date-3.summary new file mode 100644 index 0000000000..53bfd45847 --- /dev/null +++ b/pengine/test10/date-3.summary @@ -0,0 +1,19 @@ + +Current cluster status: +OFFLINE: [ router1 router2 ] + + Resource Group: test + test_ip (heartbeat:IPaddr2_vlan): Stopped + test_mailto (ocf::heartbeat:MailTo): Stopped + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +OFFLINE: [ router1 router2 ] + + Resource Group: test + test_ip (heartbeat:IPaddr2_vlan): Stopped + test_mailto (ocf::heartbeat:MailTo): Stopped + diff --git a/pengine/test10/domain.summary b/pengine/test10/domain.summary new file mode 100644 index 0000000000..3ad43a4f74 --- /dev/null +++ b/pengine/test10/domain.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ puma1 puma2 puma3 puma4 ] + + Dummy (ocf::heartbeat:Dummy): Stopped + +Transition Summary: + * Start Dummy (puma2) + +Executing cluster transition: + * Resource action: Dummy monitor on puma4 + * Resource action: Dummy monitor on puma3 + * Resource action: Dummy monitor on puma2 + * Resource action: Dummy monitor on puma1 + * Pseudo action: probe_complete + * Resource action: Dummy start on puma2 + +Revised cluster status: +Online: [ puma1 puma2 puma3 puma4 ] + + Dummy (ocf::heartbeat:Dummy): Started puma2 + diff --git a/pengine/test10/group1.summary b/pengine/test10/group1.summary new file mode 100644 index 0000000000..68b0199e34 --- /dev/null +++ b/pengine/test10/group1.summary @@ -0,0 +1,36 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Resource Group: rsc1 + child_rsc1 (heartbeat:apache): Stopped + child_rsc2 (heartbeat:apache): Stopped + child_rsc3 (heartbeat:apache): Stopped + +Transition Summary: + * Start child_rsc1 (node1) + * Start child_rsc2 (node1) + * Start child_rsc3 (node1) + +Executing cluster transition: + * Pseudo action: rsc1_start_0 + * Resource action: child_rsc1 monitor on node2 + * Resource action: child_rsc1 monitor on node1 + * Resource action: child_rsc2 monitor on node2 + * Resource action: child_rsc2 monitor on node1 + * Resource action: child_rsc3 monitor on node2 + * Resource action: child_rsc3 monitor on node1 + * Pseudo action: probe_complete + * Resource action: child_rsc1 start on node1 + * Resource action: child_rsc2 start on node1 + * Resource action: child_rsc3 start on node1 + * Pseudo action: rsc1_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Resource Group: rsc1 + child_rsc1 (heartbeat:apache): Started node1 + child_rsc2 (heartbeat:apache): Started node1 + child_rsc3 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/group10.summary b/pengine/test10/group10.summary new file mode 100644 index 0000000000..0f45f6b804 --- /dev/null +++ b/pengine/test10/group10.summary @@ -0,0 +1,68 @@ + +Current cluster status: +Online: [ c001n01 c001n02 c001n03 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n08 + Resource Group: group-1 + child_192.168.100.181 (ocf::heartbeat:IPaddr): Started c001n01 FAILED + child_192.168.100.182 (ocf::heartbeat:IPaddr): Started c001n01 + child_192.168.100.183 (ocf::heartbeat:IPaddr): Started c001n01 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n01 + child_DoFencing:1 (stonith:ssh): Started c001n02 + child_DoFencing:2 (stonith:ssh): Started c001n03 + child_DoFencing:3 (stonith:ssh): Started c001n08 + +Transition Summary: + * Recover child_192.168.100.181 (Started c001n01) + * Restart child_192.168.100.182 (Started c001n01) + * Restart child_192.168.100.183 (Started c001n01) + +Executing cluster transition: + * Pseudo action: group-1_stop_0 + * Resource action: child_DoFencing:1 monitor on c001n08 + * Resource action: child_DoFencing:1 monitor on c001n03 + * Resource action: child_DoFencing:1 monitor on c001n01 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n02 + * Resource action: child_DoFencing:2 monitor on c001n01 + * Resource action: child_DoFencing:3 monitor on c001n03 + * Resource action: child_DoFencing:3 monitor on c001n02 + * Resource action: child_DoFencing:3 monitor on c001n01 + * Pseudo action: probe_complete + * Resource action: child_192.168.100.183 stop on c001n01 + * Resource action: child_192.168.100.182 stop on c001n01 + * Resource action: child_192.168.100.181 stop on c001n01 + * Pseudo action: all_stopped + * Pseudo action: group-1_stopped_0 + * Pseudo action: group-1_start_0 + * Resource action: child_192.168.100.181 start on c001n01 + * Resource action: child_192.168.100.181 monitor=5000 on c001n01 + * Resource action: child_192.168.100.182 start on c001n01 + * Resource action: child_192.168.100.182 monitor=5000 on c001n01 + * Resource action: child_192.168.100.183 start on c001n01 + * Resource action: child_192.168.100.183 monitor=5000 on c001n01 + * Pseudo action: group-1_running_0 + +Revised cluster status: +Online: [ c001n01 c001n02 c001n03 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n08 + Resource Group: group-1 + child_192.168.100.181 (ocf::heartbeat:IPaddr): Started c001n01 + child_192.168.100.182 (ocf::heartbeat:IPaddr): Started c001n01 + child_192.168.100.183 (ocf::heartbeat:IPaddr): Started c001n01 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n01 + child_DoFencing:1 (stonith:ssh): Started c001n02 + child_DoFencing:2 (stonith:ssh): Started c001n03 + child_DoFencing:3 (stonith:ssh): Started c001n08 + diff --git a/pengine/test10/group11.summary b/pengine/test10/group11.summary new file mode 100644 index 0000000000..354152521f --- /dev/null +++ b/pengine/test10/group11.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Online: [ node1 ] + + Resource Group: group1 + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Started node1 + +Transition Summary: + * Stop rsc2 (node1) + * Stop rsc3 (node1) + +Executing cluster transition: + * Pseudo action: group1_stop_0 + * Resource action: rsc3 stop on node1 + * Resource action: rsc2 stop on node1 + * Pseudo action: all_stopped + * Pseudo action: group1_stopped_0 + * Pseudo action: group1_start_0 + +Revised cluster status: +Online: [ node1 ] + + Resource Group: group1 + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Stopped + rsc3 (heartbeat:apache): Stopped + diff --git a/pengine/test10/group13.summary b/pengine/test10/group13.summary new file mode 100644 index 0000000000..e728b2e581 --- /dev/null +++ b/pengine/test10/group13.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ jamesltc ] + + Resource Group: nfs + resource_nfs (lsb:nfs): Started jamesltc + Resource Group: fs + resource_fs (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + * Stop resource_nfs (jamesltc) + +Executing cluster transition: + * Pseudo action: nfs_stop_0 + * Resource action: resource_nfs stop on jamesltc + * Pseudo action: all_stopped + * Pseudo action: nfs_stopped_0 + +Revised cluster status: +Online: [ jamesltc ] + + Resource Group: nfs + resource_nfs (lsb:nfs): Stopped + Resource Group: fs + resource_fs (ocf::heartbeat:Filesystem): Stopped + diff --git a/pengine/test10/group14.summary b/pengine/test10/group14.summary new file mode 100644 index 0000000000..a04aa79b3a --- /dev/null +++ b/pengine/test10/group14.summary @@ -0,0 +1,101 @@ + +Current cluster status: +Online: [ c001n06 c001n07 ] +OFFLINE: [ c001n03 c001n02 c001n04 c001n05 ] + + DcIPaddr (heartbeat:IPaddr): Stopped + Resource Group: group-1 + r192.168.100.181 (ocf::heartbeat:IPaddr): Started c001n06 + r192.168.100.182 (ocf::heartbeat:IPaddr): Stopped + r192.168.100.183 (ocf::heartbeat:IPaddr): Stopped + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Stopped + migrator (ocf::heartbeat:Dummy): Stopped + rsc_c001n03 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n02 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n04 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n05 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n06 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n07 (ocf::heartbeat:IPaddr): Stopped + Clone Set: DoFencing [child_DoFencing] + Stopped: [ child_DoFencing:0 child_DoFencing:1 child_DoFencing:2 child_DoFencing:3 child_DoFencing:4 child_DoFencing:5 ] + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:1 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:2 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:3 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:4 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:5 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:6 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:7 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:8 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:9 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:10 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:11 (ocf::heartbeat:Stateful): Stopped + +Transition Summary: + * Start DcIPaddr (c001n06 - blocked) + * Move r192.168.100.181 (Started c001n06 -> c001n07) + * Start r192.168.100.182 (c001n07 - blocked) + * Start r192.168.100.183 (c001n07 - blocked) + * Start lsb_dummy (c001n06 - blocked) + * Start migrator (c001n06 - blocked) + * Start rsc_c001n03 (c001n06 - blocked) + * Start rsc_c001n02 (c001n07 - blocked) + * Start rsc_c001n04 (c001n06 - blocked) + * Start rsc_c001n05 (c001n07 - blocked) + * Start rsc_c001n06 (c001n06 - blocked) + * Start rsc_c001n07 (c001n07 - blocked) + * Start child_DoFencing:0 (c001n06) + * Start child_DoFencing:1 (c001n07) + * Start ocf_msdummy:0 (c001n06 - blocked) + * Start ocf_msdummy:1 (c001n07 - blocked) + * Start ocf_msdummy:2 (c001n06 - blocked) + * Start ocf_msdummy:3 (c001n07 - blocked) + +Executing cluster transition: + * Pseudo action: group-1_stop_0 + * Resource action: r192.168.100.181 stop on c001n06 + * Pseudo action: DoFencing_start_0 + * Pseudo action: all_stopped + * Pseudo action: group-1_stopped_0 + * Pseudo action: group-1_start_0 + * Resource action: child_DoFencing:0 start on c001n06 + * Resource action: child_DoFencing:1 start on c001n07 + * Pseudo action: DoFencing_running_0 + * Resource action: child_DoFencing:0 monitor=20000 on c001n06 + * Resource action: child_DoFencing:1 monitor=20000 on c001n07 + +Revised cluster status: +Online: [ c001n06 c001n07 ] +OFFLINE: [ c001n03 c001n02 c001n04 c001n05 ] + + DcIPaddr (heartbeat:IPaddr): Stopped + Resource Group: group-1 + r192.168.100.181 (ocf::heartbeat:IPaddr): Stopped + r192.168.100.182 (ocf::heartbeat:IPaddr): Stopped + r192.168.100.183 (ocf::heartbeat:IPaddr): Stopped + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Stopped + migrator (ocf::heartbeat:Dummy): Stopped + rsc_c001n03 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n02 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n04 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n05 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n06 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n07 (ocf::heartbeat:IPaddr): Stopped + Clone Set: DoFencing [child_DoFencing] + Started: [ c001n06 c001n07 ] + Stopped: [ child_DoFencing:2 child_DoFencing:3 child_DoFencing:4 child_DoFencing:5 ] + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:1 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:2 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:3 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:4 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:5 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:6 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:7 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:8 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:9 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:10 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:11 (ocf::heartbeat:Stateful): Stopped + diff --git a/pengine/test10/group15.summary b/pengine/test10/group15.summary new file mode 100644 index 0000000000..7e308142d6 --- /dev/null +++ b/pengine/test10/group15.summary @@ -0,0 +1,50 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Resource Group: foo + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Stopped + rsc5 (heartbeat:apache): Stopped + Resource Group: bar + rsc6 (heartbeat:apache): Stopped + rsc7 (heartbeat:apache): Stopped + rsc8 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc6 (node1) + * Start rsc7 (node1) + * Start rsc8 (node1) + +Executing cluster transition: + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Resource action: rsc5 monitor on node2 + * Resource action: rsc5 monitor on node1 + * Pseudo action: bar_start_0 + * Resource action: rsc6 monitor on node2 + * Resource action: rsc6 monitor on node1 + * Resource action: rsc7 monitor on node2 + * Resource action: rsc7 monitor on node1 + * Resource action: rsc8 monitor on node2 + * Resource action: rsc8 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc6 start on node1 + * Resource action: rsc7 start on node1 + * Resource action: rsc8 start on node1 + * Pseudo action: bar_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Resource Group: foo + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Stopped + rsc5 (heartbeat:apache): Stopped + Resource Group: bar + rsc6 (heartbeat:apache): Started node1 + rsc7 (heartbeat:apache): Started node1 + rsc8 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/group2.summary b/pengine/test10/group2.summary new file mode 100644 index 0000000000..35b9d7b993 --- /dev/null +++ b/pengine/test10/group2.summary @@ -0,0 +1,48 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + Resource Group: rsc2 + child_rsc1 (heartbeat:apache): Stopped + child_rsc2 (heartbeat:apache): Stopped + child_rsc3 (heartbeat:apache): Stopped + rsc3 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start child_rsc1 (node2) + * Start child_rsc2 (node2) + * Start child_rsc3 (node2) + * Start rsc3 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: child_rsc1 monitor on node2 + * Resource action: child_rsc1 monitor on node1 + * Resource action: child_rsc2 monitor on node2 + * Resource action: child_rsc2 monitor on node1 + * Resource action: child_rsc3 monitor on node2 + * Resource action: child_rsc3 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Pseudo action: rsc2_start_0 + * Resource action: child_rsc1 start on node2 + * Resource action: child_rsc2 start on node2 + * Resource action: child_rsc3 start on node2 + * Pseudo action: rsc2_running_0 + * Resource action: rsc3 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + Resource Group: rsc2 + child_rsc1 (heartbeat:apache): Started node2 + child_rsc2 (heartbeat:apache): Started node2 + child_rsc3 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/group3.summary b/pengine/test10/group3.summary new file mode 100644 index 0000000000..3aef7dd283 --- /dev/null +++ b/pengine/test10/group3.summary @@ -0,0 +1,58 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Resource Group: rsc1 + child_rsc1 (heartbeat:apache): Stopped + child_rsc2 (heartbeat:apache): Stopped + child_rsc3 (heartbeat:apache): Stopped + Resource Group: rsc2 + child_rsc4 (heartbeat:apache): Stopped + child_rsc5 (heartbeat:apache): Stopped + child_rsc6 (heartbeat:apache): Stopped + +Transition Summary: + * Start child_rsc1 (node1) + * Start child_rsc2 (node1) + * Start child_rsc3 (node1) + * Start child_rsc4 (node2) + * Start child_rsc5 (node2) + * Start child_rsc6 (node2) + +Executing cluster transition: + * Pseudo action: rsc1_start_0 + * Resource action: child_rsc1 monitor on node2 + * Resource action: child_rsc1 monitor on node1 + * Resource action: child_rsc2 monitor on node2 + * Resource action: child_rsc2 monitor on node1 + * Resource action: child_rsc3 monitor on node2 + * Resource action: child_rsc3 monitor on node1 + * Resource action: child_rsc4 monitor on node2 + * Resource action: child_rsc4 monitor on node1 + * Resource action: child_rsc5 monitor on node2 + * Resource action: child_rsc5 monitor on node1 + * Resource action: child_rsc6 monitor on node2 + * Resource action: child_rsc6 monitor on node1 + * Pseudo action: probe_complete + * Resource action: child_rsc1 start on node1 + * Resource action: child_rsc2 start on node1 + * Resource action: child_rsc3 start on node1 + * Pseudo action: rsc1_running_0 + * Pseudo action: rsc2_start_0 + * Resource action: child_rsc4 start on node2 + * Resource action: child_rsc5 start on node2 + * Resource action: child_rsc6 start on node2 + * Pseudo action: rsc2_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Resource Group: rsc1 + child_rsc1 (heartbeat:apache): Started node1 + child_rsc2 (heartbeat:apache): Started node1 + child_rsc3 (heartbeat:apache): Started node1 + Resource Group: rsc2 + child_rsc4 (heartbeat:apache): Started node2 + child_rsc5 (heartbeat:apache): Started node2 + child_rsc6 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/group4.summary b/pengine/test10/group4.summary new file mode 100644 index 0000000000..df37cc0cd0 --- /dev/null +++ b/pengine/test10/group4.summary @@ -0,0 +1,31 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node2 + Resource Group: rsc2 + child_rsc1 (heartbeat:apache): Started node2 + child_rsc2 (heartbeat:apache): Started node2 + child_rsc3 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Started node2 + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node1 + * Resource action: child_rsc1 monitor on node1 + * Resource action: child_rsc2 monitor on node1 + * Resource action: child_rsc3 monitor on node1 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node2 + Resource Group: rsc2 + child_rsc1 (heartbeat:apache): Started node2 + child_rsc2 (heartbeat:apache): Started node2 + child_rsc3 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/group5.summary b/pengine/test10/group5.summary new file mode 100644 index 0000000000..5d2d567e19 --- /dev/null +++ b/pengine/test10/group5.summary @@ -0,0 +1,51 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + Resource Group: rsc2 + child_rsc1 (heartbeat:apache): Started node1 + child_rsc2 (heartbeat:apache): Started node1 + child_rsc3 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Started node1 + +Transition Summary: + * Move rsc1 (Started node1 -> node2) + * Move child_rsc1 (Started node1 -> node2) + * Move child_rsc2 (Started node1 -> node2) + * Move child_rsc3 (Started node1 -> node2) + * Move rsc3 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: child_rsc1 monitor on node2 + * Resource action: child_rsc2 monitor on node2 + * Resource action: child_rsc3 monitor on node2 + * Resource action: rsc3 monitor on node2 + * Pseudo action: probe_complete + * Resource action: rsc3 stop on node1 + * Pseudo action: rsc2_stop_0 + * Resource action: child_rsc3 stop on node1 + * Resource action: child_rsc2 stop on node1 + * Resource action: child_rsc1 stop on node1 + * Pseudo action: rsc2_stopped_0 + * Resource action: rsc1 stop on node1 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node2 + * Pseudo action: rsc2_start_0 + * Resource action: child_rsc1 start on node2 + * Resource action: child_rsc2 start on node2 + * Resource action: child_rsc3 start on node2 + * Pseudo action: rsc2_running_0 + * Resource action: rsc3 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node2 + Resource Group: rsc2 + child_rsc1 (heartbeat:apache): Started node2 + child_rsc2 (heartbeat:apache): Started node2 + child_rsc3 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/group6.summary b/pengine/test10/group6.summary new file mode 100644 index 0000000000..0630138bc3 --- /dev/null +++ b/pengine/test10/group6.summary @@ -0,0 +1,63 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Resource Group: rsc1 + child_rsc1 (heartbeat:apache): Started node1 + child_rsc2 (heartbeat:apache): Started node1 + child_rsc3 (heartbeat:apache): Started node1 + Resource Group: rsc2 + child_rsc4 (heartbeat:apache): Started node1 + child_rsc5 (heartbeat:apache): Started node1 + child_rsc6 (heartbeat:apache): Started node1 + +Transition Summary: + * Move child_rsc1 (Started node1 -> node2) + * Move child_rsc2 (Started node1 -> node2) + * Move child_rsc3 (Started node1 -> node2) + * Move child_rsc4 (Started node1 -> node2) + * Move child_rsc5 (Started node1 -> node2) + * Move child_rsc6 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: child_rsc1 monitor on node2 + * Resource action: child_rsc2 monitor on node2 + * Resource action: child_rsc3 monitor on node2 + * Pseudo action: rsc2_stop_0 + * Resource action: child_rsc4 monitor on node2 + * Resource action: child_rsc5 monitor on node2 + * Resource action: child_rsc6 monitor on node2 + * Pseudo action: probe_complete + * Resource action: child_rsc6 stop on node1 + * Resource action: child_rsc5 stop on node1 + * Resource action: child_rsc4 stop on node1 + * Pseudo action: rsc2_stopped_0 + * Pseudo action: rsc1_stop_0 + * Resource action: child_rsc3 stop on node1 + * Resource action: child_rsc2 stop on node1 + * Resource action: child_rsc1 stop on node1 + * Pseudo action: all_stopped + * Pseudo action: rsc1_stopped_0 + * Pseudo action: rsc1_start_0 + * Resource action: child_rsc1 start on node2 + * Resource action: child_rsc2 start on node2 + * Resource action: child_rsc3 start on node2 + * Pseudo action: rsc1_running_0 + * Pseudo action: rsc2_start_0 + * Resource action: child_rsc4 start on node2 + * Resource action: child_rsc5 start on node2 + * Resource action: child_rsc6 start on node2 + * Pseudo action: rsc2_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Resource Group: rsc1 + child_rsc1 (heartbeat:apache): Started node2 + child_rsc2 (heartbeat:apache): Started node2 + child_rsc3 (heartbeat:apache): Started node2 + Resource Group: rsc2 + child_rsc4 (heartbeat:apache): Started node2 + child_rsc5 (heartbeat:apache): Started node2 + child_rsc6 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/group7.summary b/pengine/test10/group7.summary new file mode 100644 index 0000000000..13f1a00d0b --- /dev/null +++ b/pengine/test10/group7.summary @@ -0,0 +1,71 @@ + +Current cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (heartbeat:apache): Stopped + Resource Group: rsc2 + child_rsc1 (heartbeat:apache): Stopped + child_rsc2 (heartbeat:apache): Stopped + child_rsc3 (heartbeat:apache): Stopped + Resource Group: rsc3 + child_rsc4 (heartbeat:apache): Stopped + child_rsc5 (heartbeat:apache): Stopped + child_rsc6 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start child_rsc1 (node2) + * Start child_rsc2 (node2) + * Start child_rsc3 (node2) + * Start child_rsc4 (node2) + * Start child_rsc5 (node2) + * Start child_rsc6 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node3 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: rsc2_start_0 + * Resource action: child_rsc1 monitor on node3 + * Resource action: child_rsc1 monitor on node2 + * Resource action: child_rsc1 monitor on node1 + * Resource action: child_rsc2 monitor on node3 + * Resource action: child_rsc2 monitor on node2 + * Resource action: child_rsc2 monitor on node1 + * Resource action: child_rsc3 monitor on node3 + * Resource action: child_rsc3 monitor on node2 + * Resource action: child_rsc3 monitor on node1 + * Resource action: child_rsc4 monitor on node3 + * Resource action: child_rsc4 monitor on node2 + * Resource action: child_rsc4 monitor on node1 + * Resource action: child_rsc5 monitor on node3 + * Resource action: child_rsc5 monitor on node2 + * Resource action: child_rsc5 monitor on node1 + * Resource action: child_rsc6 monitor on node3 + * Resource action: child_rsc6 monitor on node2 + * Resource action: child_rsc6 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Resource action: child_rsc1 start on node2 + * Resource action: child_rsc2 start on node2 + * Resource action: child_rsc3 start on node2 + * Pseudo action: rsc2_running_0 + * Pseudo action: rsc3_start_0 + * Resource action: child_rsc4 start on node2 + * Resource action: child_rsc5 start on node2 + * Resource action: child_rsc6 start on node2 + * Pseudo action: rsc3_running_0 + +Revised cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (heartbeat:apache): Started node1 + Resource Group: rsc2 + child_rsc1 (heartbeat:apache): Started node2 + child_rsc2 (heartbeat:apache): Started node2 + child_rsc3 (heartbeat:apache): Started node2 + Resource Group: rsc3 + child_rsc4 (heartbeat:apache): Started node2 + child_rsc5 (heartbeat:apache): Started node2 + child_rsc6 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/group8.summary b/pengine/test10/group8.summary new file mode 100644 index 0000000000..94b547f561 --- /dev/null +++ b/pengine/test10/group8.summary @@ -0,0 +1,51 @@ + +Current cluster status: +Online: [ node1 ] +OFFLINE: [ node2 node3 ] + + rsc1 (heartbeat:apache): Stopped + Resource Group: rsc2 + child_rsc1 (heartbeat:apache): Stopped + child_rsc2 (heartbeat:apache): Stopped + child_rsc3 (heartbeat:apache): Stopped + Resource Group: rsc3 + child_rsc4 (heartbeat:apache): Stopped + child_rsc5 (heartbeat:apache): Stopped + child_rsc6 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start child_rsc1 (node1) + * Start child_rsc2 (node1) + * Start child_rsc3 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node1 + * Pseudo action: rsc2_start_0 + * Resource action: child_rsc1 monitor on node1 + * Resource action: child_rsc2 monitor on node1 + * Resource action: child_rsc3 monitor on node1 + * Resource action: child_rsc4 monitor on node1 + * Resource action: child_rsc5 monitor on node1 + * Resource action: child_rsc6 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Resource action: child_rsc1 start on node1 + * Resource action: child_rsc2 start on node1 + * Resource action: child_rsc3 start on node1 + * Pseudo action: rsc2_running_0 + +Revised cluster status: +Online: [ node1 ] +OFFLINE: [ node2 node3 ] + + rsc1 (heartbeat:apache): Started node1 + Resource Group: rsc2 + child_rsc1 (heartbeat:apache): Started node1 + child_rsc2 (heartbeat:apache): Started node1 + child_rsc3 (heartbeat:apache): Started node1 + Resource Group: rsc3 + child_rsc4 (heartbeat:apache): Stopped + child_rsc5 (heartbeat:apache): Stopped + child_rsc6 (heartbeat:apache): Stopped + diff --git a/pengine/test10/group9.summary b/pengine/test10/group9.summary new file mode 100644 index 0000000000..d40a580cac --- /dev/null +++ b/pengine/test10/group9.summary @@ -0,0 +1,66 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + Resource Group: foo + rsc3 (heartbeat:apache): Started node1 + rsc4 (heartbeat:apache): Started node1 FAILED + rsc5 (heartbeat:apache): Started node1 + Resource Group: bar + rsc6 (heartbeat:apache): Started node1 + rsc7 (heartbeat:apache): Started node1 FAILED + rsc8 (heartbeat:apache): Started node1 + +Transition Summary: + * Recover rsc4 (Started node1) + * Restart rsc5 (Started node1) + * Move rsc6 (Started node1 -> node2) + * Move rsc7 (Started node1 -> node2) + * Move rsc8 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Pseudo action: foo_stop_0 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc5 monitor on node2 + * Pseudo action: bar_stop_0 + * Resource action: rsc6 monitor on node2 + * Resource action: rsc7 monitor on node2 + * Resource action: rsc8 monitor on node2 + * Pseudo action: probe_complete + * Resource action: rsc5 stop on node1 + * Resource action: rsc8 stop on node1 + * Resource action: rsc4 stop on node1 + * Resource action: rsc7 stop on node1 + * Pseudo action: foo_stopped_0 + * Pseudo action: foo_start_0 + * Resource action: rsc4 start on node1 + * Resource action: rsc5 start on node1 + * Resource action: rsc6 stop on node1 + * Pseudo action: all_stopped + * Pseudo action: foo_running_0 + * Pseudo action: bar_stopped_0 + * Pseudo action: bar_start_0 + * Resource action: rsc6 start on node2 + * Resource action: rsc7 start on node2 + * Resource action: rsc8 start on node2 + * Pseudo action: bar_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + Resource Group: foo + rsc3 (heartbeat:apache): Started node1 + rsc4 (heartbeat:apache): Started node1 + rsc5 (heartbeat:apache): Started node1 + Resource Group: bar + rsc6 (heartbeat:apache): Started node2 + rsc7 (heartbeat:apache): Started node2 + rsc8 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/history-1.summary b/pengine/test10/history-1.summary new file mode 100644 index 0000000000..f5aadd2c4f --- /dev/null +++ b/pengine/test10/history-1.summary @@ -0,0 +1,53 @@ + +Current cluster status: +Online: [ pcmk-1 pcmk-2 pcmk-3 ] +OFFLINE: [ pcmk-4 ] + + Clone Set: Fencing [FencingChild] + Started: [ pcmk-1 pcmk-2 pcmk-3 ] + Stopped: [ FencingChild:3 ] + Resource Group: group-1 + r192.168.101.181 (ocf::heartbeat:IPaddr): Stopped + r192.168.101.182 (ocf::heartbeat:IPaddr): Stopped + r192.168.101.183 (ocf::heartbeat:IPaddr): Stopped + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-3 + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Stopped + migrator (ocf::pacemaker:Dummy): Started pcmk-1 + Clone Set: Connectivity [ping-1] + Started: [ pcmk-2 pcmk-1 pcmk-3 ] + Stopped: [ ping-1:3 ] + Master/Slave Set: master-1 [stateful-1] + Slaves: [ pcmk-1 pcmk-2 pcmk-3 ] + Stopped: [ stateful-1:3 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ pcmk-1 pcmk-2 pcmk-3 ] +OFFLINE: [ pcmk-4 ] + + Clone Set: Fencing [FencingChild] + Started: [ pcmk-1 pcmk-2 pcmk-3 ] + Stopped: [ FencingChild:3 ] + Resource Group: group-1 + r192.168.101.181 (ocf::heartbeat:IPaddr): Stopped + r192.168.101.182 (ocf::heartbeat:IPaddr): Stopped + r192.168.101.183 (ocf::heartbeat:IPaddr): Stopped + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-3 + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Stopped + migrator (ocf::pacemaker:Dummy): Started pcmk-1 + Clone Set: Connectivity [ping-1] + Started: [ pcmk-2 pcmk-1 pcmk-3 ] + Stopped: [ ping-1:3 ] + Master/Slave Set: master-1 [stateful-1] + Slaves: [ pcmk-1 pcmk-2 pcmk-3 ] + Stopped: [ stateful-1:3 ] + diff --git a/pengine/test10/honor_stonith_rsc_order1.summary b/pengine/test10/honor_stonith_rsc_order1.summary new file mode 100644 index 0000000000..c9b0f57376 --- /dev/null +++ b/pengine/test10/honor_stonith_rsc_order1.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Online: [ fc16-builder ] + + Clone Set: S_CLONE [S_A] + Stopped: [ S_A:0 ] + Resource Group: S_GROUP + S_B (stonith:fence_xvm): Stopped + A (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start S_A:0 (fc16-builder) + * Start S_B (fc16-builder) + * Start A (fc16-builder) + +Executing cluster transition: + * Resource action: S_A:0 monitor on fc16-builder + * Pseudo action: S_GROUP_start_0 + * Resource action: S_B monitor on fc16-builder + * Resource action: A monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: S_B start on fc16-builder + * Resource action: A start on fc16-builder + * Pseudo action: S_GROUP_running_0 + * Pseudo action: S_CLONE_start_0 + * Resource action: S_A:0 start on fc16-builder + * Pseudo action: S_CLONE_running_0 + +Revised cluster status: +Online: [ fc16-builder ] + + Clone Set: S_CLONE [S_A] + Started: [ fc16-builder ] + Resource Group: S_GROUP + S_B (stonith:fence_xvm): Started fc16-builder + A (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/honor_stonith_rsc_order2.summary b/pengine/test10/honor_stonith_rsc_order2.summary new file mode 100644 index 0000000000..3ff043d4b5 --- /dev/null +++ b/pengine/test10/honor_stonith_rsc_order2.summary @@ -0,0 +1,47 @@ + +Current cluster status: +Online: [ fc16-builder ] + + Clone Set: S_CLONE [S_A] + Stopped: [ S_A:0 ] + Resource Group: S_GROUP + S_B (stonith:fence_xvm): Stopped + S_C (stonith:fence_xvm): Stopped + S_D (stonith:fence_xvm): Stopped + A (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start S_A:0 (fc16-builder) + * Start S_B (fc16-builder) + * Start S_C (fc16-builder) + * Start S_D (fc16-builder) + * Start A (fc16-builder) + +Executing cluster transition: + * Resource action: S_A:0 monitor on fc16-builder + * Pseudo action: S_GROUP_start_0 + * Resource action: S_B monitor on fc16-builder + * Resource action: S_C monitor on fc16-builder + * Resource action: S_D monitor on fc16-builder + * Resource action: A monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: S_B start on fc16-builder + * Resource action: S_C start on fc16-builder + * Resource action: S_D start on fc16-builder + * Resource action: A start on fc16-builder + * Pseudo action: S_GROUP_running_0 + * Pseudo action: S_CLONE_start_0 + * Resource action: S_A:0 start on fc16-builder + * Pseudo action: S_CLONE_running_0 + +Revised cluster status: +Online: [ fc16-builder ] + + Clone Set: S_CLONE [S_A] + Started: [ fc16-builder ] + Resource Group: S_GROUP + S_B (stonith:fence_xvm): Started fc16-builder + S_C (stonith:fence_xvm): Started fc16-builder + S_D (stonith:fence_xvm): Started fc16-builder + A (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/honor_stonith_rsc_order3.summary b/pengine/test10/honor_stonith_rsc_order3.summary new file mode 100644 index 0000000000..14a37d6fdc --- /dev/null +++ b/pengine/test10/honor_stonith_rsc_order3.summary @@ -0,0 +1,45 @@ + +Current cluster status: +Online: [ fc16-builder ] + + Clone Set: S_CLONE [S_A] + Stopped: [ S_A:0 ] + Clone Set: S_CLONE2 [S_GROUP] + Stopped: [ S_GROUP:0 ] + A (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start S_A:0 (fc16-builder) + * Start S_B:0 (fc16-builder) + * Start S_C:0 (fc16-builder) + * Start S_D:0 (fc16-builder) + * Start A (fc16-builder) + +Executing cluster transition: + * Resource action: S_A:0 monitor on fc16-builder + * Resource action: S_B:0 monitor on fc16-builder + * Resource action: S_C:0 monitor on fc16-builder + * Resource action: S_D:0 monitor on fc16-builder + * Pseudo action: S_CLONE2_start_0 + * Resource action: A monitor on fc16-builder + * Pseudo action: probe_complete + * Pseudo action: S_GROUP:0_start_0 + * Resource action: S_B:0 start on fc16-builder + * Resource action: S_C:0 start on fc16-builder + * Resource action: S_D:0 start on fc16-builder + * Resource action: A start on fc16-builder + * Pseudo action: S_GROUP:0_running_0 + * Pseudo action: S_CLONE2_running_0 + * Pseudo action: S_CLONE_start_0 + * Resource action: S_A:0 start on fc16-builder + * Pseudo action: S_CLONE_running_0 + +Revised cluster status: +Online: [ fc16-builder ] + + Clone Set: S_CLONE [S_A] + Started: [ fc16-builder ] + Clone Set: S_CLONE2 [S_GROUP] + Started: [ fc16-builder ] + A (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/honor_stonith_rsc_order4.summary b/pengine/test10/honor_stonith_rsc_order4.summary new file mode 100644 index 0000000000..00792deed2 --- /dev/null +++ b/pengine/test10/honor_stonith_rsc_order4.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Online: [ fc16-builder ] + + S_A (stonith:fence_xvm): Stopped + S_B (stonith:fence_xvm): Stopped + A (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start S_A (fc16-builder) + * Start S_B (fc16-builder) + * Start A (fc16-builder) + +Executing cluster transition: + * Resource action: S_A monitor on fc16-builder + * Resource action: S_B monitor on fc16-builder + * Resource action: A monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: S_B start on fc16-builder + * Resource action: A start on fc16-builder + * Resource action: S_A start on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] + + S_A (stonith:fence_xvm): Started fc16-builder + S_B (stonith:fence_xvm): Started fc16-builder + A (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/ignore_stonith_rsc_order1.summary b/pengine/test10/ignore_stonith_rsc_order1.summary new file mode 100644 index 0000000000..b9cad15cbc --- /dev/null +++ b/pengine/test10/ignore_stonith_rsc_order1.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ fc16-builder ] + + S_A (stonith:fence_xvm): Stopped + A (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start S_A (fc16-builder) + * Start A (fc16-builder) + +Executing cluster transition: + * Resource action: S_A monitor on fc16-builder + * Resource action: A monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: S_A start on fc16-builder + * Resource action: A start on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] + + S_A (stonith:fence_xvm): Started fc16-builder + A (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/ignore_stonith_rsc_order2.summary b/pengine/test10/ignore_stonith_rsc_order2.summary new file mode 100644 index 0000000000..c0c6d40e8b --- /dev/null +++ b/pengine/test10/ignore_stonith_rsc_order2.summary @@ -0,0 +1,31 @@ + +Current cluster status: +Online: [ fc16-builder ] + + S_A (stonith:fence_xvm): Stopped + Resource Group: MIXED_GROUP + A (ocf::pacemaker:Dummy): Stopped + S_B (stonith:fence_xvm): Stopped + +Transition Summary: + * Start S_A (fc16-builder) + * Start A (fc16-builder) + * Start S_B (fc16-builder) + +Executing cluster transition: + * Resource action: S_A monitor on fc16-builder + * Resource action: A monitor on fc16-builder + * Resource action: S_B monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: S_A start on fc16-builder + * Resource action: A start on fc16-builder + * Resource action: S_B start on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] + + S_A (stonith:fence_xvm): Started fc16-builder + Resource Group: MIXED_GROUP + A (ocf::pacemaker:Dummy): Started fc16-builder + S_B (stonith:fence_xvm): Started fc16-builder + diff --git a/pengine/test10/ignore_stonith_rsc_order3.summary b/pengine/test10/ignore_stonith_rsc_order3.summary new file mode 100644 index 0000000000..b671f291d5 --- /dev/null +++ b/pengine/test10/ignore_stonith_rsc_order3.summary @@ -0,0 +1,35 @@ + +Current cluster status: +Online: [ fc16-builder ] + + Clone Set: S_CLONE [S_A] + Stopped: [ S_A:0 ] + Resource Group: MIXED_GROUP + A (ocf::pacemaker:Dummy): Stopped + S_B (stonith:fence_xvm): Stopped + +Transition Summary: + * Start S_A:0 (fc16-builder) + * Start A (fc16-builder) + * Start S_B (fc16-builder) + +Executing cluster transition: + * Resource action: S_A:0 monitor on fc16-builder + * Pseudo action: S_CLONE_start_0 + * Resource action: A monitor on fc16-builder + * Resource action: S_B monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: S_A:0 start on fc16-builder + * Pseudo action: S_CLONE_running_0 + * Resource action: A start on fc16-builder + * Resource action: S_B start on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] + + Clone Set: S_CLONE [S_A] + Started: [ fc16-builder ] + Resource Group: MIXED_GROUP + A (ocf::pacemaker:Dummy): Started fc16-builder + S_B (stonith:fence_xvm): Started fc16-builder + diff --git a/pengine/test10/ignore_stonith_rsc_order4.summary b/pengine/test10/ignore_stonith_rsc_order4.summary new file mode 100644 index 0000000000..fb0fa546f9 --- /dev/null +++ b/pengine/test10/ignore_stonith_rsc_order4.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Online: [ fc16-builder ] + + Clone Set: S_CLONE [S_A] + Stopped: [ S_A:0 ] + Clone Set: S_CLONE2 [MIXED_GROUP] + Stopped: [ MIXED_GROUP:0 ] + +Transition Summary: + * Start S_A:0 (fc16-builder) + * Start A:0 (fc16-builder) + * Start S_B:0 (fc16-builder) + +Executing cluster transition: + * Resource action: S_A:0 monitor on fc16-builder + * Pseudo action: S_CLONE_start_0 + * Pseudo action: MIXED_GROUP:0_running_0 + * Pseudo action: MIXED_GROUP:0_start_0 + * Resource action: A:0 monitor on fc16-builder + * Resource action: S_B:0 monitor on fc16-builder + * Pseudo action: S_CLONE2_running_0 + * Pseudo action: S_CLONE2_start_0 + * Pseudo action: probe_complete + * Resource action: S_A:0 start on fc16-builder + * Pseudo action: S_CLONE_running_0 + * Resource action: A:0 start on fc16-builder + * Resource action: S_B:0 start on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] + + Clone Set: S_CLONE [S_A] + Started: [ fc16-builder ] + Clone Set: S_CLONE2 [MIXED_GROUP] + Started: [ fc16-builder ] + diff --git a/pengine/test10/inc0.summary b/pengine/test10/inc0.summary new file mode 100644 index 0000000000..2db9a7f0f5 --- /dev/null +++ b/pengine/test10/inc0.summary @@ -0,0 +1,46 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Stopped + child_rsc1:1 (heartbeat:apache): Stopped + child_rsc1:2 (heartbeat:apache): Stopped + child_rsc1:3 (heartbeat:apache): Stopped + child_rsc1:4 (heartbeat:apache): Stopped + +Transition Summary: + * Start child_rsc1:0 (node1) + * Start child_rsc1:1 (node2) + * Start child_rsc1:2 (node1) + * Start child_rsc1:3 (node2) + +Executing cluster transition: + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:0 monitor on node1 + * Resource action: child_rsc1:1 monitor on node2 + * Resource action: child_rsc1:1 monitor on node1 + * Resource action: child_rsc1:2 monitor on node2 + * Resource action: child_rsc1:2 monitor on node1 + * Resource action: child_rsc1:3 monitor on node2 + * Resource action: child_rsc1:3 monitor on node1 + * Resource action: child_rsc1:4 monitor on node2 + * Resource action: child_rsc1:4 monitor on node1 + * Pseudo action: rsc1_start_0 + * Pseudo action: probe_complete + * Resource action: child_rsc1:0 start on node1 + * Resource action: child_rsc1:1 start on node2 + * Resource action: child_rsc1:2 start on node1 + * Resource action: child_rsc1:3 start on node2 + * Pseudo action: rsc1_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node2 + child_rsc1:2 (heartbeat:apache): Started node1 + child_rsc1:3 (heartbeat:apache): Started node2 + child_rsc1:4 (heartbeat:apache): Stopped + diff --git a/pengine/test10/inc1.summary b/pengine/test10/inc1.summary new file mode 100644 index 0000000000..df3be29322 --- /dev/null +++ b/pengine/test10/inc1.summary @@ -0,0 +1,58 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Stopped + child_rsc2:1 (heartbeat:apache): Stopped + child_rsc2:2 (heartbeat:apache): Stopped + child_rsc2:3 (heartbeat:apache): Stopped + child_rsc2:4 (heartbeat:apache): Stopped + rsc3 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start child_rsc2:0 (node2) + * Start child_rsc2:1 (node1) + * Start child_rsc2:2 (node2) + * Start child_rsc2:3 (node1) + * Start rsc3 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: child_rsc2:0 monitor on node2 + * Resource action: child_rsc2:0 monitor on node1 + * Resource action: child_rsc2:1 monitor on node2 + * Resource action: child_rsc2:1 monitor on node1 + * Resource action: child_rsc2:2 monitor on node2 + * Resource action: child_rsc2:2 monitor on node1 + * Resource action: child_rsc2:3 monitor on node2 + * Resource action: child_rsc2:3 monitor on node1 + * Resource action: child_rsc2:4 monitor on node2 + * Resource action: child_rsc2:4 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Pseudo action: rsc2_start_0 + * Resource action: child_rsc2:0 start on node2 + * Resource action: child_rsc2:1 start on node1 + * Resource action: child_rsc2:2 start on node2 + * Resource action: child_rsc2:3 start on node1 + * Pseudo action: rsc2_running_0 + * Resource action: rsc3 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node2 + child_rsc2:1 (heartbeat:apache): Started node1 + child_rsc2:2 (heartbeat:apache): Started node2 + child_rsc2:3 (heartbeat:apache): Started node1 + child_rsc2:4 (heartbeat:apache): Stopped + rsc3 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/inc10.summary b/pengine/test10/inc10.summary new file mode 100644 index 0000000000..cab46d983a --- /dev/null +++ b/pengine/test10/inc10.summary @@ -0,0 +1,45 @@ + +Current cluster status: +Node xen-2 (e3aa8547-3d52-47df-a8a3-ca94538a5282): standby +Online: [ xen-4 xen-3 xen-1 ] + + Clone Set: DoFencing [child_DoFencing] + Started: [ xen-4 xen-3 xen-2 xen-1 ] + Clone Set: ocfs2-clone [ocfs2] + Started: [ xen-4 xen-3 xen-2 xen-1 ] + +Transition Summary: + * Stop child_DoFencing:2 (xen-2) + * Stop ocfs2:2 (xen-2) + +Executing cluster transition: + * Pseudo action: DoFencing_stop_0 + * Pseudo action: ocfs2-clone_pre_notify_stop_0 + * Resource action: ocfs2:0 notify on xen-4 + * Resource action: ocfs2:1 notify on xen-3 + * Resource action: ocfs2:1 notify on xen-2 + * Resource action: ocfs2:3 notify on xen-1 + * Pseudo action: ocfs2-clone_confirmed-pre_notify_stop_0 + * Pseudo action: ocfs2-clone_stop_0 + * Resource action: ocfs2:1 stop on xen-2 + * Pseudo action: ocfs2-clone_stopped_0 + * Pseudo action: ocfs2-clone_post_notify_stopped_0 + * Resource action: ocfs2:0 notify on xen-4 + * Resource action: ocfs2:1 notify on xen-3 + * Resource action: ocfs2:3 notify on xen-1 + * Pseudo action: ocfs2-clone_confirmed-post_notify_stopped_0 + * Pseudo action: all_stopped + * Resource action: child_DoFencing:2 stop on xen-2 + * Pseudo action: DoFencing_stopped_0 + +Revised cluster status: +Node xen-2 (e3aa8547-3d52-47df-a8a3-ca94538a5282): standby +Online: [ xen-4 xen-3 xen-1 ] + + Clone Set: DoFencing [child_DoFencing] + Started: [ xen-4 xen-3 xen-1 ] + Stopped: [ child_DoFencing:2 ] + Clone Set: ocfs2-clone [ocfs2] + Started: [ xen-4 xen-3 xen-1 ] + Stopped: [ ocfs2:2 ] + diff --git a/pengine/test10/inc11.summary b/pengine/test10/inc11.summary new file mode 100644 index 0000000000..33c9622bcf --- /dev/null +++ b/pengine/test10/inc11.summary @@ -0,0 +1,43 @@ + +Current cluster status: +Online: [ node0 node1 node2 ] + + simple-rsc (heartbeat:apache): Stopped + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Stopped + child_rsc1:1 (heartbeat:apache): Stopped + +Transition Summary: + * Start simple-rsc (node2) + * Start child_rsc1:0 (node1) + * Start child_rsc1:1 (node2) + * Promote child_rsc1:1 (Stopped -> Master node2) + +Executing cluster transition: + * Resource action: simple-rsc monitor on node2 + * Resource action: simple-rsc monitor on node1 + * Resource action: simple-rsc monitor on node0 + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:0 monitor on node1 + * Resource action: child_rsc1:0 monitor on node0 + * Resource action: child_rsc1:1 monitor on node2 + * Resource action: child_rsc1:1 monitor on node1 + * Resource action: child_rsc1:1 monitor on node0 + * Pseudo action: rsc1_start_0 + * Pseudo action: probe_complete + * Resource action: simple-rsc start on node2 + * Resource action: child_rsc1:0 start on node1 + * Resource action: child_rsc1:1 start on node2 + * Pseudo action: rsc1_running_0 + * Pseudo action: rsc1_promote_0 + * Resource action: child_rsc1:1 promote on node2 + * Pseudo action: rsc1_promoted_0 + +Revised cluster status: +Online: [ node0 node1 node2 ] + + simple-rsc (heartbeat:apache): Started node2 + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Master node2 + diff --git a/pengine/test10/inc12.summary b/pengine/test10/inc12.summary new file mode 100644 index 0000000000..6e84a8afac --- /dev/null +++ b/pengine/test10/inc12.summary @@ -0,0 +1,131 @@ + +Current cluster status: +Online: [ c001n03 c001n02 c001n04 c001n05 c001n06 c001n07 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Stopped + Resource Group: group-1 + ocf_192.168.100.181 (ocf::heartbeat:IPaddr): Started c001n02 + heartbeat_192.168.100.182 (heartbeat:IPaddr): Started c001n02 + ocf_192.168.100.183 (ocf::heartbeat:IPaddr): Started c001n02 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n04 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n05 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 + Clone Set: DoFencing [child_DoFencing] + Started: [ c001n02 c001n04 c001n05 c001n06 c001n07 ] + Stopped: [ child_DoFencing:0 ] + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:1 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:2 (ocf::heartbeat:Stateful): Started c001n04 + ocf_msdummy:3 (ocf::heartbeat:Stateful): Started c001n04 + ocf_msdummy:4 (ocf::heartbeat:Stateful): Started c001n05 + ocf_msdummy:5 (ocf::heartbeat:Stateful): Started c001n05 + ocf_msdummy:6 (ocf::heartbeat:Stateful): Started c001n06 + ocf_msdummy:7 (ocf::heartbeat:Stateful): Started c001n06 + ocf_msdummy:8 (ocf::heartbeat:Stateful): Started c001n07 + ocf_msdummy:9 (ocf::heartbeat:Stateful): Started c001n07 + ocf_msdummy:10 (ocf::heartbeat:Stateful): Started c001n02 + ocf_msdummy:11 (ocf::heartbeat:Stateful): Started c001n02 + +Transition Summary: + * Stop ocf_192.168.100.181 (c001n02) + * Stop heartbeat_192.168.100.182 (c001n02) + * Stop ocf_192.168.100.183 (c001n02) + * Stop lsb_dummy (c001n04) + * Stop rsc_c001n03 (c001n05) + * Stop rsc_c001n02 (c001n02) + * Stop rsc_c001n04 (c001n04) + * Stop rsc_c001n05 (c001n05) + * Stop rsc_c001n06 (c001n06) + * Stop rsc_c001n07 (c001n07) + * Stop child_DoFencing:1 (c001n02) + * Stop child_DoFencing:2 (c001n04) + * Stop child_DoFencing:3 (c001n05) + * Stop child_DoFencing:4 (c001n06) + * Stop child_DoFencing:5 (c001n07) + * Stop ocf_msdummy:10 (c001n02) + * Stop ocf_msdummy:11 (c001n02) + * Stop ocf_msdummy:2 (c001n04) + * Stop ocf_msdummy:3 (c001n04) + * Stop ocf_msdummy:4 (c001n05) + * Stop ocf_msdummy:5 (c001n05) + * Stop ocf_msdummy:6 (c001n06) + * Stop ocf_msdummy:7 (c001n06) + * Stop ocf_msdummy:8 (c001n07) + * Stop ocf_msdummy:9 (c001n07) + +Executing cluster transition: + * Pseudo action: group-1_stop_0 + * Resource action: ocf_192.168.100.183 stop on c001n02 + * Resource action: lsb_dummy stop on c001n04 + * Resource action: rsc_c001n03 stop on c001n05 + * Resource action: rsc_c001n02 stop on c001n02 + * Resource action: rsc_c001n04 stop on c001n04 + * Resource action: rsc_c001n05 stop on c001n05 + * Resource action: rsc_c001n06 stop on c001n06 + * Resource action: rsc_c001n07 stop on c001n07 + * Pseudo action: DoFencing_stop_0 + * Pseudo action: master_rsc_1_stop_0 + * Resource action: heartbeat_192.168.100.182 stop on c001n02 + * Resource action: ocf_msdummy:10 stop on c001n02 + * Resource action: ocf_msdummy:11 stop on c001n02 + * Resource action: ocf_msdummy:2 stop on c001n04 + * Resource action: ocf_msdummy:3 stop on c001n04 + * Resource action: ocf_msdummy:4 stop on c001n05 + * Resource action: ocf_msdummy:5 stop on c001n05 + * Resource action: ocf_msdummy:6 stop on c001n06 + * Resource action: ocf_msdummy:7 stop on c001n06 + * Resource action: ocf_msdummy:8 stop on c001n07 + * Resource action: ocf_msdummy:9 stop on c001n07 + * Pseudo action: master_rsc_1_stopped_0 + * Resource action: ocf_192.168.100.181 stop on c001n02 + * Pseudo action: all_stopped + * Pseudo action: group-1_stopped_0 + * Resource action: child_DoFencing:1 stop on c001n02 + * Resource action: child_DoFencing:2 stop on c001n04 + * Resource action: child_DoFencing:3 stop on c001n05 + * Resource action: child_DoFencing:4 stop on c001n06 + * Resource action: child_DoFencing:5 stop on c001n07 + * Pseudo action: DoFencing_stopped_0 + * Cluster action: do_shutdown on c001n07 + * Cluster action: do_shutdown on c001n06 + * Cluster action: do_shutdown on c001n05 + * Cluster action: do_shutdown on c001n04 + * Cluster action: do_shutdown on c001n02 + * Cluster action: do_shutdown on c001n03 + +Revised cluster status: +Online: [ c001n03 c001n02 c001n04 c001n05 c001n06 c001n07 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Stopped + Resource Group: group-1 + ocf_192.168.100.181 (ocf::heartbeat:IPaddr): Stopped + heartbeat_192.168.100.182 (heartbeat:IPaddr): Stopped + ocf_192.168.100.183 (ocf::heartbeat:IPaddr): Stopped + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Stopped + rsc_c001n03 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n02 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n04 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n05 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n06 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n07 (ocf::heartbeat:IPaddr): Stopped + Clone Set: DoFencing [child_DoFencing] + Stopped: [ child_DoFencing:0 child_DoFencing:1 child_DoFencing:2 child_DoFencing:3 child_DoFencing:4 child_DoFencing:5 ] + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:1 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:2 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:3 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:4 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:5 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:6 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:7 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:8 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:9 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:10 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:11 (ocf::heartbeat:Stateful): Stopped + diff --git a/pengine/test10/inc2.summary b/pengine/test10/inc2.summary new file mode 100644 index 0000000000..3ae9873d66 --- /dev/null +++ b/pengine/test10/inc2.summary @@ -0,0 +1,44 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node1 + child_rsc1:2 (heartbeat:apache): Started node1 + child_rsc1:3 (heartbeat:apache): Started node1 + child_rsc1:4 (heartbeat:apache): Started node1 + +Transition Summary: + * Move child_rsc1:2 (Started node1 -> node2) + * Move child_rsc1:3 (Started node1 -> node2) + * Stop child_rsc1:4 (node1) + +Executing cluster transition: + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:1 monitor on node2 + * Resource action: child_rsc1:2 monitor on node2 + * Resource action: child_rsc1:3 monitor on node2 + * Resource action: child_rsc1:4 monitor on node2 + * Pseudo action: rsc1_stop_0 + * Pseudo action: probe_complete + * Resource action: child_rsc1:2 stop on node1 + * Resource action: child_rsc1:3 stop on node1 + * Resource action: child_rsc1:4 stop on node1 + * Pseudo action: rsc1_stopped_0 + * Pseudo action: rsc1_start_0 + * Pseudo action: all_stopped + * Resource action: child_rsc1:2 start on node2 + * Resource action: child_rsc1:3 start on node2 + * Pseudo action: rsc1_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node1 + child_rsc1:2 (heartbeat:apache): Started node2 + child_rsc1:3 (heartbeat:apache): Started node2 + child_rsc1:4 (heartbeat:apache): Stopped + diff --git a/pengine/test10/inc3.summary b/pengine/test10/inc3.summary new file mode 100644 index 0000000000..cd6c57b0b6 --- /dev/null +++ b/pengine/test10/inc3.summary @@ -0,0 +1,71 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node1 + child_rsc1:2 (heartbeat:apache): Started node1 + child_rsc1:3 (heartbeat:apache): Started node1 + child_rsc1:4 (heartbeat:apache): Started node1 + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node2 + child_rsc2:1 (heartbeat:apache): Started node2 + child_rsc2:2 (heartbeat:apache): Started node2 + child_rsc2:3 (heartbeat:apache): Started node2 + child_rsc2:4 (heartbeat:apache): Started node2 + +Transition Summary: + * Move child_rsc1:2 (Started node1 -> node2) + * Move child_rsc1:3 (Started node1 -> node2) + * Stop child_rsc1:4 (node1) + * Move child_rsc2:3 (Started node2 -> node1) + * Move child_rsc2:4 (Started node2 -> node1) + +Executing cluster transition: + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:1 monitor on node2 + * Resource action: child_rsc1:2 monitor on node2 + * Resource action: child_rsc1:3 monitor on node2 + * Resource action: child_rsc1:4 monitor on node2 + * Resource action: child_rsc2:0 monitor on node1 + * Resource action: child_rsc2:1 monitor on node1 + * Resource action: child_rsc2:2 monitor on node1 + * Resource action: child_rsc2:3 monitor on node1 + * Resource action: child_rsc2:4 monitor on node1 + * Pseudo action: rsc2_stop_0 + * Pseudo action: probe_complete + * Resource action: child_rsc2:3 stop on node2 + * Resource action: child_rsc2:4 stop on node2 + * Pseudo action: rsc2_stopped_0 + * Pseudo action: rsc1_stop_0 + * Resource action: child_rsc1:2 stop on node1 + * Resource action: child_rsc1:3 stop on node1 + * Resource action: child_rsc1:4 stop on node1 + * Pseudo action: rsc1_stopped_0 + * Pseudo action: rsc1_start_0 + * Pseudo action: all_stopped + * Resource action: child_rsc1:2 start on node2 + * Resource action: child_rsc1:3 start on node2 + * Pseudo action: rsc1_running_0 + * Pseudo action: rsc2_start_0 + * Resource action: child_rsc2:3 start on node1 + * Resource action: child_rsc2:4 start on node1 + * Pseudo action: rsc2_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node1 + child_rsc1:2 (heartbeat:apache): Started node2 + child_rsc1:3 (heartbeat:apache): Started node2 + child_rsc1:4 (heartbeat:apache): Stopped + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node2 + child_rsc2:1 (heartbeat:apache): Started node2 + child_rsc2:2 (heartbeat:apache): Started node2 + child_rsc2:3 (heartbeat:apache): Started node1 + child_rsc2:4 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/inc4.summary b/pengine/test10/inc4.summary new file mode 100644 index 0000000000..5843155313 --- /dev/null +++ b/pengine/test10/inc4.summary @@ -0,0 +1,71 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node1 + child_rsc1:2 (heartbeat:apache): Started node1 + child_rsc1:3 (heartbeat:apache): Started node1 + child_rsc1:4 (heartbeat:apache): Started node1 + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node2 + child_rsc2:1 (heartbeat:apache): Started node2 + child_rsc2:2 (heartbeat:apache): Started node2 + child_rsc2:3 (heartbeat:apache): Started node2 + child_rsc2:4 (heartbeat:apache): Started node2 + +Transition Summary: + * Move child_rsc1:2 (Started node1 -> node2) + * Move child_rsc1:3 (Started node1 -> node2) + * Stop child_rsc1:4 (node1) + * Move child_rsc2:3 (Started node2 -> node1) + * Move child_rsc2:4 (Started node2 -> node1) + +Executing cluster transition: + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:1 monitor on node2 + * Resource action: child_rsc1:2 monitor on node2 + * Resource action: child_rsc1:3 monitor on node2 + * Resource action: child_rsc1:4 monitor on node2 + * Resource action: child_rsc2:0 monitor on node1 + * Resource action: child_rsc2:1 monitor on node1 + * Resource action: child_rsc2:2 monitor on node1 + * Resource action: child_rsc2:3 monitor on node1 + * Resource action: child_rsc2:4 monitor on node1 + * Pseudo action: rsc2_stop_0 + * Pseudo action: probe_complete + * Resource action: child_rsc2:4 stop on node2 + * Resource action: child_rsc2:3 stop on node2 + * Pseudo action: rsc2_stopped_0 + * Pseudo action: rsc1_stop_0 + * Resource action: child_rsc1:4 stop on node1 + * Resource action: child_rsc1:3 stop on node1 + * Resource action: child_rsc1:2 stop on node1 + * Pseudo action: rsc1_stopped_0 + * Pseudo action: rsc1_start_0 + * Pseudo action: all_stopped + * Resource action: child_rsc1:2 start on node2 + * Resource action: child_rsc1:3 start on node2 + * Pseudo action: rsc1_running_0 + * Pseudo action: rsc2_start_0 + * Resource action: child_rsc2:3 start on node1 + * Resource action: child_rsc2:4 start on node1 + * Pseudo action: rsc2_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node1 + child_rsc1:2 (heartbeat:apache): Started node2 + child_rsc1:3 (heartbeat:apache): Started node2 + child_rsc1:4 (heartbeat:apache): Stopped + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node2 + child_rsc2:1 (heartbeat:apache): Started node2 + child_rsc2:2 (heartbeat:apache): Started node2 + child_rsc2:3 (heartbeat:apache): Started node1 + child_rsc2:4 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/inc5.summary b/pengine/test10/inc5.summary new file mode 100644 index 0000000000..510b29bf2c --- /dev/null +++ b/pengine/test10/inc5.summary @@ -0,0 +1,139 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node2 + child_rsc1:2 (heartbeat:apache): Stopped + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node1 + child_rsc2:1 (heartbeat:apache): Started node1 + child_rsc2:2 (heartbeat:apache): Stopped + Clone Set: rsc3 [child_rsc3] (unique) + child_rsc3:0 (heartbeat:apache): Started node1 + child_rsc3:1 (heartbeat:apache): Started node2 + child_rsc3:2 (heartbeat:apache): Stopped + Clone Set: rsc4 [child_rsc4] (unique) + child_rsc4:0 (heartbeat:apache): Started node1 + child_rsc4:1 (heartbeat:apache): Started node1 + child_rsc4:2 (heartbeat:apache): Stopped + Clone Set: rsc5 [child_rsc5] (unique) + child_rsc5:0 (heartbeat:apache): Started node2 + child_rsc5:1 (heartbeat:apache): Started node2 + child_rsc5:2 (heartbeat:apache): Stopped + Clone Set: rsc6 [child_rsc6] (unique) + child_rsc6:0 (heartbeat:apache): Started node1 + child_rsc6:1 (heartbeat:apache): Started node2 + child_rsc6:2 (heartbeat:apache): Stopped + Clone Set: rsc7 [child_rsc7] (unique) + child_rsc7:0 (heartbeat:apache): Started node2 + child_rsc7:1 (heartbeat:apache): Started node2 + child_rsc7:2 (heartbeat:apache): Stopped + Clone Set: rsc8 [child_rsc8] (unique) + child_rsc8:0 (heartbeat:apache): Started node1 + child_rsc8:1 (heartbeat:apache): Started node2 + child_rsc8:2 (heartbeat:apache): Stopped + +Transition Summary: + * Move child_rsc2:1 (Started node1 -> node2) + * Move child_rsc4:1 (Started node1 -> node2) + * Move child_rsc5:1 (Started node2 -> node1) + * Move child_rsc7:1 (Started node2 -> node1) + +Executing cluster transition: + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:1 monitor on node1 + * Resource action: child_rsc1:2 monitor on node2 + * Resource action: child_rsc1:2 monitor on node1 + * Resource action: child_rsc2:0 monitor on node2 + * Resource action: child_rsc2:1 monitor on node2 + * Resource action: child_rsc2:2 monitor on node2 + * Resource action: child_rsc2:2 monitor on node1 + * Pseudo action: rsc2_stop_0 + * Resource action: child_rsc3:0 monitor on node2 + * Resource action: child_rsc3:1 monitor on node1 + * Resource action: child_rsc3:2 monitor on node2 + * Resource action: child_rsc3:2 monitor on node1 + * Resource action: child_rsc4:0 monitor on node2 + * Resource action: child_rsc4:1 monitor on node2 + * Resource action: child_rsc4:2 monitor on node2 + * Resource action: child_rsc4:2 monitor on node1 + * Pseudo action: rsc4_stop_0 + * Resource action: child_rsc5:0 monitor on node1 + * Resource action: child_rsc5:1 monitor on node1 + * Resource action: child_rsc5:2 monitor on node2 + * Resource action: child_rsc5:2 monitor on node1 + * Pseudo action: rsc5_stop_0 + * Resource action: child_rsc6:0 monitor on node2 + * Resource action: child_rsc6:1 monitor on node1 + * Resource action: child_rsc6:2 monitor on node2 + * Resource action: child_rsc6:2 monitor on node1 + * Resource action: child_rsc7:0 monitor on node1 + * Resource action: child_rsc7:1 monitor on node1 + * Resource action: child_rsc7:2 monitor on node2 + * Resource action: child_rsc7:2 monitor on node1 + * Pseudo action: rsc7_stop_0 + * Resource action: child_rsc8:0 monitor on node2 + * Resource action: child_rsc8:1 monitor on node1 + * Resource action: child_rsc8:2 monitor on node2 + * Resource action: child_rsc8:2 monitor on node1 + * Pseudo action: probe_complete + * Resource action: child_rsc2:1 stop on node1 + * Pseudo action: rsc2_stopped_0 + * Pseudo action: rsc2_start_0 + * Resource action: child_rsc4:1 stop on node1 + * Pseudo action: rsc4_stopped_0 + * Pseudo action: rsc4_start_0 + * Resource action: child_rsc5:1 stop on node2 + * Pseudo action: rsc5_stopped_0 + * Pseudo action: rsc5_start_0 + * Resource action: child_rsc7:1 stop on node2 + * Pseudo action: rsc7_stopped_0 + * Pseudo action: rsc7_start_0 + * Pseudo action: all_stopped + * Resource action: child_rsc2:1 start on node2 + * Pseudo action: rsc2_running_0 + * Resource action: child_rsc4:1 start on node2 + * Pseudo action: rsc4_running_0 + * Resource action: child_rsc5:1 start on node1 + * Pseudo action: rsc5_running_0 + * Resource action: child_rsc7:1 start on node1 + * Pseudo action: rsc7_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node2 + child_rsc1:2 (heartbeat:apache): Stopped + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node1 + child_rsc2:1 (heartbeat:apache): Started node2 + child_rsc2:2 (heartbeat:apache): Stopped + Clone Set: rsc3 [child_rsc3] (unique) + child_rsc3:0 (heartbeat:apache): Started node1 + child_rsc3:1 (heartbeat:apache): Started node2 + child_rsc3:2 (heartbeat:apache): Stopped + Clone Set: rsc4 [child_rsc4] (unique) + child_rsc4:0 (heartbeat:apache): Started node1 + child_rsc4:1 (heartbeat:apache): Started node2 + child_rsc4:2 (heartbeat:apache): Stopped + Clone Set: rsc5 [child_rsc5] (unique) + child_rsc5:0 (heartbeat:apache): Started node2 + child_rsc5:1 (heartbeat:apache): Started node1 + child_rsc5:2 (heartbeat:apache): Stopped + Clone Set: rsc6 [child_rsc6] (unique) + child_rsc6:0 (heartbeat:apache): Started node1 + child_rsc6:1 (heartbeat:apache): Started node2 + child_rsc6:2 (heartbeat:apache): Stopped + Clone Set: rsc7 [child_rsc7] (unique) + child_rsc7:0 (heartbeat:apache): Started node2 + child_rsc7:1 (heartbeat:apache): Started node1 + child_rsc7:2 (heartbeat:apache): Stopped + Clone Set: rsc8 [child_rsc8] (unique) + child_rsc8:0 (heartbeat:apache): Started node1 + child_rsc8:1 (heartbeat:apache): Started node2 + child_rsc8:2 (heartbeat:apache): Stopped + diff --git a/pengine/test10/inc6.summary b/pengine/test10/inc6.summary new file mode 100644 index 0000000000..108de5ba88 --- /dev/null +++ b/pengine/test10/inc6.summary @@ -0,0 +1,108 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] + Started: [ node1 node2 ] + Stopped: [ child_rsc1:2 ] + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node1 + child_rsc2:1 (heartbeat:apache): Started node1 + child_rsc2:2 (heartbeat:apache): Stopped + Clone Set: rsc3 [child_rsc3] + Started: [ node1 node2 ] + Stopped: [ child_rsc3:2 ] + Clone Set: rsc4 [child_rsc4] (unique) + child_rsc4:0 (heartbeat:apache): Started node1 + child_rsc4:1 (heartbeat:apache): Started node1 + child_rsc4:2 (heartbeat:apache): Stopped + Clone Set: rsc5 [child_rsc5] (unique) + child_rsc5:0 (heartbeat:apache): Started node2 + child_rsc5:1 (heartbeat:apache): Started node2 + child_rsc5:2 (heartbeat:apache): Stopped + Clone Set: rsc6 [child_rsc6] + Started: [ node1 node2 ] + Stopped: [ child_rsc6:2 ] + Clone Set: rsc7 [child_rsc7] (unique) + child_rsc7:0 (heartbeat:apache): Started node2 + child_rsc7:1 (heartbeat:apache): Started node2 + child_rsc7:2 (heartbeat:apache): Stopped + Clone Set: rsc8 [child_rsc8] + Started: [ node1 node2 ] + Stopped: [ child_rsc8:2 ] + +Transition Summary: + * Move child_rsc2:1 (Started node1 -> node2) + * Move child_rsc4:1 (Started node1 -> node2) + * Move child_rsc5:1 (Started node2 -> node1) + * Restart child_rsc6:0 (Started node1) + * Restart child_rsc6:1 (Started node2) + * Move child_rsc7:1 (Started node2 -> node1) + +Executing cluster transition: + * Pseudo action: rsc2_stop_0 + * Pseudo action: rsc4_stop_0 + * Pseudo action: rsc6_stop_0 + * Pseudo action: rsc7_stop_0 + * Resource action: child_rsc2:1 stop on node1 + * Pseudo action: rsc2_stopped_0 + * Pseudo action: rsc2_start_0 + * Resource action: child_rsc4:1 stop on node1 + * Pseudo action: rsc4_stopped_0 + * Pseudo action: rsc4_start_0 + * Resource action: child_rsc6:0 stop on node1 + * Resource action: child_rsc6:1 stop on node2 + * Pseudo action: rsc6_stopped_0 + * Resource action: child_rsc7:1 stop on node2 + * Pseudo action: rsc7_stopped_0 + * Pseudo action: rsc7_start_0 + * Resource action: child_rsc2:1 start on node2 + * Pseudo action: rsc2_running_0 + * Resource action: child_rsc4:1 start on node2 + * Pseudo action: rsc4_running_0 + * Pseudo action: rsc5_stop_0 + * Resource action: child_rsc7:1 start on node1 + * Pseudo action: rsc7_running_0 + * Resource action: child_rsc5:1 stop on node2 + * Pseudo action: rsc5_stopped_0 + * Pseudo action: rsc5_start_0 + * Pseudo action: all_stopped + * Resource action: child_rsc5:1 start on node1 + * Pseudo action: rsc5_running_0 + * Pseudo action: rsc6_start_0 + * Resource action: child_rsc6:0 start on node1 + * Resource action: child_rsc6:1 start on node2 + * Pseudo action: rsc6_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] + Started: [ node1 node2 ] + Stopped: [ child_rsc1:2 ] + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node1 + child_rsc2:1 (heartbeat:apache) Started [ node1 node2 ] + child_rsc2:2 (heartbeat:apache): Stopped + Clone Set: rsc3 [child_rsc3] + Started: [ node1 node2 ] + Stopped: [ child_rsc3:2 ] + Clone Set: rsc4 [child_rsc4] (unique) + child_rsc4:0 (heartbeat:apache): Started node1 + child_rsc4:1 (heartbeat:apache) Started [ node1 node2 ] + child_rsc4:2 (heartbeat:apache): Stopped + Clone Set: rsc5 [child_rsc5] (unique) + child_rsc5:0 (heartbeat:apache): Started node2 + child_rsc5:1 (heartbeat:apache): Started node1 + child_rsc5:2 (heartbeat:apache): Stopped + Clone Set: rsc6 [child_rsc6] + Started: [ node1 node2 ] + Stopped: [ child_rsc6:2 ] + Clone Set: rsc7 [child_rsc7] (unique) + child_rsc7:0 (heartbeat:apache): Started node2 + child_rsc7:1 (heartbeat:apache): Started node1 + child_rsc7:2 (heartbeat:apache): Stopped + Clone Set: rsc8 [child_rsc8] + Started: [ node1 node2 ] + Stopped: [ child_rsc8:2 ] + diff --git a/pengine/test10/inc7.summary b/pengine/test10/inc7.summary new file mode 100644 index 0000000000..3ebdf7c108 --- /dev/null +++ b/pengine/test10/inc7.summary @@ -0,0 +1,99 @@ + +Current cluster status: +Online: [ node1 node2 node3 ] + + rsc0 (heartbeat:apache): Stopped + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Stopped + child_rsc1:1 (heartbeat:apache): Stopped + child_rsc1:2 (heartbeat:apache): Stopped + child_rsc1:3 (heartbeat:apache): Stopped + child_rsc1:4 (heartbeat:apache): Stopped + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Stopped + child_rsc2:1 (heartbeat:apache): Stopped + child_rsc2:2 (heartbeat:apache): Stopped + child_rsc2:3 (heartbeat:apache): Stopped + child_rsc2:4 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc0 (node1) + * Start child_rsc1:0 (node1) + * Start child_rsc1:1 (node2) + * Start child_rsc1:2 (node3) + * Start child_rsc1:3 (node1) + * Start child_rsc1:4 (node2) + * Start child_rsc2:0 (node2) + * Start child_rsc2:1 (node3) + * Start child_rsc2:2 (node1) + * Start child_rsc2:3 (node2) + * Start child_rsc2:4 (node3) + +Executing cluster transition: + * Resource action: rsc0 monitor on node3 + * Resource action: rsc0 monitor on node2 + * Resource action: rsc0 monitor on node1 + * Resource action: child_rsc1:0 monitor on node3 + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:0 monitor on node1 + * Resource action: child_rsc1:1 monitor on node3 + * Resource action: child_rsc1:1 monitor on node2 + * Resource action: child_rsc1:1 monitor on node1 + * Resource action: child_rsc1:2 monitor on node3 + * Resource action: child_rsc1:2 monitor on node2 + * Resource action: child_rsc1:2 monitor on node1 + * Resource action: child_rsc1:3 monitor on node3 + * Resource action: child_rsc1:3 monitor on node2 + * Resource action: child_rsc1:3 monitor on node1 + * Resource action: child_rsc1:4 monitor on node3 + * Resource action: child_rsc1:4 monitor on node2 + * Resource action: child_rsc1:4 monitor on node1 + * Pseudo action: rsc1_start_0 + * Resource action: child_rsc2:0 monitor on node3 + * Resource action: child_rsc2:0 monitor on node2 + * Resource action: child_rsc2:0 monitor on node1 + * Resource action: child_rsc2:1 monitor on node3 + * Resource action: child_rsc2:1 monitor on node2 + * Resource action: child_rsc2:1 monitor on node1 + * Resource action: child_rsc2:2 monitor on node3 + * Resource action: child_rsc2:2 monitor on node2 + * Resource action: child_rsc2:2 monitor on node1 + * Resource action: child_rsc2:3 monitor on node3 + * Resource action: child_rsc2:3 monitor on node2 + * Resource action: child_rsc2:3 monitor on node1 + * Resource action: child_rsc2:4 monitor on node3 + * Resource action: child_rsc2:4 monitor on node2 + * Resource action: child_rsc2:4 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc0 start on node1 + * Resource action: child_rsc1:0 start on node1 + * Resource action: child_rsc1:1 start on node2 + * Resource action: child_rsc1:2 start on node3 + * Resource action: child_rsc1:3 start on node1 + * Resource action: child_rsc1:4 start on node2 + * Pseudo action: rsc1_running_0 + * Pseudo action: rsc2_start_0 + * Resource action: child_rsc2:0 start on node2 + * Resource action: child_rsc2:1 start on node3 + * Resource action: child_rsc2:2 start on node1 + * Resource action: child_rsc2:3 start on node2 + * Resource action: child_rsc2:4 start on node3 + * Pseudo action: rsc2_running_0 + +Revised cluster status: +Online: [ node1 node2 node3 ] + + rsc0 (heartbeat:apache): Started node1 + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node2 + child_rsc1:2 (heartbeat:apache): Started node3 + child_rsc1:3 (heartbeat:apache): Started node1 + child_rsc1:4 (heartbeat:apache): Started node2 + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node2 + child_rsc2:1 (heartbeat:apache): Started node3 + child_rsc2:2 (heartbeat:apache): Started node1 + child_rsc2:3 (heartbeat:apache): Started node2 + child_rsc2:4 (heartbeat:apache): Started node3 + diff --git a/pengine/test10/inc8.summary b/pengine/test10/inc8.summary new file mode 100644 index 0000000000..d013b90809 --- /dev/null +++ b/pengine/test10/inc8.summary @@ -0,0 +1,70 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc0 (heartbeat:apache): Stopped + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Stopped + child_rsc1:1 (heartbeat:apache): Stopped + child_rsc1:2 (heartbeat:apache): Stopped + child_rsc1:3 (heartbeat:apache): Stopped + child_rsc1:4 (heartbeat:apache): Stopped + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Stopped + child_rsc2:1 (heartbeat:apache): Stopped + child_rsc2:2 (heartbeat:apache): Stopped + child_rsc2:3 (heartbeat:apache): Stopped + child_rsc2:4 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc0 (node1) + * Start child_rsc2:0 (node2) + * Start child_rsc2:1 (node1) + +Executing cluster transition: + * Resource action: rsc0 monitor on node2 + * Resource action: rsc0 monitor on node1 + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:0 monitor on node1 + * Resource action: child_rsc1:1 monitor on node2 + * Resource action: child_rsc1:1 monitor on node1 + * Resource action: child_rsc1:2 monitor on node2 + * Resource action: child_rsc1:2 monitor on node1 + * Resource action: child_rsc1:3 monitor on node2 + * Resource action: child_rsc1:3 monitor on node1 + * Resource action: child_rsc1:4 monitor on node2 + * Resource action: child_rsc1:4 monitor on node1 + * Resource action: child_rsc2:0 monitor on node2 + * Resource action: child_rsc2:0 monitor on node1 + * Resource action: child_rsc2:1 monitor on node2 + * Resource action: child_rsc2:1 monitor on node1 + * Resource action: child_rsc2:2 monitor on node2 + * Resource action: child_rsc2:2 monitor on node1 + * Resource action: child_rsc2:3 monitor on node2 + * Resource action: child_rsc2:3 monitor on node1 + * Resource action: child_rsc2:4 monitor on node2 + * Resource action: child_rsc2:4 monitor on node1 + * Pseudo action: rsc2_start_0 + * Pseudo action: probe_complete + * Resource action: rsc0 start on node1 + * Resource action: child_rsc2:0 start on node2 + * Resource action: child_rsc2:1 start on node1 + * Pseudo action: rsc2_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc0 (heartbeat:apache): Started node1 + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Stopped + child_rsc1:1 (heartbeat:apache): Stopped + child_rsc1:2 (heartbeat:apache): Stopped + child_rsc1:3 (heartbeat:apache): Stopped + child_rsc1:4 (heartbeat:apache): Stopped + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node2 + child_rsc2:1 (heartbeat:apache): Started node1 + child_rsc2:2 (heartbeat:apache): Stopped + child_rsc2:3 (heartbeat:apache): Stopped + child_rsc2:4 (heartbeat:apache): Stopped + diff --git a/pengine/test10/inc9.summary b/pengine/test10/inc9.summary new file mode 100644 index 0000000000..7425549105 --- /dev/null +++ b/pengine/test10/inc9.summary @@ -0,0 +1,31 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] + child_rsc1:5 (heartbeat:apache): ORPHANED Started node1 + child_rsc1:6 (heartbeat:apache): ORPHANED Started node1 + child_rsc1:7 (heartbeat:apache): ORPHANED Started node2 + Started: [ node1 node2 ] + Stopped: [ child_rsc1:2 child_rsc1:3 child_rsc1:4 ] + +Transition Summary: + * Stop child_rsc1:5 (node1) + * Stop child_rsc1:6 (node1) + * Stop child_rsc1:7 (node2) + +Executing cluster transition: + * Pseudo action: rsc1_stop_0 + * Resource action: child_rsc1:1 stop on node1 + * Resource action: child_rsc1:2 stop on node1 + * Resource action: child_rsc1:1 stop on node2 + * Pseudo action: rsc1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] + Started: [ node1 node2 ] + Stopped: [ child_rsc1:2 child_rsc1:3 child_rsc1:4 ] + diff --git a/pengine/test10/interleave-0.summary b/pengine/test10/interleave-0.summary new file mode 100644 index 0000000000..2374f66c40 --- /dev/null +++ b/pengine/test10/interleave-0.summary @@ -0,0 +1,240 @@ + +Current cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Stopped (unmanaged) + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 (unmanaged) + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 (unmanaged) + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 (unmanaged) + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 (unmanaged) + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 (unmanaged) + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 (unmanaged) + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 (unmanaged) + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n02 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n04 + child_DoFencing:3 (stonith:ssh): Started c001n05 + child_DoFencing:4 (stonith:ssh): Started c001n06 + child_DoFencing:5 (stonith:ssh): Started c001n07 + child_DoFencing:6 (stonith:ssh): Started c001n08 + child_DoFencing:7 (stonith:ssh): Started c001n09 + Clone Set: CloneSet [child_CloneSet] (unique) + child_CloneSet:0 (stonith:ssh): Stopped + child_CloneSet:1 (stonith:ssh): Stopped + child_CloneSet:2 (stonith:ssh): Stopped + child_CloneSet:3 (stonith:ssh): Stopped + child_CloneSet:4 (stonith:ssh): Stopped + child_CloneSet:5 (stonith:ssh): Stopped + child_CloneSet:6 (stonith:ssh): Stopped + child_CloneSet:7 (stonith:ssh): Stopped + +Transition Summary: + * Start child_CloneSet:0 (c001n02) + * Start child_CloneSet:1 (c001n03) + * Start child_CloneSet:2 (c001n04) + * Start child_CloneSet:3 (c001n05) + * Start child_CloneSet:4 (c001n06) + * Start child_CloneSet:5 (c001n07) + * Start child_CloneSet:6 (c001n08) + * Start child_CloneSet:7 (c001n09) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: DcIPaddr monitor on c001n07 + * Resource action: DcIPaddr monitor on c001n06 + * Resource action: DcIPaddr monitor on c001n05 + * Resource action: DcIPaddr monitor on c001n04 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n02 + * Resource action: rsc_c001n09 monitor on c001n08 + * Resource action: rsc_c001n09 monitor on c001n07 + * Resource action: rsc_c001n09 monitor on c001n05 + * Resource action: rsc_c001n09 monitor on c001n04 + * Resource action: rsc_c001n09 monitor on c001n03 + * Resource action: rsc_c001n09 monitor on c001n02 + * Resource action: rsc_c001n09 monitor on c001n09 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n02 monitor on c001n07 + * Resource action: rsc_c001n02 monitor on c001n05 + * Resource action: rsc_c001n02 monitor on c001n04 + * Resource action: rsc_c001n02 monitor on c001n09 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n03 monitor on c001n07 + * Resource action: rsc_c001n03 monitor on c001n05 + * Resource action: rsc_c001n03 monitor on c001n04 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n09 + * Resource action: rsc_c001n04 monitor on c001n08 + * Resource action: rsc_c001n04 monitor on c001n07 + * Resource action: rsc_c001n04 monitor on c001n05 + * Resource action: rsc_c001n04 monitor on c001n03 + * Resource action: rsc_c001n04 monitor on c001n02 + * Resource action: rsc_c001n04 monitor on c001n09 + * Resource action: rsc_c001n05 monitor on c001n08 + * Resource action: rsc_c001n05 monitor on c001n07 + * Resource action: rsc_c001n05 monitor on c001n06 + * Resource action: rsc_c001n05 monitor on c001n04 + * Resource action: rsc_c001n05 monitor on c001n03 + * Resource action: rsc_c001n05 monitor on c001n02 + * Resource action: rsc_c001n05 monitor on c001n09 + * Resource action: rsc_c001n06 monitor on c001n08 + * Resource action: rsc_c001n06 monitor on c001n07 + * Resource action: rsc_c001n06 monitor on c001n05 + * Resource action: rsc_c001n06 monitor on c001n04 + * Resource action: rsc_c001n06 monitor on c001n03 + * Resource action: rsc_c001n06 monitor on c001n09 + * Resource action: rsc_c001n07 monitor on c001n08 + * Resource action: rsc_c001n07 monitor on c001n06 + * Resource action: rsc_c001n07 monitor on c001n05 + * Resource action: rsc_c001n07 monitor on c001n04 + * Resource action: rsc_c001n07 monitor on c001n09 + * Resource action: rsc_c001n08 monitor on c001n07 + * Resource action: rsc_c001n08 monitor on c001n05 + * Resource action: rsc_c001n08 monitor on c001n09 + * Resource action: child_DoFencing:0 monitor on c001n08 + * Resource action: child_DoFencing:0 monitor on c001n07 + * Resource action: child_DoFencing:0 monitor on c001n09 + * Resource action: child_DoFencing:1 monitor on c001n08 + * Resource action: child_DoFencing:1 monitor on c001n07 + * Resource action: child_DoFencing:1 monitor on c001n02 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n07 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n09 + * Resource action: child_DoFencing:3 monitor on c001n08 + * Resource action: child_DoFencing:3 monitor on c001n04 + * Resource action: child_DoFencing:3 monitor on c001n02 + * Resource action: child_DoFencing:4 monitor on c001n05 + * Resource action: child_DoFencing:4 monitor on c001n03 + * Resource action: child_DoFencing:4 monitor on c001n09 + * Resource action: child_DoFencing:5 monitor on c001n08 + * Resource action: child_DoFencing:5 monitor on c001n05 + * Resource action: child_DoFencing:5 monitor on c001n04 + * Resource action: child_DoFencing:5 monitor on c001n02 + * Resource action: child_DoFencing:6 monitor on c001n07 + * Resource action: child_DoFencing:6 monitor on c001n05 + * Resource action: child_DoFencing:6 monitor on c001n04 + * Resource action: child_DoFencing:6 monitor on c001n09 + * Resource action: child_DoFencing:7 monitor on c001n08 + * Resource action: child_DoFencing:7 monitor on c001n07 + * Resource action: child_DoFencing:7 monitor on c001n05 + * Resource action: child_DoFencing:7 monitor on c001n04 + * Resource action: child_DoFencing:7 monitor on c001n03 + * Resource action: child_DoFencing:7 monitor on c001n02 + * Resource action: child_CloneSet:0 monitor on c001n08 + * Resource action: child_CloneSet:0 monitor on c001n07 + * Resource action: child_CloneSet:0 monitor on c001n06 + * Resource action: child_CloneSet:0 monitor on c001n05 + * Resource action: child_CloneSet:0 monitor on c001n04 + * Resource action: child_CloneSet:0 monitor on c001n03 + * Resource action: child_CloneSet:0 monitor on c001n02 + * Resource action: child_CloneSet:0 monitor on c001n09 + * Resource action: child_CloneSet:1 monitor on c001n08 + * Resource action: child_CloneSet:1 monitor on c001n07 + * Resource action: child_CloneSet:1 monitor on c001n06 + * Resource action: child_CloneSet:1 monitor on c001n05 + * Resource action: child_CloneSet:1 monitor on c001n04 + * Resource action: child_CloneSet:1 monitor on c001n03 + * Resource action: child_CloneSet:1 monitor on c001n02 + * Resource action: child_CloneSet:1 monitor on c001n09 + * Resource action: child_CloneSet:2 monitor on c001n08 + * Resource action: child_CloneSet:2 monitor on c001n07 + * Resource action: child_CloneSet:2 monitor on c001n06 + * Resource action: child_CloneSet:2 monitor on c001n05 + * Resource action: child_CloneSet:2 monitor on c001n04 + * Resource action: child_CloneSet:2 monitor on c001n03 + * Resource action: child_CloneSet:2 monitor on c001n02 + * Resource action: child_CloneSet:2 monitor on c001n09 + * Resource action: child_CloneSet:3 monitor on c001n08 + * Resource action: child_CloneSet:3 monitor on c001n07 + * Resource action: child_CloneSet:3 monitor on c001n06 + * Resource action: child_CloneSet:3 monitor on c001n05 + * Resource action: child_CloneSet:3 monitor on c001n04 + * Resource action: child_CloneSet:3 monitor on c001n03 + * Resource action: child_CloneSet:3 monitor on c001n02 + * Resource action: child_CloneSet:3 monitor on c001n09 + * Resource action: child_CloneSet:4 monitor on c001n08 + * Resource action: child_CloneSet:4 monitor on c001n07 + * Resource action: child_CloneSet:4 monitor on c001n06 + * Resource action: child_CloneSet:4 monitor on c001n05 + * Resource action: child_CloneSet:4 monitor on c001n04 + * Resource action: child_CloneSet:4 monitor on c001n03 + * Resource action: child_CloneSet:4 monitor on c001n02 + * Resource action: child_CloneSet:4 monitor on c001n09 + * Resource action: child_CloneSet:5 monitor on c001n08 + * Resource action: child_CloneSet:5 monitor on c001n07 + * Resource action: child_CloneSet:5 monitor on c001n06 + * Resource action: child_CloneSet:5 monitor on c001n05 + * Resource action: child_CloneSet:5 monitor on c001n04 + * Resource action: child_CloneSet:5 monitor on c001n03 + * Resource action: child_CloneSet:5 monitor on c001n02 + * Resource action: child_CloneSet:5 monitor on c001n09 + * Resource action: child_CloneSet:6 monitor on c001n08 + * Resource action: child_CloneSet:6 monitor on c001n07 + * Resource action: child_CloneSet:6 monitor on c001n06 + * Resource action: child_CloneSet:6 monitor on c001n05 + * Resource action: child_CloneSet:6 monitor on c001n04 + * Resource action: child_CloneSet:6 monitor on c001n03 + * Resource action: child_CloneSet:6 monitor on c001n02 + * Resource action: child_CloneSet:6 monitor on c001n09 + * Resource action: child_CloneSet:7 monitor on c001n08 + * Resource action: child_CloneSet:7 monitor on c001n07 + * Resource action: child_CloneSet:7 monitor on c001n06 + * Resource action: child_CloneSet:7 monitor on c001n05 + * Resource action: child_CloneSet:7 monitor on c001n04 + * Resource action: child_CloneSet:7 monitor on c001n03 + * Resource action: child_CloneSet:7 monitor on c001n02 + * Resource action: child_CloneSet:7 monitor on c001n09 + * Pseudo action: CloneSet_start_0 + * Pseudo action: probe_complete + * Resource action: child_CloneSet:0 start on c001n02 + * Resource action: child_CloneSet:1 start on c001n03 + * Resource action: child_CloneSet:2 start on c001n04 + * Resource action: child_CloneSet:3 start on c001n05 + * Resource action: child_CloneSet:4 start on c001n06 + * Resource action: child_CloneSet:5 start on c001n07 + * Resource action: child_CloneSet:6 start on c001n08 + * Resource action: child_CloneSet:7 start on c001n09 + * Pseudo action: CloneSet_running_0 + * Resource action: child_CloneSet:0 monitor=5000 on c001n02 + * Resource action: child_CloneSet:1 monitor=5000 on c001n03 + * Resource action: child_CloneSet:2 monitor=5000 on c001n04 + * Resource action: child_CloneSet:3 monitor=5000 on c001n05 + * Resource action: child_CloneSet:4 monitor=5000 on c001n06 + * Resource action: child_CloneSet:5 monitor=5000 on c001n07 + * Resource action: child_CloneSet:6 monitor=5000 on c001n08 + * Resource action: child_CloneSet:7 monitor=5000 on c001n09 + +Revised cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Stopped (unmanaged) + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 (unmanaged) + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 (unmanaged) + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 (unmanaged) + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 (unmanaged) + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 (unmanaged) + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 (unmanaged) + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 (unmanaged) + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n02 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n04 + child_DoFencing:3 (stonith:ssh): Started c001n05 + child_DoFencing:4 (stonith:ssh): Started c001n06 + child_DoFencing:5 (stonith:ssh): Started c001n07 + child_DoFencing:6 (stonith:ssh): Started c001n08 + child_DoFencing:7 (stonith:ssh): Started c001n09 + Clone Set: CloneSet [child_CloneSet] (unique) + child_CloneSet:0 (stonith:ssh): Started c001n02 + child_CloneSet:1 (stonith:ssh): Started c001n03 + child_CloneSet:2 (stonith:ssh): Started c001n04 + child_CloneSet:3 (stonith:ssh): Started c001n05 + child_CloneSet:4 (stonith:ssh): Started c001n06 + child_CloneSet:5 (stonith:ssh): Started c001n07 + child_CloneSet:6 (stonith:ssh): Started c001n08 + child_CloneSet:7 (stonith:ssh): Started c001n09 + diff --git a/pengine/test10/interleave-1.summary b/pengine/test10/interleave-1.summary new file mode 100644 index 0000000000..2374f66c40 --- /dev/null +++ b/pengine/test10/interleave-1.summary @@ -0,0 +1,240 @@ + +Current cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Stopped (unmanaged) + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 (unmanaged) + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 (unmanaged) + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 (unmanaged) + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 (unmanaged) + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 (unmanaged) + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 (unmanaged) + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 (unmanaged) + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n02 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n04 + child_DoFencing:3 (stonith:ssh): Started c001n05 + child_DoFencing:4 (stonith:ssh): Started c001n06 + child_DoFencing:5 (stonith:ssh): Started c001n07 + child_DoFencing:6 (stonith:ssh): Started c001n08 + child_DoFencing:7 (stonith:ssh): Started c001n09 + Clone Set: CloneSet [child_CloneSet] (unique) + child_CloneSet:0 (stonith:ssh): Stopped + child_CloneSet:1 (stonith:ssh): Stopped + child_CloneSet:2 (stonith:ssh): Stopped + child_CloneSet:3 (stonith:ssh): Stopped + child_CloneSet:4 (stonith:ssh): Stopped + child_CloneSet:5 (stonith:ssh): Stopped + child_CloneSet:6 (stonith:ssh): Stopped + child_CloneSet:7 (stonith:ssh): Stopped + +Transition Summary: + * Start child_CloneSet:0 (c001n02) + * Start child_CloneSet:1 (c001n03) + * Start child_CloneSet:2 (c001n04) + * Start child_CloneSet:3 (c001n05) + * Start child_CloneSet:4 (c001n06) + * Start child_CloneSet:5 (c001n07) + * Start child_CloneSet:6 (c001n08) + * Start child_CloneSet:7 (c001n09) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: DcIPaddr monitor on c001n07 + * Resource action: DcIPaddr monitor on c001n06 + * Resource action: DcIPaddr monitor on c001n05 + * Resource action: DcIPaddr monitor on c001n04 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n02 + * Resource action: rsc_c001n09 monitor on c001n08 + * Resource action: rsc_c001n09 monitor on c001n07 + * Resource action: rsc_c001n09 monitor on c001n05 + * Resource action: rsc_c001n09 monitor on c001n04 + * Resource action: rsc_c001n09 monitor on c001n03 + * Resource action: rsc_c001n09 monitor on c001n02 + * Resource action: rsc_c001n09 monitor on c001n09 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n02 monitor on c001n07 + * Resource action: rsc_c001n02 monitor on c001n05 + * Resource action: rsc_c001n02 monitor on c001n04 + * Resource action: rsc_c001n02 monitor on c001n09 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n03 monitor on c001n07 + * Resource action: rsc_c001n03 monitor on c001n05 + * Resource action: rsc_c001n03 monitor on c001n04 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n09 + * Resource action: rsc_c001n04 monitor on c001n08 + * Resource action: rsc_c001n04 monitor on c001n07 + * Resource action: rsc_c001n04 monitor on c001n05 + * Resource action: rsc_c001n04 monitor on c001n03 + * Resource action: rsc_c001n04 monitor on c001n02 + * Resource action: rsc_c001n04 monitor on c001n09 + * Resource action: rsc_c001n05 monitor on c001n08 + * Resource action: rsc_c001n05 monitor on c001n07 + * Resource action: rsc_c001n05 monitor on c001n06 + * Resource action: rsc_c001n05 monitor on c001n04 + * Resource action: rsc_c001n05 monitor on c001n03 + * Resource action: rsc_c001n05 monitor on c001n02 + * Resource action: rsc_c001n05 monitor on c001n09 + * Resource action: rsc_c001n06 monitor on c001n08 + * Resource action: rsc_c001n06 monitor on c001n07 + * Resource action: rsc_c001n06 monitor on c001n05 + * Resource action: rsc_c001n06 monitor on c001n04 + * Resource action: rsc_c001n06 monitor on c001n03 + * Resource action: rsc_c001n06 monitor on c001n09 + * Resource action: rsc_c001n07 monitor on c001n08 + * Resource action: rsc_c001n07 monitor on c001n06 + * Resource action: rsc_c001n07 monitor on c001n05 + * Resource action: rsc_c001n07 monitor on c001n04 + * Resource action: rsc_c001n07 monitor on c001n09 + * Resource action: rsc_c001n08 monitor on c001n07 + * Resource action: rsc_c001n08 monitor on c001n05 + * Resource action: rsc_c001n08 monitor on c001n09 + * Resource action: child_DoFencing:0 monitor on c001n08 + * Resource action: child_DoFencing:0 monitor on c001n07 + * Resource action: child_DoFencing:0 monitor on c001n09 + * Resource action: child_DoFencing:1 monitor on c001n08 + * Resource action: child_DoFencing:1 monitor on c001n07 + * Resource action: child_DoFencing:1 monitor on c001n02 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n07 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n09 + * Resource action: child_DoFencing:3 monitor on c001n08 + * Resource action: child_DoFencing:3 monitor on c001n04 + * Resource action: child_DoFencing:3 monitor on c001n02 + * Resource action: child_DoFencing:4 monitor on c001n05 + * Resource action: child_DoFencing:4 monitor on c001n03 + * Resource action: child_DoFencing:4 monitor on c001n09 + * Resource action: child_DoFencing:5 monitor on c001n08 + * Resource action: child_DoFencing:5 monitor on c001n05 + * Resource action: child_DoFencing:5 monitor on c001n04 + * Resource action: child_DoFencing:5 monitor on c001n02 + * Resource action: child_DoFencing:6 monitor on c001n07 + * Resource action: child_DoFencing:6 monitor on c001n05 + * Resource action: child_DoFencing:6 monitor on c001n04 + * Resource action: child_DoFencing:6 monitor on c001n09 + * Resource action: child_DoFencing:7 monitor on c001n08 + * Resource action: child_DoFencing:7 monitor on c001n07 + * Resource action: child_DoFencing:7 monitor on c001n05 + * Resource action: child_DoFencing:7 monitor on c001n04 + * Resource action: child_DoFencing:7 monitor on c001n03 + * Resource action: child_DoFencing:7 monitor on c001n02 + * Resource action: child_CloneSet:0 monitor on c001n08 + * Resource action: child_CloneSet:0 monitor on c001n07 + * Resource action: child_CloneSet:0 monitor on c001n06 + * Resource action: child_CloneSet:0 monitor on c001n05 + * Resource action: child_CloneSet:0 monitor on c001n04 + * Resource action: child_CloneSet:0 monitor on c001n03 + * Resource action: child_CloneSet:0 monitor on c001n02 + * Resource action: child_CloneSet:0 monitor on c001n09 + * Resource action: child_CloneSet:1 monitor on c001n08 + * Resource action: child_CloneSet:1 monitor on c001n07 + * Resource action: child_CloneSet:1 monitor on c001n06 + * Resource action: child_CloneSet:1 monitor on c001n05 + * Resource action: child_CloneSet:1 monitor on c001n04 + * Resource action: child_CloneSet:1 monitor on c001n03 + * Resource action: child_CloneSet:1 monitor on c001n02 + * Resource action: child_CloneSet:1 monitor on c001n09 + * Resource action: child_CloneSet:2 monitor on c001n08 + * Resource action: child_CloneSet:2 monitor on c001n07 + * Resource action: child_CloneSet:2 monitor on c001n06 + * Resource action: child_CloneSet:2 monitor on c001n05 + * Resource action: child_CloneSet:2 monitor on c001n04 + * Resource action: child_CloneSet:2 monitor on c001n03 + * Resource action: child_CloneSet:2 monitor on c001n02 + * Resource action: child_CloneSet:2 monitor on c001n09 + * Resource action: child_CloneSet:3 monitor on c001n08 + * Resource action: child_CloneSet:3 monitor on c001n07 + * Resource action: child_CloneSet:3 monitor on c001n06 + * Resource action: child_CloneSet:3 monitor on c001n05 + * Resource action: child_CloneSet:3 monitor on c001n04 + * Resource action: child_CloneSet:3 monitor on c001n03 + * Resource action: child_CloneSet:3 monitor on c001n02 + * Resource action: child_CloneSet:3 monitor on c001n09 + * Resource action: child_CloneSet:4 monitor on c001n08 + * Resource action: child_CloneSet:4 monitor on c001n07 + * Resource action: child_CloneSet:4 monitor on c001n06 + * Resource action: child_CloneSet:4 monitor on c001n05 + * Resource action: child_CloneSet:4 monitor on c001n04 + * Resource action: child_CloneSet:4 monitor on c001n03 + * Resource action: child_CloneSet:4 monitor on c001n02 + * Resource action: child_CloneSet:4 monitor on c001n09 + * Resource action: child_CloneSet:5 monitor on c001n08 + * Resource action: child_CloneSet:5 monitor on c001n07 + * Resource action: child_CloneSet:5 monitor on c001n06 + * Resource action: child_CloneSet:5 monitor on c001n05 + * Resource action: child_CloneSet:5 monitor on c001n04 + * Resource action: child_CloneSet:5 monitor on c001n03 + * Resource action: child_CloneSet:5 monitor on c001n02 + * Resource action: child_CloneSet:5 monitor on c001n09 + * Resource action: child_CloneSet:6 monitor on c001n08 + * Resource action: child_CloneSet:6 monitor on c001n07 + * Resource action: child_CloneSet:6 monitor on c001n06 + * Resource action: child_CloneSet:6 monitor on c001n05 + * Resource action: child_CloneSet:6 monitor on c001n04 + * Resource action: child_CloneSet:6 monitor on c001n03 + * Resource action: child_CloneSet:6 monitor on c001n02 + * Resource action: child_CloneSet:6 monitor on c001n09 + * Resource action: child_CloneSet:7 monitor on c001n08 + * Resource action: child_CloneSet:7 monitor on c001n07 + * Resource action: child_CloneSet:7 monitor on c001n06 + * Resource action: child_CloneSet:7 monitor on c001n05 + * Resource action: child_CloneSet:7 monitor on c001n04 + * Resource action: child_CloneSet:7 monitor on c001n03 + * Resource action: child_CloneSet:7 monitor on c001n02 + * Resource action: child_CloneSet:7 monitor on c001n09 + * Pseudo action: CloneSet_start_0 + * Pseudo action: probe_complete + * Resource action: child_CloneSet:0 start on c001n02 + * Resource action: child_CloneSet:1 start on c001n03 + * Resource action: child_CloneSet:2 start on c001n04 + * Resource action: child_CloneSet:3 start on c001n05 + * Resource action: child_CloneSet:4 start on c001n06 + * Resource action: child_CloneSet:5 start on c001n07 + * Resource action: child_CloneSet:6 start on c001n08 + * Resource action: child_CloneSet:7 start on c001n09 + * Pseudo action: CloneSet_running_0 + * Resource action: child_CloneSet:0 monitor=5000 on c001n02 + * Resource action: child_CloneSet:1 monitor=5000 on c001n03 + * Resource action: child_CloneSet:2 monitor=5000 on c001n04 + * Resource action: child_CloneSet:3 monitor=5000 on c001n05 + * Resource action: child_CloneSet:4 monitor=5000 on c001n06 + * Resource action: child_CloneSet:5 monitor=5000 on c001n07 + * Resource action: child_CloneSet:6 monitor=5000 on c001n08 + * Resource action: child_CloneSet:7 monitor=5000 on c001n09 + +Revised cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Stopped (unmanaged) + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 (unmanaged) + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 (unmanaged) + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 (unmanaged) + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 (unmanaged) + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 (unmanaged) + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 (unmanaged) + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 (unmanaged) + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n02 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n04 + child_DoFencing:3 (stonith:ssh): Started c001n05 + child_DoFencing:4 (stonith:ssh): Started c001n06 + child_DoFencing:5 (stonith:ssh): Started c001n07 + child_DoFencing:6 (stonith:ssh): Started c001n08 + child_DoFencing:7 (stonith:ssh): Started c001n09 + Clone Set: CloneSet [child_CloneSet] (unique) + child_CloneSet:0 (stonith:ssh): Started c001n02 + child_CloneSet:1 (stonith:ssh): Started c001n03 + child_CloneSet:2 (stonith:ssh): Started c001n04 + child_CloneSet:3 (stonith:ssh): Started c001n05 + child_CloneSet:4 (stonith:ssh): Started c001n06 + child_CloneSet:5 (stonith:ssh): Started c001n07 + child_CloneSet:6 (stonith:ssh): Started c001n08 + child_CloneSet:7 (stonith:ssh): Started c001n09 + diff --git a/pengine/test10/interleave-2.summary b/pengine/test10/interleave-2.summary new file mode 100644 index 0000000000..2374f66c40 --- /dev/null +++ b/pengine/test10/interleave-2.summary @@ -0,0 +1,240 @@ + +Current cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Stopped (unmanaged) + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 (unmanaged) + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 (unmanaged) + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 (unmanaged) + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 (unmanaged) + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 (unmanaged) + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 (unmanaged) + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 (unmanaged) + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n02 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n04 + child_DoFencing:3 (stonith:ssh): Started c001n05 + child_DoFencing:4 (stonith:ssh): Started c001n06 + child_DoFencing:5 (stonith:ssh): Started c001n07 + child_DoFencing:6 (stonith:ssh): Started c001n08 + child_DoFencing:7 (stonith:ssh): Started c001n09 + Clone Set: CloneSet [child_CloneSet] (unique) + child_CloneSet:0 (stonith:ssh): Stopped + child_CloneSet:1 (stonith:ssh): Stopped + child_CloneSet:2 (stonith:ssh): Stopped + child_CloneSet:3 (stonith:ssh): Stopped + child_CloneSet:4 (stonith:ssh): Stopped + child_CloneSet:5 (stonith:ssh): Stopped + child_CloneSet:6 (stonith:ssh): Stopped + child_CloneSet:7 (stonith:ssh): Stopped + +Transition Summary: + * Start child_CloneSet:0 (c001n02) + * Start child_CloneSet:1 (c001n03) + * Start child_CloneSet:2 (c001n04) + * Start child_CloneSet:3 (c001n05) + * Start child_CloneSet:4 (c001n06) + * Start child_CloneSet:5 (c001n07) + * Start child_CloneSet:6 (c001n08) + * Start child_CloneSet:7 (c001n09) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: DcIPaddr monitor on c001n07 + * Resource action: DcIPaddr monitor on c001n06 + * Resource action: DcIPaddr monitor on c001n05 + * Resource action: DcIPaddr monitor on c001n04 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n02 + * Resource action: rsc_c001n09 monitor on c001n08 + * Resource action: rsc_c001n09 monitor on c001n07 + * Resource action: rsc_c001n09 monitor on c001n05 + * Resource action: rsc_c001n09 monitor on c001n04 + * Resource action: rsc_c001n09 monitor on c001n03 + * Resource action: rsc_c001n09 monitor on c001n02 + * Resource action: rsc_c001n09 monitor on c001n09 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n02 monitor on c001n07 + * Resource action: rsc_c001n02 monitor on c001n05 + * Resource action: rsc_c001n02 monitor on c001n04 + * Resource action: rsc_c001n02 monitor on c001n09 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n03 monitor on c001n07 + * Resource action: rsc_c001n03 monitor on c001n05 + * Resource action: rsc_c001n03 monitor on c001n04 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n09 + * Resource action: rsc_c001n04 monitor on c001n08 + * Resource action: rsc_c001n04 monitor on c001n07 + * Resource action: rsc_c001n04 monitor on c001n05 + * Resource action: rsc_c001n04 monitor on c001n03 + * Resource action: rsc_c001n04 monitor on c001n02 + * Resource action: rsc_c001n04 monitor on c001n09 + * Resource action: rsc_c001n05 monitor on c001n08 + * Resource action: rsc_c001n05 monitor on c001n07 + * Resource action: rsc_c001n05 monitor on c001n06 + * Resource action: rsc_c001n05 monitor on c001n04 + * Resource action: rsc_c001n05 monitor on c001n03 + * Resource action: rsc_c001n05 monitor on c001n02 + * Resource action: rsc_c001n05 monitor on c001n09 + * Resource action: rsc_c001n06 monitor on c001n08 + * Resource action: rsc_c001n06 monitor on c001n07 + * Resource action: rsc_c001n06 monitor on c001n05 + * Resource action: rsc_c001n06 monitor on c001n04 + * Resource action: rsc_c001n06 monitor on c001n03 + * Resource action: rsc_c001n06 monitor on c001n09 + * Resource action: rsc_c001n07 monitor on c001n08 + * Resource action: rsc_c001n07 monitor on c001n06 + * Resource action: rsc_c001n07 monitor on c001n05 + * Resource action: rsc_c001n07 monitor on c001n04 + * Resource action: rsc_c001n07 monitor on c001n09 + * Resource action: rsc_c001n08 monitor on c001n07 + * Resource action: rsc_c001n08 monitor on c001n05 + * Resource action: rsc_c001n08 monitor on c001n09 + * Resource action: child_DoFencing:0 monitor on c001n08 + * Resource action: child_DoFencing:0 monitor on c001n07 + * Resource action: child_DoFencing:0 monitor on c001n09 + * Resource action: child_DoFencing:1 monitor on c001n08 + * Resource action: child_DoFencing:1 monitor on c001n07 + * Resource action: child_DoFencing:1 monitor on c001n02 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n07 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n09 + * Resource action: child_DoFencing:3 monitor on c001n08 + * Resource action: child_DoFencing:3 monitor on c001n04 + * Resource action: child_DoFencing:3 monitor on c001n02 + * Resource action: child_DoFencing:4 monitor on c001n05 + * Resource action: child_DoFencing:4 monitor on c001n03 + * Resource action: child_DoFencing:4 monitor on c001n09 + * Resource action: child_DoFencing:5 monitor on c001n08 + * Resource action: child_DoFencing:5 monitor on c001n05 + * Resource action: child_DoFencing:5 monitor on c001n04 + * Resource action: child_DoFencing:5 monitor on c001n02 + * Resource action: child_DoFencing:6 monitor on c001n07 + * Resource action: child_DoFencing:6 monitor on c001n05 + * Resource action: child_DoFencing:6 monitor on c001n04 + * Resource action: child_DoFencing:6 monitor on c001n09 + * Resource action: child_DoFencing:7 monitor on c001n08 + * Resource action: child_DoFencing:7 monitor on c001n07 + * Resource action: child_DoFencing:7 monitor on c001n05 + * Resource action: child_DoFencing:7 monitor on c001n04 + * Resource action: child_DoFencing:7 monitor on c001n03 + * Resource action: child_DoFencing:7 monitor on c001n02 + * Resource action: child_CloneSet:0 monitor on c001n08 + * Resource action: child_CloneSet:0 monitor on c001n07 + * Resource action: child_CloneSet:0 monitor on c001n06 + * Resource action: child_CloneSet:0 monitor on c001n05 + * Resource action: child_CloneSet:0 monitor on c001n04 + * Resource action: child_CloneSet:0 monitor on c001n03 + * Resource action: child_CloneSet:0 monitor on c001n02 + * Resource action: child_CloneSet:0 monitor on c001n09 + * Resource action: child_CloneSet:1 monitor on c001n08 + * Resource action: child_CloneSet:1 monitor on c001n07 + * Resource action: child_CloneSet:1 monitor on c001n06 + * Resource action: child_CloneSet:1 monitor on c001n05 + * Resource action: child_CloneSet:1 monitor on c001n04 + * Resource action: child_CloneSet:1 monitor on c001n03 + * Resource action: child_CloneSet:1 monitor on c001n02 + * Resource action: child_CloneSet:1 monitor on c001n09 + * Resource action: child_CloneSet:2 monitor on c001n08 + * Resource action: child_CloneSet:2 monitor on c001n07 + * Resource action: child_CloneSet:2 monitor on c001n06 + * Resource action: child_CloneSet:2 monitor on c001n05 + * Resource action: child_CloneSet:2 monitor on c001n04 + * Resource action: child_CloneSet:2 monitor on c001n03 + * Resource action: child_CloneSet:2 monitor on c001n02 + * Resource action: child_CloneSet:2 monitor on c001n09 + * Resource action: child_CloneSet:3 monitor on c001n08 + * Resource action: child_CloneSet:3 monitor on c001n07 + * Resource action: child_CloneSet:3 monitor on c001n06 + * Resource action: child_CloneSet:3 monitor on c001n05 + * Resource action: child_CloneSet:3 monitor on c001n04 + * Resource action: child_CloneSet:3 monitor on c001n03 + * Resource action: child_CloneSet:3 monitor on c001n02 + * Resource action: child_CloneSet:3 monitor on c001n09 + * Resource action: child_CloneSet:4 monitor on c001n08 + * Resource action: child_CloneSet:4 monitor on c001n07 + * Resource action: child_CloneSet:4 monitor on c001n06 + * Resource action: child_CloneSet:4 monitor on c001n05 + * Resource action: child_CloneSet:4 monitor on c001n04 + * Resource action: child_CloneSet:4 monitor on c001n03 + * Resource action: child_CloneSet:4 monitor on c001n02 + * Resource action: child_CloneSet:4 monitor on c001n09 + * Resource action: child_CloneSet:5 monitor on c001n08 + * Resource action: child_CloneSet:5 monitor on c001n07 + * Resource action: child_CloneSet:5 monitor on c001n06 + * Resource action: child_CloneSet:5 monitor on c001n05 + * Resource action: child_CloneSet:5 monitor on c001n04 + * Resource action: child_CloneSet:5 monitor on c001n03 + * Resource action: child_CloneSet:5 monitor on c001n02 + * Resource action: child_CloneSet:5 monitor on c001n09 + * Resource action: child_CloneSet:6 monitor on c001n08 + * Resource action: child_CloneSet:6 monitor on c001n07 + * Resource action: child_CloneSet:6 monitor on c001n06 + * Resource action: child_CloneSet:6 monitor on c001n05 + * Resource action: child_CloneSet:6 monitor on c001n04 + * Resource action: child_CloneSet:6 monitor on c001n03 + * Resource action: child_CloneSet:6 monitor on c001n02 + * Resource action: child_CloneSet:6 monitor on c001n09 + * Resource action: child_CloneSet:7 monitor on c001n08 + * Resource action: child_CloneSet:7 monitor on c001n07 + * Resource action: child_CloneSet:7 monitor on c001n06 + * Resource action: child_CloneSet:7 monitor on c001n05 + * Resource action: child_CloneSet:7 monitor on c001n04 + * Resource action: child_CloneSet:7 monitor on c001n03 + * Resource action: child_CloneSet:7 monitor on c001n02 + * Resource action: child_CloneSet:7 monitor on c001n09 + * Pseudo action: CloneSet_start_0 + * Pseudo action: probe_complete + * Resource action: child_CloneSet:0 start on c001n02 + * Resource action: child_CloneSet:1 start on c001n03 + * Resource action: child_CloneSet:2 start on c001n04 + * Resource action: child_CloneSet:3 start on c001n05 + * Resource action: child_CloneSet:4 start on c001n06 + * Resource action: child_CloneSet:5 start on c001n07 + * Resource action: child_CloneSet:6 start on c001n08 + * Resource action: child_CloneSet:7 start on c001n09 + * Pseudo action: CloneSet_running_0 + * Resource action: child_CloneSet:0 monitor=5000 on c001n02 + * Resource action: child_CloneSet:1 monitor=5000 on c001n03 + * Resource action: child_CloneSet:2 monitor=5000 on c001n04 + * Resource action: child_CloneSet:3 monitor=5000 on c001n05 + * Resource action: child_CloneSet:4 monitor=5000 on c001n06 + * Resource action: child_CloneSet:5 monitor=5000 on c001n07 + * Resource action: child_CloneSet:6 monitor=5000 on c001n08 + * Resource action: child_CloneSet:7 monitor=5000 on c001n09 + +Revised cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Stopped (unmanaged) + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 (unmanaged) + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 (unmanaged) + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 (unmanaged) + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 (unmanaged) + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 (unmanaged) + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 (unmanaged) + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 (unmanaged) + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n02 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n04 + child_DoFencing:3 (stonith:ssh): Started c001n05 + child_DoFencing:4 (stonith:ssh): Started c001n06 + child_DoFencing:5 (stonith:ssh): Started c001n07 + child_DoFencing:6 (stonith:ssh): Started c001n08 + child_DoFencing:7 (stonith:ssh): Started c001n09 + Clone Set: CloneSet [child_CloneSet] (unique) + child_CloneSet:0 (stonith:ssh): Started c001n02 + child_CloneSet:1 (stonith:ssh): Started c001n03 + child_CloneSet:2 (stonith:ssh): Started c001n04 + child_CloneSet:3 (stonith:ssh): Started c001n05 + child_CloneSet:4 (stonith:ssh): Started c001n06 + child_CloneSet:5 (stonith:ssh): Started c001n07 + child_CloneSet:6 (stonith:ssh): Started c001n08 + child_CloneSet:7 (stonith:ssh): Started c001n09 + diff --git a/pengine/test10/interleave-3.summary b/pengine/test10/interleave-3.summary new file mode 100644 index 0000000000..2374f66c40 --- /dev/null +++ b/pengine/test10/interleave-3.summary @@ -0,0 +1,240 @@ + +Current cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Stopped (unmanaged) + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 (unmanaged) + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 (unmanaged) + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 (unmanaged) + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 (unmanaged) + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 (unmanaged) + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 (unmanaged) + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 (unmanaged) + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n02 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n04 + child_DoFencing:3 (stonith:ssh): Started c001n05 + child_DoFencing:4 (stonith:ssh): Started c001n06 + child_DoFencing:5 (stonith:ssh): Started c001n07 + child_DoFencing:6 (stonith:ssh): Started c001n08 + child_DoFencing:7 (stonith:ssh): Started c001n09 + Clone Set: CloneSet [child_CloneSet] (unique) + child_CloneSet:0 (stonith:ssh): Stopped + child_CloneSet:1 (stonith:ssh): Stopped + child_CloneSet:2 (stonith:ssh): Stopped + child_CloneSet:3 (stonith:ssh): Stopped + child_CloneSet:4 (stonith:ssh): Stopped + child_CloneSet:5 (stonith:ssh): Stopped + child_CloneSet:6 (stonith:ssh): Stopped + child_CloneSet:7 (stonith:ssh): Stopped + +Transition Summary: + * Start child_CloneSet:0 (c001n02) + * Start child_CloneSet:1 (c001n03) + * Start child_CloneSet:2 (c001n04) + * Start child_CloneSet:3 (c001n05) + * Start child_CloneSet:4 (c001n06) + * Start child_CloneSet:5 (c001n07) + * Start child_CloneSet:6 (c001n08) + * Start child_CloneSet:7 (c001n09) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: DcIPaddr monitor on c001n07 + * Resource action: DcIPaddr monitor on c001n06 + * Resource action: DcIPaddr monitor on c001n05 + * Resource action: DcIPaddr monitor on c001n04 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n02 + * Resource action: rsc_c001n09 monitor on c001n08 + * Resource action: rsc_c001n09 monitor on c001n07 + * Resource action: rsc_c001n09 monitor on c001n05 + * Resource action: rsc_c001n09 monitor on c001n04 + * Resource action: rsc_c001n09 monitor on c001n03 + * Resource action: rsc_c001n09 monitor on c001n02 + * Resource action: rsc_c001n09 monitor on c001n09 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n02 monitor on c001n07 + * Resource action: rsc_c001n02 monitor on c001n05 + * Resource action: rsc_c001n02 monitor on c001n04 + * Resource action: rsc_c001n02 monitor on c001n09 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n03 monitor on c001n07 + * Resource action: rsc_c001n03 monitor on c001n05 + * Resource action: rsc_c001n03 monitor on c001n04 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n09 + * Resource action: rsc_c001n04 monitor on c001n08 + * Resource action: rsc_c001n04 monitor on c001n07 + * Resource action: rsc_c001n04 monitor on c001n05 + * Resource action: rsc_c001n04 monitor on c001n03 + * Resource action: rsc_c001n04 monitor on c001n02 + * Resource action: rsc_c001n04 monitor on c001n09 + * Resource action: rsc_c001n05 monitor on c001n08 + * Resource action: rsc_c001n05 monitor on c001n07 + * Resource action: rsc_c001n05 monitor on c001n06 + * Resource action: rsc_c001n05 monitor on c001n04 + * Resource action: rsc_c001n05 monitor on c001n03 + * Resource action: rsc_c001n05 monitor on c001n02 + * Resource action: rsc_c001n05 monitor on c001n09 + * Resource action: rsc_c001n06 monitor on c001n08 + * Resource action: rsc_c001n06 monitor on c001n07 + * Resource action: rsc_c001n06 monitor on c001n05 + * Resource action: rsc_c001n06 monitor on c001n04 + * Resource action: rsc_c001n06 monitor on c001n03 + * Resource action: rsc_c001n06 monitor on c001n09 + * Resource action: rsc_c001n07 monitor on c001n08 + * Resource action: rsc_c001n07 monitor on c001n06 + * Resource action: rsc_c001n07 monitor on c001n05 + * Resource action: rsc_c001n07 monitor on c001n04 + * Resource action: rsc_c001n07 monitor on c001n09 + * Resource action: rsc_c001n08 monitor on c001n07 + * Resource action: rsc_c001n08 monitor on c001n05 + * Resource action: rsc_c001n08 monitor on c001n09 + * Resource action: child_DoFencing:0 monitor on c001n08 + * Resource action: child_DoFencing:0 monitor on c001n07 + * Resource action: child_DoFencing:0 monitor on c001n09 + * Resource action: child_DoFencing:1 monitor on c001n08 + * Resource action: child_DoFencing:1 monitor on c001n07 + * Resource action: child_DoFencing:1 monitor on c001n02 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n07 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n09 + * Resource action: child_DoFencing:3 monitor on c001n08 + * Resource action: child_DoFencing:3 monitor on c001n04 + * Resource action: child_DoFencing:3 monitor on c001n02 + * Resource action: child_DoFencing:4 monitor on c001n05 + * Resource action: child_DoFencing:4 monitor on c001n03 + * Resource action: child_DoFencing:4 monitor on c001n09 + * Resource action: child_DoFencing:5 monitor on c001n08 + * Resource action: child_DoFencing:5 monitor on c001n05 + * Resource action: child_DoFencing:5 monitor on c001n04 + * Resource action: child_DoFencing:5 monitor on c001n02 + * Resource action: child_DoFencing:6 monitor on c001n07 + * Resource action: child_DoFencing:6 monitor on c001n05 + * Resource action: child_DoFencing:6 monitor on c001n04 + * Resource action: child_DoFencing:6 monitor on c001n09 + * Resource action: child_DoFencing:7 monitor on c001n08 + * Resource action: child_DoFencing:7 monitor on c001n07 + * Resource action: child_DoFencing:7 monitor on c001n05 + * Resource action: child_DoFencing:7 monitor on c001n04 + * Resource action: child_DoFencing:7 monitor on c001n03 + * Resource action: child_DoFencing:7 monitor on c001n02 + * Resource action: child_CloneSet:0 monitor on c001n08 + * Resource action: child_CloneSet:0 monitor on c001n07 + * Resource action: child_CloneSet:0 monitor on c001n06 + * Resource action: child_CloneSet:0 monitor on c001n05 + * Resource action: child_CloneSet:0 monitor on c001n04 + * Resource action: child_CloneSet:0 monitor on c001n03 + * Resource action: child_CloneSet:0 monitor on c001n02 + * Resource action: child_CloneSet:0 monitor on c001n09 + * Resource action: child_CloneSet:1 monitor on c001n08 + * Resource action: child_CloneSet:1 monitor on c001n07 + * Resource action: child_CloneSet:1 monitor on c001n06 + * Resource action: child_CloneSet:1 monitor on c001n05 + * Resource action: child_CloneSet:1 monitor on c001n04 + * Resource action: child_CloneSet:1 monitor on c001n03 + * Resource action: child_CloneSet:1 monitor on c001n02 + * Resource action: child_CloneSet:1 monitor on c001n09 + * Resource action: child_CloneSet:2 monitor on c001n08 + * Resource action: child_CloneSet:2 monitor on c001n07 + * Resource action: child_CloneSet:2 monitor on c001n06 + * Resource action: child_CloneSet:2 monitor on c001n05 + * Resource action: child_CloneSet:2 monitor on c001n04 + * Resource action: child_CloneSet:2 monitor on c001n03 + * Resource action: child_CloneSet:2 monitor on c001n02 + * Resource action: child_CloneSet:2 monitor on c001n09 + * Resource action: child_CloneSet:3 monitor on c001n08 + * Resource action: child_CloneSet:3 monitor on c001n07 + * Resource action: child_CloneSet:3 monitor on c001n06 + * Resource action: child_CloneSet:3 monitor on c001n05 + * Resource action: child_CloneSet:3 monitor on c001n04 + * Resource action: child_CloneSet:3 monitor on c001n03 + * Resource action: child_CloneSet:3 monitor on c001n02 + * Resource action: child_CloneSet:3 monitor on c001n09 + * Resource action: child_CloneSet:4 monitor on c001n08 + * Resource action: child_CloneSet:4 monitor on c001n07 + * Resource action: child_CloneSet:4 monitor on c001n06 + * Resource action: child_CloneSet:4 monitor on c001n05 + * Resource action: child_CloneSet:4 monitor on c001n04 + * Resource action: child_CloneSet:4 monitor on c001n03 + * Resource action: child_CloneSet:4 monitor on c001n02 + * Resource action: child_CloneSet:4 monitor on c001n09 + * Resource action: child_CloneSet:5 monitor on c001n08 + * Resource action: child_CloneSet:5 monitor on c001n07 + * Resource action: child_CloneSet:5 monitor on c001n06 + * Resource action: child_CloneSet:5 monitor on c001n05 + * Resource action: child_CloneSet:5 monitor on c001n04 + * Resource action: child_CloneSet:5 monitor on c001n03 + * Resource action: child_CloneSet:5 monitor on c001n02 + * Resource action: child_CloneSet:5 monitor on c001n09 + * Resource action: child_CloneSet:6 monitor on c001n08 + * Resource action: child_CloneSet:6 monitor on c001n07 + * Resource action: child_CloneSet:6 monitor on c001n06 + * Resource action: child_CloneSet:6 monitor on c001n05 + * Resource action: child_CloneSet:6 monitor on c001n04 + * Resource action: child_CloneSet:6 monitor on c001n03 + * Resource action: child_CloneSet:6 monitor on c001n02 + * Resource action: child_CloneSet:6 monitor on c001n09 + * Resource action: child_CloneSet:7 monitor on c001n08 + * Resource action: child_CloneSet:7 monitor on c001n07 + * Resource action: child_CloneSet:7 monitor on c001n06 + * Resource action: child_CloneSet:7 monitor on c001n05 + * Resource action: child_CloneSet:7 monitor on c001n04 + * Resource action: child_CloneSet:7 monitor on c001n03 + * Resource action: child_CloneSet:7 monitor on c001n02 + * Resource action: child_CloneSet:7 monitor on c001n09 + * Pseudo action: CloneSet_start_0 + * Pseudo action: probe_complete + * Resource action: child_CloneSet:0 start on c001n02 + * Resource action: child_CloneSet:1 start on c001n03 + * Resource action: child_CloneSet:2 start on c001n04 + * Resource action: child_CloneSet:3 start on c001n05 + * Resource action: child_CloneSet:4 start on c001n06 + * Resource action: child_CloneSet:5 start on c001n07 + * Resource action: child_CloneSet:6 start on c001n08 + * Resource action: child_CloneSet:7 start on c001n09 + * Pseudo action: CloneSet_running_0 + * Resource action: child_CloneSet:0 monitor=5000 on c001n02 + * Resource action: child_CloneSet:1 monitor=5000 on c001n03 + * Resource action: child_CloneSet:2 monitor=5000 on c001n04 + * Resource action: child_CloneSet:3 monitor=5000 on c001n05 + * Resource action: child_CloneSet:4 monitor=5000 on c001n06 + * Resource action: child_CloneSet:5 monitor=5000 on c001n07 + * Resource action: child_CloneSet:6 monitor=5000 on c001n08 + * Resource action: child_CloneSet:7 monitor=5000 on c001n09 + +Revised cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Stopped (unmanaged) + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 (unmanaged) + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 (unmanaged) + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 (unmanaged) + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 (unmanaged) + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 (unmanaged) + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 (unmanaged) + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 (unmanaged) + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n02 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n04 + child_DoFencing:3 (stonith:ssh): Started c001n05 + child_DoFencing:4 (stonith:ssh): Started c001n06 + child_DoFencing:5 (stonith:ssh): Started c001n07 + child_DoFencing:6 (stonith:ssh): Started c001n08 + child_DoFencing:7 (stonith:ssh): Started c001n09 + Clone Set: CloneSet [child_CloneSet] (unique) + child_CloneSet:0 (stonith:ssh): Started c001n02 + child_CloneSet:1 (stonith:ssh): Started c001n03 + child_CloneSet:2 (stonith:ssh): Started c001n04 + child_CloneSet:3 (stonith:ssh): Started c001n05 + child_CloneSet:4 (stonith:ssh): Started c001n06 + child_CloneSet:5 (stonith:ssh): Started c001n07 + child_CloneSet:6 (stonith:ssh): Started c001n08 + child_CloneSet:7 (stonith:ssh): Started c001n09 + diff --git a/pengine/test10/interleave-pseudo-stop.summary b/pengine/test10/interleave-pseudo-stop.summary new file mode 100644 index 0000000000..1d69b3e218 --- /dev/null +++ b/pengine/test10/interleave-pseudo-stop.summary @@ -0,0 +1,79 @@ + +Current cluster status: +Node node1 (f6d93040-a9ad-4745-a647-57ed32444ca8): UNCLEAN (offline) +Online: [ node2 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node1 node2 ] + Clone Set: evmscloneset [evmsclone] + Started: [ node1 node2 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ node1 node2 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node1 node2 ] + +Transition Summary: + * Stop stonithclone:0 (node1) + * Stop evmsclone:0 (node1) + * Stop imagestoreclone:0 (node1) + * Stop configstoreclone:0 (node1) + +Executing cluster transition: + * Pseudo action: stonithcloneset_stop_0 + * Pseudo action: evmscloneset_pre_notify_stop_0 + * Pseudo action: imagestorecloneset_pre_notify_stop_0 + * Pseudo action: configstorecloneset_pre_notify_stop_0 + * Pseudo action: stonith_up + * Pseudo action: stonithclone:0_stop_0 + * Pseudo action: stonithcloneset_stopped_0 + * Resource action: evmsclone:1 notify on node2 + * Pseudo action: evmscloneset_confirmed-pre_notify_stop_0 + * Resource action: imagestoreclone:1 notify on node2 + * Pseudo action: imagestorecloneset_confirmed-pre_notify_stop_0 + * Resource action: configstoreclone:1 notify on node2 + * Pseudo action: configstorecloneset_confirmed-pre_notify_stop_0 + * Fencing node1 + * Pseudo action: stonith_complete + * Pseudo action: evmsclone:0_post_notify_stonith_0 + * Pseudo action: imagestoreclone:0_post_notify_stonith_0 + * Pseudo action: imagestorecloneset_stop_0 + * Pseudo action: configstoreclone:0_post_notify_stonith_0 + * Pseudo action: configstorecloneset_stop_0 + * Pseudo action: imagestoreclone:0_stop_0 + * Pseudo action: imagestorecloneset_stopped_0 + * Pseudo action: configstoreclone:0_stop_0 + * Pseudo action: configstorecloneset_stopped_0 + * Pseudo action: imagestorecloneset_post_notify_stopped_0 + * Pseudo action: configstorecloneset_post_notify_stopped_0 + * Resource action: imagestoreclone:1 notify on node2 + * Pseudo action: imagestorecloneset_confirmed-post_notify_stopped_0 + * Resource action: configstoreclone:1 notify on node2 + * Pseudo action: configstorecloneset_confirmed-post_notify_stopped_0 + * Pseudo action: evmscloneset_stop_0 + * Pseudo action: imagestoreclone:0_confirmed-post_notify_stonith_0 + * Pseudo action: configstoreclone:0_confirmed-post_notify_stonith_0 + * Pseudo action: evmsclone:0_stop_0 + * Pseudo action: evmscloneset_stopped_0 + * Pseudo action: evmscloneset_post_notify_stopped_0 + * Resource action: evmsclone:1 notify on node2 + * Pseudo action: evmscloneset_confirmed-post_notify_stopped_0 + * Pseudo action: evmsclone:0_confirmed-post_notify_stonith_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node2 ] + Stopped: [ stonithclone:0 ] + Clone Set: evmscloneset [evmsclone] + Started: [ node2 ] + Stopped: [ evmsclone:0 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ node2 ] + Stopped: [ imagestoreclone:0 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node2 ] + Stopped: [ configstoreclone:0 ] + diff --git a/pengine/test10/interleave-restart.summary b/pengine/test10/interleave-restart.summary new file mode 100644 index 0000000000..3f0a9ece84 --- /dev/null +++ b/pengine/test10/interleave-restart.summary @@ -0,0 +1,96 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node1 node2 ] + Clone Set: evmscloneset [evmsclone] + evmsclone:0 (ocf::heartbeat:EvmsSCC): Started node1 FAILED + Started: [ node2 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ node1 node2 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node1 node2 ] + +Transition Summary: + * Recover evmsclone:0 (Started node1) + * Restart imagestoreclone:0 (Started node1) + * Restart configstoreclone:0 (Started node1) + +Executing cluster transition: + * Pseudo action: evmscloneset_pre_notify_stop_0 + * Pseudo action: imagestorecloneset_pre_notify_stop_0 + * Pseudo action: configstorecloneset_pre_notify_stop_0 + * Resource action: evmsclone:0 notify on node1 + * Resource action: evmsclone:1 notify on node2 + * Pseudo action: evmscloneset_confirmed-pre_notify_stop_0 + * Resource action: imagestoreclone:0 notify on node1 + * Resource action: imagestoreclone:1 notify on node2 + * Pseudo action: imagestorecloneset_confirmed-pre_notify_stop_0 + * Pseudo action: imagestorecloneset_stop_0 + * Resource action: configstoreclone:0 notify on node1 + * Resource action: configstoreclone:1 notify on node2 + * Pseudo action: configstorecloneset_confirmed-pre_notify_stop_0 + * Pseudo action: configstorecloneset_stop_0 + * Resource action: imagestoreclone:0 stop on node1 + * Pseudo action: imagestorecloneset_stopped_0 + * Resource action: configstoreclone:0 stop on node1 + * Pseudo action: configstorecloneset_stopped_0 + * Pseudo action: imagestorecloneset_post_notify_stopped_0 + * Pseudo action: configstorecloneset_post_notify_stopped_0 + * Resource action: imagestoreclone:1 notify on node2 + * Pseudo action: imagestorecloneset_confirmed-post_notify_stopped_0 + * Pseudo action: imagestorecloneset_pre_notify_start_0 + * Resource action: configstoreclone:1 notify on node2 + * Pseudo action: configstorecloneset_confirmed-post_notify_stopped_0 + * Pseudo action: configstorecloneset_pre_notify_start_0 + * Pseudo action: evmscloneset_stop_0 + * Resource action: imagestoreclone:1 notify on node2 + * Pseudo action: imagestorecloneset_confirmed-pre_notify_start_0 + * Resource action: configstoreclone:1 notify on node2 + * Pseudo action: configstorecloneset_confirmed-pre_notify_start_0 + * Resource action: evmsclone:0 stop on node1 + * Pseudo action: evmscloneset_stopped_0 + * Pseudo action: evmscloneset_post_notify_stopped_0 + * Resource action: evmsclone:1 notify on node2 + * Pseudo action: evmscloneset_confirmed-post_notify_stopped_0 + * Pseudo action: evmscloneset_pre_notify_start_0 + * Pseudo action: all_stopped + * Resource action: evmsclone:1 notify on node2 + * Pseudo action: evmscloneset_confirmed-pre_notify_start_0 + * Pseudo action: evmscloneset_start_0 + * Resource action: evmsclone:0 start on node1 + * Pseudo action: evmscloneset_running_0 + * Pseudo action: evmscloneset_post_notify_running_0 + * Resource action: evmsclone:0 notify on node1 + * Resource action: evmsclone:1 notify on node2 + * Pseudo action: evmscloneset_confirmed-post_notify_running_0 + * Pseudo action: imagestorecloneset_start_0 + * Pseudo action: configstorecloneset_start_0 + * Resource action: imagestoreclone:0 start on node1 + * Pseudo action: imagestorecloneset_running_0 + * Resource action: configstoreclone:0 start on node1 + * Pseudo action: configstorecloneset_running_0 + * Pseudo action: imagestorecloneset_post_notify_running_0 + * Pseudo action: configstorecloneset_post_notify_running_0 + * Resource action: imagestoreclone:0 notify on node1 + * Resource action: imagestoreclone:1 notify on node2 + * Pseudo action: imagestorecloneset_confirmed-post_notify_running_0 + * Resource action: configstoreclone:0 notify on node1 + * Resource action: configstoreclone:1 notify on node2 + * Pseudo action: configstorecloneset_confirmed-post_notify_running_0 + * Resource action: imagestoreclone:0 monitor=20000 on node1 + * Resource action: configstoreclone:0 monitor=20000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node1 node2 ] + Clone Set: evmscloneset [evmsclone] + Started: [ node1 node2 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ node1 node2 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node1 node2 ] + diff --git a/pengine/test10/interleave-stop.summary b/pengine/test10/interleave-stop.summary new file mode 100644 index 0000000000..fa7aa6f103 --- /dev/null +++ b/pengine/test10/interleave-stop.summary @@ -0,0 +1,73 @@ + +Current cluster status: +Node node1 (f6d93040-a9ad-4745-a647-57ed32444ca8): standby +Online: [ node2 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node1 node2 ] + Clone Set: evmscloneset [evmsclone] + Started: [ node1 node2 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ node1 node2 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node1 node2 ] + +Transition Summary: + * Stop stonithclone:0 (node1) + * Stop evmsclone:0 (node1) + * Stop imagestoreclone:0 (node1) + * Stop configstoreclone:0 (node1) + +Executing cluster transition: + * Pseudo action: stonithcloneset_stop_0 + * Pseudo action: evmscloneset_pre_notify_stop_0 + * Pseudo action: imagestorecloneset_pre_notify_stop_0 + * Pseudo action: configstorecloneset_pre_notify_stop_0 + * Resource action: evmsclone:0 notify on node1 + * Resource action: evmsclone:1 notify on node2 + * Pseudo action: evmscloneset_confirmed-pre_notify_stop_0 + * Resource action: imagestoreclone:0 notify on node1 + * Resource action: imagestoreclone:1 notify on node2 + * Pseudo action: imagestorecloneset_confirmed-pre_notify_stop_0 + * Pseudo action: imagestorecloneset_stop_0 + * Resource action: configstoreclone:0 notify on node1 + * Resource action: configstoreclone:1 notify on node2 + * Pseudo action: configstorecloneset_confirmed-pre_notify_stop_0 + * Pseudo action: configstorecloneset_stop_0 + * Resource action: imagestoreclone:0 stop on node1 + * Pseudo action: imagestorecloneset_stopped_0 + * Resource action: configstoreclone:0 stop on node1 + * Pseudo action: configstorecloneset_stopped_0 + * Pseudo action: imagestorecloneset_post_notify_stopped_0 + * Pseudo action: configstorecloneset_post_notify_stopped_0 + * Resource action: imagestoreclone:1 notify on node2 + * Pseudo action: imagestorecloneset_confirmed-post_notify_stopped_0 + * Resource action: configstoreclone:1 notify on node2 + * Pseudo action: configstorecloneset_confirmed-post_notify_stopped_0 + * Pseudo action: evmscloneset_stop_0 + * Resource action: evmsclone:0 stop on node1 + * Pseudo action: evmscloneset_stopped_0 + * Pseudo action: evmscloneset_post_notify_stopped_0 + * Resource action: evmsclone:1 notify on node2 + * Pseudo action: evmscloneset_confirmed-post_notify_stopped_0 + * Pseudo action: all_stopped + * Resource action: stonithclone:0 stop on node1 + * Pseudo action: stonithcloneset_stopped_0 + +Revised cluster status: +Node node1 (f6d93040-a9ad-4745-a647-57ed32444ca8): standby +Online: [ node2 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node2 ] + Stopped: [ stonithclone:0 ] + Clone Set: evmscloneset [evmsclone] + Started: [ node2 ] + Stopped: [ evmsclone:0 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ node2 ] + Stopped: [ imagestoreclone:0 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node2 ] + Stopped: [ configstoreclone:0 ] + diff --git a/pengine/test10/managed-0.summary b/pengine/test10/managed-0.summary new file mode 100644 index 0000000000..e1af1d5fa0 --- /dev/null +++ b/pengine/test10/managed-0.summary @@ -0,0 +1,131 @@ + +Current cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n02 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n04 + child_DoFencing:3 (stonith:ssh): Started c001n05 + child_DoFencing:4 (stonith:ssh): Started c001n06 + child_DoFencing:5 (stonith:ssh): Started c001n07 + child_DoFencing:6 (stonith:ssh): Started c001n08 + child_DoFencing:7 (stonith:ssh): Started c001n09 + +Transition Summary: + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: DcIPaddr monitor on c001n07 + * Resource action: DcIPaddr monitor on c001n06 + * Resource action: DcIPaddr monitor on c001n05 + * Resource action: DcIPaddr monitor on c001n04 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n02 + * Resource action: rsc_c001n09 monitor on c001n08 + * Resource action: rsc_c001n09 monitor on c001n07 + * Resource action: rsc_c001n09 monitor on c001n05 + * Resource action: rsc_c001n09 monitor on c001n04 + * Resource action: rsc_c001n09 monitor on c001n03 + * Resource action: rsc_c001n09 monitor on c001n02 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n02 monitor on c001n07 + * Resource action: rsc_c001n02 monitor on c001n05 + * Resource action: rsc_c001n02 monitor on c001n04 + * Resource action: rsc_c001n02 monitor on c001n09 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n03 monitor on c001n07 + * Resource action: rsc_c001n03 monitor on c001n05 + * Resource action: rsc_c001n03 monitor on c001n04 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n09 + * Resource action: rsc_c001n04 monitor on c001n08 + * Resource action: rsc_c001n04 monitor on c001n07 + * Resource action: rsc_c001n04 monitor on c001n05 + * Resource action: rsc_c001n04 monitor on c001n03 + * Resource action: rsc_c001n04 monitor on c001n02 + * Resource action: rsc_c001n04 monitor on c001n09 + * Resource action: rsc_c001n05 monitor on c001n08 + * Resource action: rsc_c001n05 monitor on c001n07 + * Resource action: rsc_c001n05 monitor on c001n06 + * Resource action: rsc_c001n05 monitor on c001n04 + * Resource action: rsc_c001n05 monitor on c001n03 + * Resource action: rsc_c001n05 monitor on c001n02 + * Resource action: rsc_c001n05 monitor on c001n09 + * Resource action: rsc_c001n06 monitor on c001n08 + * Resource action: rsc_c001n06 monitor on c001n07 + * Resource action: rsc_c001n06 monitor on c001n05 + * Resource action: rsc_c001n06 monitor on c001n04 + * Resource action: rsc_c001n06 monitor on c001n03 + * Resource action: rsc_c001n06 monitor on c001n09 + * Resource action: rsc_c001n07 monitor on c001n08 + * Resource action: rsc_c001n07 monitor on c001n06 + * Resource action: rsc_c001n07 monitor on c001n05 + * Resource action: rsc_c001n07 monitor on c001n04 + * Resource action: rsc_c001n07 monitor on c001n09 + * Resource action: rsc_c001n08 monitor on c001n07 + * Resource action: rsc_c001n08 monitor on c001n05 + * Resource action: rsc_c001n08 monitor on c001n09 + * Resource action: child_DoFencing:0 monitor on c001n08 + * Resource action: child_DoFencing:0 monitor on c001n07 + * Resource action: child_DoFencing:0 monitor on c001n09 + * Resource action: child_DoFencing:1 monitor on c001n08 + * Resource action: child_DoFencing:1 monitor on c001n07 + * Resource action: child_DoFencing:1 monitor on c001n02 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n07 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n09 + * Resource action: child_DoFencing:3 monitor on c001n08 + * Resource action: child_DoFencing:3 monitor on c001n04 + * Resource action: child_DoFencing:3 monitor on c001n02 + * Resource action: child_DoFencing:4 monitor on c001n05 + * Resource action: child_DoFencing:4 monitor on c001n03 + * Resource action: child_DoFencing:4 monitor on c001n09 + * Resource action: child_DoFencing:5 monitor on c001n08 + * Resource action: child_DoFencing:5 monitor on c001n05 + * Resource action: child_DoFencing:5 monitor on c001n04 + * Resource action: child_DoFencing:5 monitor on c001n02 + * Resource action: child_DoFencing:6 monitor on c001n07 + * Resource action: child_DoFencing:6 monitor on c001n05 + * Resource action: child_DoFencing:6 monitor on c001n04 + * Resource action: child_DoFencing:6 monitor on c001n09 + * Resource action: child_DoFencing:7 monitor on c001n08 + * Resource action: child_DoFencing:7 monitor on c001n07 + * Resource action: child_DoFencing:7 monitor on c001n05 + * Resource action: child_DoFencing:7 monitor on c001n04 + * Resource action: child_DoFencing:7 monitor on c001n03 + * Resource action: child_DoFencing:7 monitor on c001n02 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n02 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n04 + child_DoFencing:3 (stonith:ssh): Started c001n05 + child_DoFencing:4 (stonith:ssh): Started c001n06 + child_DoFencing:5 (stonith:ssh): Started c001n07 + child_DoFencing:6 (stonith:ssh): Started c001n08 + child_DoFencing:7 (stonith:ssh): Started c001n09 + diff --git a/pengine/test10/managed-1.summary b/pengine/test10/managed-1.summary new file mode 100644 index 0000000000..520208e4a1 --- /dev/null +++ b/pengine/test10/managed-1.summary @@ -0,0 +1,131 @@ + +Current cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + Clone Set: DoFencing [child_DoFencing] (unique) (unmanaged) + child_DoFencing:0 (stonith:ssh): Started c001n02 (unmanaged) + child_DoFencing:1 (stonith:ssh): Started c001n03 (unmanaged) + child_DoFencing:2 (stonith:ssh): Started c001n04 (unmanaged) + child_DoFencing:3 (stonith:ssh): Started c001n05 (unmanaged) + child_DoFencing:4 (stonith:ssh): Started c001n06 (unmanaged) + child_DoFencing:5 (stonith:ssh): Started c001n07 (unmanaged) + child_DoFencing:6 (stonith:ssh): Started c001n08 (unmanaged) + child_DoFencing:7 (stonith:ssh): Started c001n09 (unmanaged) + +Transition Summary: + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: DcIPaddr monitor on c001n07 + * Resource action: DcIPaddr monitor on c001n06 + * Resource action: DcIPaddr monitor on c001n05 + * Resource action: DcIPaddr monitor on c001n04 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n02 + * Resource action: rsc_c001n09 monitor on c001n08 + * Resource action: rsc_c001n09 monitor on c001n07 + * Resource action: rsc_c001n09 monitor on c001n05 + * Resource action: rsc_c001n09 monitor on c001n04 + * Resource action: rsc_c001n09 monitor on c001n03 + * Resource action: rsc_c001n09 monitor on c001n02 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n02 monitor on c001n07 + * Resource action: rsc_c001n02 monitor on c001n05 + * Resource action: rsc_c001n02 monitor on c001n04 + * Resource action: rsc_c001n02 monitor on c001n09 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n03 monitor on c001n07 + * Resource action: rsc_c001n03 monitor on c001n05 + * Resource action: rsc_c001n03 monitor on c001n04 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n09 + * Resource action: rsc_c001n04 monitor on c001n08 + * Resource action: rsc_c001n04 monitor on c001n07 + * Resource action: rsc_c001n04 monitor on c001n05 + * Resource action: rsc_c001n04 monitor on c001n03 + * Resource action: rsc_c001n04 monitor on c001n02 + * Resource action: rsc_c001n04 monitor on c001n09 + * Resource action: rsc_c001n05 monitor on c001n08 + * Resource action: rsc_c001n05 monitor on c001n07 + * Resource action: rsc_c001n05 monitor on c001n06 + * Resource action: rsc_c001n05 monitor on c001n04 + * Resource action: rsc_c001n05 monitor on c001n03 + * Resource action: rsc_c001n05 monitor on c001n02 + * Resource action: rsc_c001n05 monitor on c001n09 + * Resource action: rsc_c001n06 monitor on c001n08 + * Resource action: rsc_c001n06 monitor on c001n07 + * Resource action: rsc_c001n06 monitor on c001n05 + * Resource action: rsc_c001n06 monitor on c001n04 + * Resource action: rsc_c001n06 monitor on c001n03 + * Resource action: rsc_c001n06 monitor on c001n09 + * Resource action: rsc_c001n07 monitor on c001n08 + * Resource action: rsc_c001n07 monitor on c001n06 + * Resource action: rsc_c001n07 monitor on c001n05 + * Resource action: rsc_c001n07 monitor on c001n04 + * Resource action: rsc_c001n07 monitor on c001n09 + * Resource action: rsc_c001n08 monitor on c001n07 + * Resource action: rsc_c001n08 monitor on c001n05 + * Resource action: rsc_c001n08 monitor on c001n09 + * Resource action: child_DoFencing:0 monitor on c001n08 + * Resource action: child_DoFencing:0 monitor on c001n07 + * Resource action: child_DoFencing:0 monitor on c001n09 + * Resource action: child_DoFencing:1 monitor on c001n08 + * Resource action: child_DoFencing:1 monitor on c001n07 + * Resource action: child_DoFencing:1 monitor on c001n02 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n07 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n09 + * Resource action: child_DoFencing:3 monitor on c001n08 + * Resource action: child_DoFencing:3 monitor on c001n04 + * Resource action: child_DoFencing:3 monitor on c001n02 + * Resource action: child_DoFencing:4 monitor on c001n05 + * Resource action: child_DoFencing:4 monitor on c001n03 + * Resource action: child_DoFencing:4 monitor on c001n09 + * Resource action: child_DoFencing:5 monitor on c001n08 + * Resource action: child_DoFencing:5 monitor on c001n05 + * Resource action: child_DoFencing:5 monitor on c001n04 + * Resource action: child_DoFencing:5 monitor on c001n02 + * Resource action: child_DoFencing:6 monitor on c001n07 + * Resource action: child_DoFencing:6 monitor on c001n05 + * Resource action: child_DoFencing:6 monitor on c001n04 + * Resource action: child_DoFencing:6 monitor on c001n09 + * Resource action: child_DoFencing:7 monitor on c001n08 + * Resource action: child_DoFencing:7 monitor on c001n07 + * Resource action: child_DoFencing:7 monitor on c001n05 + * Resource action: child_DoFencing:7 monitor on c001n04 + * Resource action: child_DoFencing:7 monitor on c001n03 + * Resource action: child_DoFencing:7 monitor on c001n02 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + Clone Set: DoFencing [child_DoFencing] (unique) (unmanaged) + child_DoFencing:0 (stonith:ssh): Started c001n02 (unmanaged) + child_DoFencing:1 (stonith:ssh): Started c001n03 (unmanaged) + child_DoFencing:2 (stonith:ssh): Started c001n04 (unmanaged) + child_DoFencing:3 (stonith:ssh): Started c001n05 (unmanaged) + child_DoFencing:4 (stonith:ssh): Started c001n06 (unmanaged) + child_DoFencing:5 (stonith:ssh): Started c001n07 (unmanaged) + child_DoFencing:6 (stonith:ssh): Started c001n08 (unmanaged) + child_DoFencing:7 (stonith:ssh): Started c001n09 (unmanaged) + diff --git a/pengine/test10/managed-2.summary b/pengine/test10/managed-2.summary new file mode 100644 index 0000000000..df7cf9a1aa --- /dev/null +++ b/pengine/test10/managed-2.summary @@ -0,0 +1,165 @@ + +Current cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + Clone Set: DoFencing [child_DoFencing] (unique) (unmanaged) + child_DoFencing:0 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:1 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:2 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:3 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:4 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:5 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:6 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:7 (stonith:ssh): Stopped (unmanaged) + +Transition Summary: + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: DcIPaddr monitor on c001n07 + * Resource action: DcIPaddr monitor on c001n06 + * Resource action: DcIPaddr monitor on c001n05 + * Resource action: DcIPaddr monitor on c001n04 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n02 + * Resource action: rsc_c001n09 monitor on c001n08 + * Resource action: rsc_c001n09 monitor on c001n07 + * Resource action: rsc_c001n09 monitor on c001n05 + * Resource action: rsc_c001n09 monitor on c001n04 + * Resource action: rsc_c001n09 monitor on c001n03 + * Resource action: rsc_c001n09 monitor on c001n02 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n02 monitor on c001n07 + * Resource action: rsc_c001n02 monitor on c001n05 + * Resource action: rsc_c001n02 monitor on c001n04 + * Resource action: rsc_c001n02 monitor on c001n09 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n03 monitor on c001n07 + * Resource action: rsc_c001n03 monitor on c001n05 + * Resource action: rsc_c001n03 monitor on c001n04 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n09 + * Resource action: rsc_c001n04 monitor on c001n08 + * Resource action: rsc_c001n04 monitor on c001n07 + * Resource action: rsc_c001n04 monitor on c001n05 + * Resource action: rsc_c001n04 monitor on c001n03 + * Resource action: rsc_c001n04 monitor on c001n02 + * Resource action: rsc_c001n04 monitor on c001n09 + * Resource action: rsc_c001n05 monitor on c001n08 + * Resource action: rsc_c001n05 monitor on c001n07 + * Resource action: rsc_c001n05 monitor on c001n06 + * Resource action: rsc_c001n05 monitor on c001n04 + * Resource action: rsc_c001n05 monitor on c001n03 + * Resource action: rsc_c001n05 monitor on c001n02 + * Resource action: rsc_c001n05 monitor on c001n09 + * Resource action: rsc_c001n06 monitor on c001n08 + * Resource action: rsc_c001n06 monitor on c001n07 + * Resource action: rsc_c001n06 monitor on c001n05 + * Resource action: rsc_c001n06 monitor on c001n04 + * Resource action: rsc_c001n06 monitor on c001n03 + * Resource action: rsc_c001n06 monitor on c001n09 + * Resource action: rsc_c001n07 monitor on c001n08 + * Resource action: rsc_c001n07 monitor on c001n06 + * Resource action: rsc_c001n07 monitor on c001n05 + * Resource action: rsc_c001n07 monitor on c001n04 + * Resource action: rsc_c001n07 monitor on c001n09 + * Resource action: rsc_c001n08 monitor on c001n07 + * Resource action: rsc_c001n08 monitor on c001n05 + * Resource action: rsc_c001n08 monitor on c001n09 + * Resource action: child_DoFencing:0 monitor on c001n08 + * Resource action: child_DoFencing:0 monitor on c001n07 + * Resource action: child_DoFencing:0 monitor on c001n06 + * Resource action: child_DoFencing:0 monitor on c001n05 + * Resource action: child_DoFencing:0 monitor on c001n04 + * Resource action: child_DoFencing:0 monitor on c001n03 + * Resource action: child_DoFencing:0 monitor on c001n02 + * Resource action: child_DoFencing:0 monitor on c001n09 + * Resource action: child_DoFencing:1 monitor on c001n08 + * Resource action: child_DoFencing:1 monitor on c001n07 + * Resource action: child_DoFencing:1 monitor on c001n06 + * Resource action: child_DoFencing:1 monitor on c001n05 + * Resource action: child_DoFencing:1 monitor on c001n04 + * Resource action: child_DoFencing:1 monitor on c001n03 + * Resource action: child_DoFencing:1 monitor on c001n02 + * Resource action: child_DoFencing:1 monitor on c001n09 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n07 + * Resource action: child_DoFencing:2 monitor on c001n06 + * Resource action: child_DoFencing:2 monitor on c001n05 + * Resource action: child_DoFencing:2 monitor on c001n04 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n02 + * Resource action: child_DoFencing:2 monitor on c001n09 + * Resource action: child_DoFencing:3 monitor on c001n08 + * Resource action: child_DoFencing:3 monitor on c001n07 + * Resource action: child_DoFencing:3 monitor on c001n06 + * Resource action: child_DoFencing:3 monitor on c001n05 + * Resource action: child_DoFencing:3 monitor on c001n04 + * Resource action: child_DoFencing:3 monitor on c001n03 + * Resource action: child_DoFencing:3 monitor on c001n02 + * Resource action: child_DoFencing:3 monitor on c001n09 + * Resource action: child_DoFencing:4 monitor on c001n08 + * Resource action: child_DoFencing:4 monitor on c001n07 + * Resource action: child_DoFencing:4 monitor on c001n06 + * Resource action: child_DoFencing:4 monitor on c001n05 + * Resource action: child_DoFencing:4 monitor on c001n04 + * Resource action: child_DoFencing:4 monitor on c001n03 + * Resource action: child_DoFencing:4 monitor on c001n02 + * Resource action: child_DoFencing:4 monitor on c001n09 + * Resource action: child_DoFencing:5 monitor on c001n08 + * Resource action: child_DoFencing:5 monitor on c001n07 + * Resource action: child_DoFencing:5 monitor on c001n06 + * Resource action: child_DoFencing:5 monitor on c001n05 + * Resource action: child_DoFencing:5 monitor on c001n04 + * Resource action: child_DoFencing:5 monitor on c001n03 + * Resource action: child_DoFencing:5 monitor on c001n02 + * Resource action: child_DoFencing:5 monitor on c001n09 + * Resource action: child_DoFencing:6 monitor on c001n08 + * Resource action: child_DoFencing:6 monitor on c001n07 + * Resource action: child_DoFencing:6 monitor on c001n06 + * Resource action: child_DoFencing:6 monitor on c001n05 + * Resource action: child_DoFencing:6 monitor on c001n04 + * Resource action: child_DoFencing:6 monitor on c001n03 + * Resource action: child_DoFencing:6 monitor on c001n02 + * Resource action: child_DoFencing:6 monitor on c001n09 + * Resource action: child_DoFencing:7 monitor on c001n08 + * Resource action: child_DoFencing:7 monitor on c001n07 + * Resource action: child_DoFencing:7 monitor on c001n06 + * Resource action: child_DoFencing:7 monitor on c001n05 + * Resource action: child_DoFencing:7 monitor on c001n04 + * Resource action: child_DoFencing:7 monitor on c001n03 + * Resource action: child_DoFencing:7 monitor on c001n02 + * Resource action: child_DoFencing:7 monitor on c001n09 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ c001n09 c001n02 c001n03 c001n04 c001n05 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n09 (ocf::heartbeat:IPaddr): Started c001n09 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + Clone Set: DoFencing [child_DoFencing] (unique) (unmanaged) + child_DoFencing:0 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:1 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:2 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:3 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:4 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:5 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:6 (stonith:ssh): Stopped (unmanaged) + child_DoFencing:7 (stonith:ssh): Stopped (unmanaged) + diff --git a/pengine/test10/master-0.summary b/pengine/test10/master-0.summary new file mode 100644 index 0000000000..8403e8eb25 --- /dev/null +++ b/pengine/test10/master-0.summary @@ -0,0 +1,46 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Stopped + child_rsc1:1 (heartbeat:apache): Stopped + child_rsc1:2 (heartbeat:apache): Stopped + child_rsc1:3 (heartbeat:apache): Stopped + child_rsc1:4 (heartbeat:apache): Stopped + +Transition Summary: + * Start child_rsc1:0 (node1) + * Start child_rsc1:1 (node2) + * Start child_rsc1:2 (node1) + * Start child_rsc1:3 (node2) + +Executing cluster transition: + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:0 monitor on node1 + * Resource action: child_rsc1:1 monitor on node2 + * Resource action: child_rsc1:1 monitor on node1 + * Resource action: child_rsc1:2 monitor on node2 + * Resource action: child_rsc1:2 monitor on node1 + * Resource action: child_rsc1:3 monitor on node2 + * Resource action: child_rsc1:3 monitor on node1 + * Resource action: child_rsc1:4 monitor on node2 + * Resource action: child_rsc1:4 monitor on node1 + * Pseudo action: rsc1_start_0 + * Pseudo action: probe_complete + * Resource action: child_rsc1:0 start on node1 + * Resource action: child_rsc1:1 start on node2 + * Resource action: child_rsc1:2 start on node1 + * Resource action: child_rsc1:3 start on node2 + * Pseudo action: rsc1_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node2 + child_rsc1:2 (heartbeat:apache): Started node1 + child_rsc1:3 (heartbeat:apache): Started node2 + child_rsc1:4 (heartbeat:apache): Stopped + diff --git a/pengine/test10/master-1.summary b/pengine/test10/master-1.summary new file mode 100644 index 0000000000..d65778afa0 --- /dev/null +++ b/pengine/test10/master-1.summary @@ -0,0 +1,50 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Stopped + child_rsc1:1 (heartbeat:apache): Stopped + child_rsc1:2 (heartbeat:apache): Stopped + child_rsc1:3 (heartbeat:apache): Stopped + child_rsc1:4 (heartbeat:apache): Stopped + +Transition Summary: + * Start child_rsc1:0 (node1) + * Start child_rsc1:1 (node2) + * Promote child_rsc1:1 (Stopped -> Master node2) + * Start child_rsc1:2 (node1) + * Start child_rsc1:3 (node2) + +Executing cluster transition: + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:0 monitor on node1 + * Resource action: child_rsc1:1 monitor on node2 + * Resource action: child_rsc1:1 monitor on node1 + * Resource action: child_rsc1:2 monitor on node2 + * Resource action: child_rsc1:2 monitor on node1 + * Resource action: child_rsc1:3 monitor on node2 + * Resource action: child_rsc1:3 monitor on node1 + * Resource action: child_rsc1:4 monitor on node2 + * Resource action: child_rsc1:4 monitor on node1 + * Pseudo action: rsc1_start_0 + * Pseudo action: probe_complete + * Resource action: child_rsc1:0 start on node1 + * Resource action: child_rsc1:1 start on node2 + * Resource action: child_rsc1:2 start on node1 + * Resource action: child_rsc1:3 start on node2 + * Pseudo action: rsc1_running_0 + * Pseudo action: rsc1_promote_0 + * Resource action: child_rsc1:1 promote on node2 + * Pseudo action: rsc1_promoted_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Master node2 + child_rsc1:2 (heartbeat:apache): Started node1 + child_rsc1:3 (heartbeat:apache): Started node2 + child_rsc1:4 (heartbeat:apache): Stopped + diff --git a/pengine/test10/master-10.summary b/pengine/test10/master-10.summary new file mode 100644 index 0000000000..d8563570c7 --- /dev/null +++ b/pengine/test10/master-10.summary @@ -0,0 +1,74 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Stopped + child_rsc1:1 (heartbeat:apache): Stopped + child_rsc1:2 (heartbeat:apache): Stopped + child_rsc1:3 (heartbeat:apache): Stopped + child_rsc1:4 (heartbeat:apache): Stopped + +Transition Summary: + * Start child_rsc1:0 (node1) + * Promote child_rsc1:0 (Stopped -> Master node1) + * Start child_rsc1:1 (node2) + * Start child_rsc1:2 (node1) + * Start child_rsc1:3 (node2) + +Executing cluster transition: + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:0 monitor on node1 + * Resource action: child_rsc1:1 monitor on node2 + * Resource action: child_rsc1:1 monitor on node1 + * Resource action: child_rsc1:2 monitor on node2 + * Resource action: child_rsc1:2 monitor on node1 + * Resource action: child_rsc1:3 monitor on node2 + * Resource action: child_rsc1:3 monitor on node1 + * Resource action: child_rsc1:4 monitor on node2 + * Resource action: child_rsc1:4 monitor on node1 + * Pseudo action: rsc1_pre_notify_start_0 + * Pseudo action: probe_complete + * Pseudo action: rsc1_confirmed-pre_notify_start_0 + * Pseudo action: rsc1_start_0 + * Resource action: child_rsc1:0 start on node1 + * Resource action: child_rsc1:1 start on node2 + * Resource action: child_rsc1:2 start on node1 + * Resource action: child_rsc1:3 start on node2 + * Pseudo action: rsc1_running_0 + * Pseudo action: rsc1_post_notify_running_0 + * Resource action: child_rsc1:0 notify on node1 + * Resource action: child_rsc1:1 notify on node2 + * Resource action: child_rsc1:2 notify on node1 + * Resource action: child_rsc1:3 notify on node2 + * Pseudo action: rsc1_confirmed-post_notify_running_0 + * Pseudo action: rsc1_pre_notify_promote_0 + * Resource action: child_rsc1:0 notify on node1 + * Resource action: child_rsc1:1 notify on node2 + * Resource action: child_rsc1:2 notify on node1 + * Resource action: child_rsc1:3 notify on node2 + * Pseudo action: rsc1_confirmed-pre_notify_promote_0 + * Pseudo action: rsc1_promote_0 + * Resource action: child_rsc1:0 promote on node1 + * Pseudo action: rsc1_promoted_0 + * Pseudo action: rsc1_post_notify_promoted_0 + * Resource action: child_rsc1:0 notify on node1 + * Resource action: child_rsc1:1 notify on node2 + * Resource action: child_rsc1:2 notify on node1 + * Resource action: child_rsc1:3 notify on node2 + * Pseudo action: rsc1_confirmed-post_notify_promoted_0 + * Resource action: child_rsc1:0 monitor=11000 on node1 + * Resource action: child_rsc1:1 monitor=1000 on node2 + * Resource action: child_rsc1:2 monitor=1000 on node1 + * Resource action: child_rsc1:3 monitor=1000 on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Master node1 + child_rsc1:1 (heartbeat:apache): Started node2 + child_rsc1:2 (heartbeat:apache): Started node1 + child_rsc1:3 (heartbeat:apache): Started node2 + child_rsc1:4 (heartbeat:apache): Stopped + diff --git a/pengine/test10/master-11.summary b/pengine/test10/master-11.summary new file mode 100644 index 0000000000..22e44dccf1 --- /dev/null +++ b/pengine/test10/master-11.summary @@ -0,0 +1,40 @@ + +Current cluster status: +Online: [ node1 node2 ] + + simple-rsc (heartbeat:apache): Stopped + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Stopped + child_rsc1:1 (heartbeat:apache): Stopped + +Transition Summary: + * Start simple-rsc (node2) + * Start child_rsc1:0 (node1) + * Start child_rsc1:1 (node2) + * Promote child_rsc1:1 (Stopped -> Master node2) + +Executing cluster transition: + * Resource action: simple-rsc monitor on node2 + * Resource action: simple-rsc monitor on node1 + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:0 monitor on node1 + * Resource action: child_rsc1:1 monitor on node2 + * Resource action: child_rsc1:1 monitor on node1 + * Pseudo action: rsc1_start_0 + * Pseudo action: probe_complete + * Resource action: simple-rsc start on node2 + * Resource action: child_rsc1:0 start on node1 + * Resource action: child_rsc1:1 start on node2 + * Pseudo action: rsc1_running_0 + * Pseudo action: rsc1_promote_0 + * Resource action: child_rsc1:1 promote on node2 + * Pseudo action: rsc1_promoted_0 + +Revised cluster status: +Online: [ node1 node2 ] + + simple-rsc (heartbeat:apache): Started node2 + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Master node2 + diff --git a/pengine/test10/master-12.summary b/pengine/test10/master-12.summary new file mode 100644 index 0000000000..b4197988a0 --- /dev/null +++ b/pengine/test10/master-12.summary @@ -0,0 +1,31 @@ + +Current cluster status: +Online: [ sel3 sel4 ] + + Master/Slave Set: ms-drbd0 [drbd0] + Masters: [ sel3 ] + Slaves: [ sel4 ] + Master/Slave Set: ms-sf [sf] (unique) + sf:0 (ocf::heartbeat:Stateful): Started sel3 + sf:1 (ocf::heartbeat:Stateful): Started sel4 + fs0 (ocf::heartbeat:Filesystem): Started sel3 + +Transition Summary: + * Promote sf:0 (Slave -> Master sel3) + +Executing cluster transition: + * Pseudo action: ms-sf_promote_0 + * Resource action: sf:0 promote on sel3 + * Pseudo action: ms-sf_promoted_0 + +Revised cluster status: +Online: [ sel3 sel4 ] + + Master/Slave Set: ms-drbd0 [drbd0] + Masters: [ sel3 ] + Slaves: [ sel4 ] + Master/Slave Set: ms-sf [sf] (unique) + sf:0 (ocf::heartbeat:Stateful): Master sel3 + sf:1 (ocf::heartbeat:Stateful): Started sel4 + fs0 (ocf::heartbeat:Filesystem): Started sel3 + diff --git a/pengine/test10/master-13.summary b/pengine/test10/master-13.summary new file mode 100644 index 0000000000..db4ddfde35 --- /dev/null +++ b/pengine/test10/master-13.summary @@ -0,0 +1,60 @@ + +Current cluster status: +Online: [ frigg odin ] + + Master/Slave Set: ms_drbd [drbd0] + Masters: [ frigg ] + Slaves: [ odin ] + Resource Group: group + IPaddr0 (ocf::heartbeat:IPaddr): Stopped + MailTo (ocf::heartbeat:MailTo): Stopped + +Transition Summary: + * Demote drbd0:0 (Master -> Slave frigg) + * Promote drbd0:1 (Slave -> Master odin) + * Start IPaddr0 (odin) + * Start MailTo (odin) + +Executing cluster transition: + * Resource action: drbd0:0 cancel=10000 on frigg + * Resource action: drbd0:1 cancel=12000 on odin + * Pseudo action: ms_drbd_pre_notify_demote_0 + * Resource action: drbd0:0 notify on frigg + * Resource action: drbd0:1 notify on odin + * Pseudo action: ms_drbd_confirmed-pre_notify_demote_0 + * Pseudo action: ms_drbd_demote_0 + * Resource action: drbd0:0 demote on frigg + * Pseudo action: ms_drbd_demoted_0 + * Pseudo action: ms_drbd_post_notify_demoted_0 + * Resource action: drbd0:0 notify on frigg + * Resource action: drbd0:1 notify on odin + * Pseudo action: ms_drbd_confirmed-post_notify_demoted_0 + * Pseudo action: ms_drbd_pre_notify_promote_0 + * Resource action: drbd0:0 notify on frigg + * Resource action: drbd0:1 notify on odin + * Pseudo action: ms_drbd_confirmed-pre_notify_promote_0 + * Pseudo action: ms_drbd_promote_0 + * Resource action: drbd0:1 promote on odin + * Pseudo action: ms_drbd_promoted_0 + * Pseudo action: ms_drbd_post_notify_promoted_0 + * Resource action: drbd0:0 notify on frigg + * Resource action: drbd0:1 notify on odin + * Pseudo action: ms_drbd_confirmed-post_notify_promoted_0 + * Pseudo action: group_start_0 + * Resource action: IPaddr0 start on odin + * Resource action: MailTo start on odin + * Resource action: drbd0:0 monitor=12000 on frigg + * Resource action: drbd0:1 monitor=10000 on odin + * Pseudo action: group_running_0 + * Resource action: IPaddr0 monitor=5000 on odin + +Revised cluster status: +Online: [ frigg odin ] + + Master/Slave Set: ms_drbd [drbd0] + Masters: [ odin ] + Slaves: [ frigg ] + Resource Group: group + IPaddr0 (ocf::heartbeat:IPaddr): Started odin + MailTo (ocf::heartbeat:MailTo): Started odin + diff --git a/pengine/test10/master-2.summary b/pengine/test10/master-2.summary new file mode 100644 index 0000000000..7482495813 --- /dev/null +++ b/pengine/test10/master-2.summary @@ -0,0 +1,70 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Stopped + child_rsc1:1 (heartbeat:apache): Stopped + child_rsc1:2 (heartbeat:apache): Stopped + child_rsc1:3 (heartbeat:apache): Stopped + child_rsc1:4 (heartbeat:apache): Stopped + +Transition Summary: + * Start child_rsc1:0 (node1) + * Promote child_rsc1:0 (Stopped -> Master node1) + * Start child_rsc1:1 (node2) + * Start child_rsc1:2 (node1) + * Start child_rsc1:3 (node2) + +Executing cluster transition: + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:0 monitor on node1 + * Resource action: child_rsc1:1 monitor on node2 + * Resource action: child_rsc1:1 monitor on node1 + * Resource action: child_rsc1:2 monitor on node2 + * Resource action: child_rsc1:2 monitor on node1 + * Resource action: child_rsc1:3 monitor on node2 + * Resource action: child_rsc1:3 monitor on node1 + * Resource action: child_rsc1:4 monitor on node2 + * Resource action: child_rsc1:4 monitor on node1 + * Pseudo action: rsc1_pre_notify_start_0 + * Pseudo action: probe_complete + * Pseudo action: rsc1_confirmed-pre_notify_start_0 + * Pseudo action: rsc1_start_0 + * Resource action: child_rsc1:0 start on node1 + * Resource action: child_rsc1:1 start on node2 + * Resource action: child_rsc1:2 start on node1 + * Resource action: child_rsc1:3 start on node2 + * Pseudo action: rsc1_running_0 + * Pseudo action: rsc1_post_notify_running_0 + * Resource action: child_rsc1:0 notify on node1 + * Resource action: child_rsc1:1 notify on node2 + * Resource action: child_rsc1:2 notify on node1 + * Resource action: child_rsc1:3 notify on node2 + * Pseudo action: rsc1_confirmed-post_notify_running_0 + * Pseudo action: rsc1_pre_notify_promote_0 + * Resource action: child_rsc1:0 notify on node1 + * Resource action: child_rsc1:1 notify on node2 + * Resource action: child_rsc1:2 notify on node1 + * Resource action: child_rsc1:3 notify on node2 + * Pseudo action: rsc1_confirmed-pre_notify_promote_0 + * Pseudo action: rsc1_promote_0 + * Resource action: child_rsc1:0 promote on node1 + * Pseudo action: rsc1_promoted_0 + * Pseudo action: rsc1_post_notify_promoted_0 + * Resource action: child_rsc1:0 notify on node1 + * Resource action: child_rsc1:1 notify on node2 + * Resource action: child_rsc1:2 notify on node1 + * Resource action: child_rsc1:3 notify on node2 + * Pseudo action: rsc1_confirmed-post_notify_promoted_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Master node1 + child_rsc1:1 (heartbeat:apache): Started node2 + child_rsc1:2 (heartbeat:apache): Started node1 + child_rsc1:3 (heartbeat:apache): Started node2 + child_rsc1:4 (heartbeat:apache): Stopped + diff --git a/pengine/test10/master-3.summary b/pengine/test10/master-3.summary new file mode 100644 index 0000000000..d65778afa0 --- /dev/null +++ b/pengine/test10/master-3.summary @@ -0,0 +1,50 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Stopped + child_rsc1:1 (heartbeat:apache): Stopped + child_rsc1:2 (heartbeat:apache): Stopped + child_rsc1:3 (heartbeat:apache): Stopped + child_rsc1:4 (heartbeat:apache): Stopped + +Transition Summary: + * Start child_rsc1:0 (node1) + * Start child_rsc1:1 (node2) + * Promote child_rsc1:1 (Stopped -> Master node2) + * Start child_rsc1:2 (node1) + * Start child_rsc1:3 (node2) + +Executing cluster transition: + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:0 monitor on node1 + * Resource action: child_rsc1:1 monitor on node2 + * Resource action: child_rsc1:1 monitor on node1 + * Resource action: child_rsc1:2 monitor on node2 + * Resource action: child_rsc1:2 monitor on node1 + * Resource action: child_rsc1:3 monitor on node2 + * Resource action: child_rsc1:3 monitor on node1 + * Resource action: child_rsc1:4 monitor on node2 + * Resource action: child_rsc1:4 monitor on node1 + * Pseudo action: rsc1_start_0 + * Pseudo action: probe_complete + * Resource action: child_rsc1:0 start on node1 + * Resource action: child_rsc1:1 start on node2 + * Resource action: child_rsc1:2 start on node1 + * Resource action: child_rsc1:3 start on node2 + * Pseudo action: rsc1_running_0 + * Pseudo action: rsc1_promote_0 + * Resource action: child_rsc1:1 promote on node2 + * Pseudo action: rsc1_promoted_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Master/Slave Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Master node2 + child_rsc1:2 (heartbeat:apache): Started node1 + child_rsc1:3 (heartbeat:apache): Started node2 + child_rsc1:4 (heartbeat:apache): Stopped + diff --git a/pengine/test10/master-4.summary b/pengine/test10/master-4.summary new file mode 100644 index 0000000000..81784ee8f3 --- /dev/null +++ b/pengine/test10/master-4.summary @@ -0,0 +1,93 @@ + +Current cluster status: +Online: [ c001n08 c001n03 c001n01 c001n02 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n08 + Resource Group: group-1 + ocf_child (ocf::heartbeat:IPaddr): Started c001n03 + heartbeat_child (heartbeat:IPaddr): Started c001n03 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n01 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n08 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n01 + child_DoFencing:3 (stonith:ssh): Started c001n02 + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n01 + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n01 + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + +Transition Summary: + * Promote ocf_msdummy:0 (Slave -> Master c001n08) + +Executing cluster transition: + * Resource action: child_DoFencing:1 monitor on c001n02 + * Resource action: child_DoFencing:1 monitor on c001n01 + * Resource action: child_DoFencing:1 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n02 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:3 monitor on c001n01 + * Resource action: child_DoFencing:3 monitor on c001n03 + * Resource action: child_DoFencing:3 monitor on c001n08 + * Resource action: ocf_msdummy:0 cancel=5000 on c001n08 + * Resource action: ocf_msdummy:2 monitor on c001n02 + * Resource action: ocf_msdummy:2 monitor on c001n03 + * Resource action: ocf_msdummy:2 monitor on c001n08 + * Resource action: ocf_msdummy:3 monitor on c001n02 + * Resource action: ocf_msdummy:3 monitor on c001n01 + * Resource action: ocf_msdummy:3 monitor on c001n03 + * Resource action: ocf_msdummy:4 monitor on c001n02 + * Resource action: ocf_msdummy:4 monitor on c001n01 + * Resource action: ocf_msdummy:4 monitor on c001n08 + * Resource action: ocf_msdummy:5 monitor on c001n02 + * Resource action: ocf_msdummy:5 monitor on c001n03 + * Resource action: ocf_msdummy:5 monitor on c001n08 + * Resource action: ocf_msdummy:6 monitor on c001n01 + * Resource action: ocf_msdummy:6 monitor on c001n03 + * Resource action: ocf_msdummy:6 monitor on c001n08 + * Resource action: ocf_msdummy:7 monitor on c001n01 + * Resource action: ocf_msdummy:7 monitor on c001n03 + * Resource action: ocf_msdummy:7 monitor on c001n08 + * Pseudo action: master_rsc_1_promote_0 + * Pseudo action: probe_complete + * Resource action: ocf_msdummy:0 promote on c001n08 + * Pseudo action: master_rsc_1_promoted_0 + * Resource action: ocf_msdummy:0 monitor=6000 on c001n08 + +Revised cluster status: +Online: [ c001n08 c001n03 c001n01 c001n02 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n08 + Resource Group: group-1 + ocf_child (ocf::heartbeat:IPaddr): Started c001n03 + heartbeat_child (heartbeat:IPaddr): Started c001n03 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n01 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n08 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n01 + child_DoFencing:3 (stonith:ssh): Started c001n02 + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Master c001n08 + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n01 + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n01 + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + diff --git a/pengine/test10/master-5.summary b/pengine/test10/master-5.summary new file mode 100644 index 0000000000..587403296a --- /dev/null +++ b/pengine/test10/master-5.summary @@ -0,0 +1,87 @@ + +Current cluster status: +Online: [ c001n08 c001n03 c001n01 c001n02 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n08 + Resource Group: group-1 + ocf_child (ocf::heartbeat:IPaddr): Started c001n03 + heartbeat_child (heartbeat:IPaddr): Started c001n03 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n01 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n08 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n01 + child_DoFencing:3 (stonith:ssh): Started c001n02 + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Master c001n08 + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n01 + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n01 + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + +Transition Summary: + +Executing cluster transition: + * Resource action: child_DoFencing:1 monitor on c001n02 + * Resource action: child_DoFencing:1 monitor on c001n01 + * Resource action: child_DoFencing:1 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n02 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:3 monitor on c001n01 + * Resource action: child_DoFencing:3 monitor on c001n03 + * Resource action: child_DoFencing:3 monitor on c001n08 + * Resource action: ocf_msdummy:2 monitor on c001n02 + * Resource action: ocf_msdummy:2 monitor on c001n03 + * Resource action: ocf_msdummy:2 monitor on c001n08 + * Resource action: ocf_msdummy:3 monitor on c001n02 + * Resource action: ocf_msdummy:3 monitor on c001n01 + * Resource action: ocf_msdummy:3 monitor on c001n03 + * Resource action: ocf_msdummy:4 monitor on c001n02 + * Resource action: ocf_msdummy:4 monitor on c001n01 + * Resource action: ocf_msdummy:4 monitor on c001n08 + * Resource action: ocf_msdummy:5 monitor on c001n02 + * Resource action: ocf_msdummy:5 monitor on c001n03 + * Resource action: ocf_msdummy:5 monitor on c001n08 + * Resource action: ocf_msdummy:6 monitor on c001n01 + * Resource action: ocf_msdummy:6 monitor on c001n03 + * Resource action: ocf_msdummy:6 monitor on c001n08 + * Resource action: ocf_msdummy:7 monitor on c001n01 + * Resource action: ocf_msdummy:7 monitor on c001n03 + * Resource action: ocf_msdummy:7 monitor on c001n08 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ c001n08 c001n03 c001n01 c001n02 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n08 + Resource Group: group-1 + ocf_child (ocf::heartbeat:IPaddr): Started c001n03 + heartbeat_child (heartbeat:IPaddr): Started c001n03 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n01 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n08 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n01 + child_DoFencing:3 (stonith:ssh): Started c001n02 + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Master c001n08 + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n01 + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n01 + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + diff --git a/pengine/test10/master-6.summary b/pengine/test10/master-6.summary new file mode 100644 index 0000000000..cb75082d3f --- /dev/null +++ b/pengine/test10/master-6.summary @@ -0,0 +1,86 @@ + +Current cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n08 + Resource Group: group-1 + ocf_192.168.100.181 (ocf::heartbeat:IPaddr): Started c001n02 + heartbeat_192.168.100.182 (heartbeat:IPaddr): Started c001n02 + ocf_192.168.100.183 (ocf::heartbeat:IPaddr): Started c001n02 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n03 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n08 + child_DoFencing:1 (stonith:ssh): Started c001n02 + child_DoFencing:2 (stonith:ssh): Started c001n03 + child_DoFencing:3 (stonith:ssh): Started c001n01 + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Master c001n08 + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n01 + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n01 + +Transition Summary: + +Executing cluster transition: + * Resource action: child_DoFencing:1 monitor on c001n01 + * Resource action: child_DoFencing:1 monitor on c001n03 + * Resource action: child_DoFencing:1 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n01 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:3 monitor on c001n03 + * Resource action: child_DoFencing:3 monitor on c001n02 + * Resource action: child_DoFencing:3 monitor on c001n08 + * Resource action: ocf_msdummy:2 monitor on c001n01 + * Resource action: ocf_msdummy:2 monitor on c001n08 + * Resource action: ocf_msdummy:3 monitor on c001n01 + * Resource action: ocf_msdummy:3 monitor on c001n03 + * Resource action: ocf_msdummy:4 monitor on c001n01 + * Resource action: ocf_msdummy:4 monitor on c001n03 + * Resource action: ocf_msdummy:4 monitor on c001n08 + * Resource action: ocf_msdummy:5 monitor on c001n01 + * Resource action: ocf_msdummy:5 monitor on c001n02 + * Resource action: ocf_msdummy:5 monitor on c001n08 + * Resource action: ocf_msdummy:6 monitor on c001n03 + * Resource action: ocf_msdummy:6 monitor on c001n02 + * Resource action: ocf_msdummy:6 monitor on c001n08 + * Resource action: ocf_msdummy:7 monitor on c001n03 + * Resource action: ocf_msdummy:7 monitor on c001n02 + * Resource action: ocf_msdummy:7 monitor on c001n08 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n08 + Resource Group: group-1 + ocf_192.168.100.181 (ocf::heartbeat:IPaddr): Started c001n02 + heartbeat_192.168.100.182 (heartbeat:IPaddr): Started c001n02 + ocf_192.168.100.183 (ocf::heartbeat:IPaddr): Started c001n02 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n03 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n08 + child_DoFencing:1 (stonith:ssh): Started c001n02 + child_DoFencing:2 (stonith:ssh): Started c001n03 + child_DoFencing:3 (stonith:ssh): Started c001n01 + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Master c001n08 + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n01 + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n01 + diff --git a/pengine/test10/master-7.summary b/pengine/test10/master-7.summary new file mode 100644 index 0000000000..cff36a7c99 --- /dev/null +++ b/pengine/test10/master-7.summary @@ -0,0 +1,122 @@ + +Current cluster status: +Node c001n01 (de937e3d-0309-4b5d-b85c-f96edc1ed8e3): UNCLEAN (offline) +Online: [ c001n03 c001n02 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n01 + Resource Group: group-1 + ocf_192.168.100.181 (ocf::heartbeat:IPaddr): Started c001n03 + heartbeat_192.168.100.182 (heartbeat:IPaddr): Started c001n03 + ocf_192.168.100.183 (ocf::heartbeat:IPaddr): Started c001n03 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n02 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n01 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n02 + child_DoFencing:3 (stonith:ssh): Started c001n08 + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Master c001n01 + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n01 + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + +Transition Summary: + * Move DcIPaddr (Started c001n01 -> c001n03) + * Move ocf_192.168.100.181 (Started c001n03 -> c001n02) + * Move heartbeat_192.168.100.182 (Started c001n03 -> c001n02) + * Move ocf_192.168.100.183 (Started c001n03 -> c001n02) + * Move lsb_dummy (Started c001n02 -> c001n08) + * Move rsc_c001n01 (Started c001n01 -> c001n03) + * Stop child_DoFencing:0 (c001n01) + * Demote ocf_msdummy:0 (Master -> Stopped c001n01) + * Stop ocf_msdummy:4 (c001n01) + +Executing cluster transition: + * Pseudo action: group-1_stop_0 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:3 monitor on c001n02 + * Resource action: child_DoFencing:3 monitor on c001n03 + * Pseudo action: DoFencing_stop_0 + * Resource action: ocf_msdummy:4 monitor on c001n08 + * Resource action: ocf_msdummy:4 monitor on c001n02 + * Resource action: ocf_msdummy:4 monitor on c001n03 + * Resource action: ocf_msdummy:5 monitor on c001n08 + * Resource action: ocf_msdummy:5 monitor on c001n02 + * Resource action: ocf_msdummy:6 monitor on c001n08 + * Resource action: ocf_msdummy:6 monitor on c001n03 + * Resource action: ocf_msdummy:7 monitor on c001n02 + * Resource action: ocf_msdummy:7 monitor on c001n03 + * Pseudo action: master_rsc_1_demote_0 + * Pseudo action: stonith_up + * Pseudo action: probe_complete + * Resource action: ocf_192.168.100.183 stop on c001n03 + * Resource action: lsb_dummy stop on c001n02 + * Pseudo action: child_DoFencing:0_stop_0 + * Pseudo action: DoFencing_stopped_0 + * Fencing c001n01 + * Pseudo action: stonith_complete + * Pseudo action: DcIPaddr_stop_0 + * Resource action: heartbeat_192.168.100.182 stop on c001n03 + * Resource action: lsb_dummy start on c001n08 + * Pseudo action: rsc_c001n01_stop_0 + * Pseudo action: ocf_msdummy:0_demote_0 + * Pseudo action: master_rsc_1_demoted_0 + * Pseudo action: master_rsc_1_stop_0 + * Resource action: DcIPaddr start on c001n03 + * Resource action: ocf_192.168.100.181 stop on c001n03 + * Resource action: lsb_dummy monitor=5000 on c001n08 + * Resource action: rsc_c001n01 start on c001n03 + * Pseudo action: ocf_msdummy:0_stop_0 + * Pseudo action: ocf_msdummy:4_stop_0 + * Pseudo action: master_rsc_1_stopped_0 + * Pseudo action: all_stopped + * Resource action: DcIPaddr monitor=5000 on c001n03 + * Pseudo action: group-1_stopped_0 + * Pseudo action: group-1_start_0 + * Resource action: ocf_192.168.100.181 start on c001n02 + * Resource action: heartbeat_192.168.100.182 start on c001n02 + * Resource action: ocf_192.168.100.183 start on c001n02 + * Resource action: rsc_c001n01 monitor=5000 on c001n03 + * Pseudo action: group-1_running_0 + * Resource action: ocf_192.168.100.181 monitor=5000 on c001n02 + * Resource action: heartbeat_192.168.100.182 monitor=5000 on c001n02 + * Resource action: ocf_192.168.100.183 monitor=5000 on c001n02 + +Revised cluster status: +Online: [ c001n03 c001n02 c001n08 ] +OFFLINE: [ c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n03 + Resource Group: group-1 + ocf_192.168.100.181 (ocf::heartbeat:IPaddr): Started c001n02 + heartbeat_192.168.100.182 (heartbeat:IPaddr): Started c001n02 + ocf_192.168.100.183 (ocf::heartbeat:IPaddr): Started c001n02 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n08 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Stopped + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n02 + child_DoFencing:3 (stonith:ssh): Started c001n08 + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + diff --git a/pengine/test10/master-8.summary b/pengine/test10/master-8.summary new file mode 100644 index 0000000000..bff08c5cb0 --- /dev/null +++ b/pengine/test10/master-8.summary @@ -0,0 +1,126 @@ + +Current cluster status: +Node c001n01 (de937e3d-0309-4b5d-b85c-f96edc1ed8e3): UNCLEAN (offline) +Online: [ c001n03 c001n02 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n01 + Resource Group: group-1 + ocf_192.168.100.181 (ocf::heartbeat:IPaddr): Started c001n03 + heartbeat_192.168.100.182 (heartbeat:IPaddr): Started c001n03 + ocf_192.168.100.183 (ocf::heartbeat:IPaddr): Started c001n03 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n02 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n01 + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n02 + child_DoFencing:3 (stonith:ssh): Started c001n08 + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Master c001n01 + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + +Transition Summary: + * Move DcIPaddr (Started c001n01 -> c001n03) + * Move ocf_192.168.100.181 (Started c001n03 -> c001n02) + * Move heartbeat_192.168.100.182 (Started c001n03 -> c001n02) + * Move ocf_192.168.100.183 (Started c001n03 -> c001n02) + * Move lsb_dummy (Started c001n02 -> c001n08) + * Move rsc_c001n01 (Started c001n01 -> c001n03) + * Stop child_DoFencing:0 (c001n01) + * Demote ocf_msdummy:0 (Master -> Slave c001n01) + * Move ocf_msdummy:0 (Slave c001n01 -> c001n03) + +Executing cluster transition: + * Pseudo action: group-1_stop_0 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:3 monitor on c001n02 + * Resource action: child_DoFencing:3 monitor on c001n03 + * Pseudo action: DoFencing_stop_0 + * Resource action: ocf_msdummy:4 monitor on c001n08 + * Resource action: ocf_msdummy:4 monitor on c001n02 + * Resource action: ocf_msdummy:4 monitor on c001n03 + * Resource action: ocf_msdummy:5 monitor on c001n08 + * Resource action: ocf_msdummy:5 monitor on c001n02 + * Resource action: ocf_msdummy:5 monitor on c001n03 + * Resource action: ocf_msdummy:6 monitor on c001n08 + * Resource action: ocf_msdummy:6 monitor on c001n03 + * Resource action: ocf_msdummy:7 monitor on c001n02 + * Resource action: ocf_msdummy:7 monitor on c001n03 + * Pseudo action: master_rsc_1_demote_0 + * Pseudo action: stonith_up + * Pseudo action: probe_complete + * Resource action: ocf_192.168.100.183 stop on c001n03 + * Resource action: lsb_dummy stop on c001n02 + * Pseudo action: child_DoFencing:0_stop_0 + * Pseudo action: DoFencing_stopped_0 + * Fencing c001n01 + * Pseudo action: stonith_complete + * Pseudo action: DcIPaddr_stop_0 + * Resource action: heartbeat_192.168.100.182 stop on c001n03 + * Resource action: lsb_dummy start on c001n08 + * Pseudo action: rsc_c001n01_stop_0 + * Pseudo action: ocf_msdummy:0_demote_0 + * Pseudo action: master_rsc_1_demoted_0 + * Pseudo action: master_rsc_1_stop_0 + * Resource action: DcIPaddr start on c001n03 + * Resource action: ocf_192.168.100.181 stop on c001n03 + * Resource action: lsb_dummy monitor=5000 on c001n08 + * Resource action: rsc_c001n01 start on c001n03 + * Pseudo action: ocf_msdummy:0_stop_0 + * Pseudo action: master_rsc_1_stopped_0 + * Pseudo action: master_rsc_1_start_0 + * Pseudo action: all_stopped + * Resource action: DcIPaddr monitor=5000 on c001n03 + * Pseudo action: group-1_stopped_0 + * Pseudo action: group-1_start_0 + * Resource action: ocf_192.168.100.181 start on c001n02 + * Resource action: heartbeat_192.168.100.182 start on c001n02 + * Resource action: ocf_192.168.100.183 start on c001n02 + * Resource action: rsc_c001n01 monitor=5000 on c001n03 + * Resource action: ocf_msdummy:0 start on c001n03 + * Pseudo action: master_rsc_1_running_0 + * Pseudo action: group-1_running_0 + * Resource action: ocf_192.168.100.181 monitor=5000 on c001n02 + * Resource action: heartbeat_192.168.100.182 monitor=5000 on c001n02 + * Resource action: ocf_192.168.100.183 monitor=5000 on c001n02 + * Resource action: ocf_msdummy:0 monitor=5000 on c001n03 + +Revised cluster status: +Online: [ c001n03 c001n02 c001n08 ] +OFFLINE: [ c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n03 + Resource Group: group-1 + ocf_192.168.100.181 (ocf::heartbeat:IPaddr): Started c001n02 + heartbeat_192.168.100.182 (heartbeat:IPaddr): Started c001n02 + ocf_192.168.100.183 (ocf::heartbeat:IPaddr): Started c001n02 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n08 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Stopped + child_DoFencing:1 (stonith:ssh): Started c001n03 + child_DoFencing:2 (stonith:ssh): Started c001n02 + child_DoFencing:3 (stonith:ssh): Started c001n08 + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n03 + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n08 + diff --git a/pengine/test10/master-9.summary b/pengine/test10/master-9.summary new file mode 100644 index 0000000000..c2113dcfdd --- /dev/null +++ b/pengine/test10/master-9.summary @@ -0,0 +1,99 @@ + +Current cluster status: +Node test02 (f75e684a-be1e-4036-89e5-a14f8dcdc947): UNCLEAN (offline) +Node sgi2 (619e8a37-147a-4782-ac11-46afad7c32b8): UNCLEAN (offline) +Online: [ va1 ibm1 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Stopped + Resource Group: group-1 + ocf_127.0.0.11 (ocf::heartbeat:IPaddr): Stopped + heartbeat_127.0.0.12 (heartbeat:IPaddr): Stopped + ocf_127.0.0.13 (ocf::heartbeat:IPaddr): Stopped + lsb_dummy (lsb:/usr/lib64/heartbeat/cts/LSBDummy): Stopped + rsc_sgi2 (ocf::heartbeat:IPaddr): Stopped + rsc_ibm1 (ocf::heartbeat:IPaddr): Stopped + rsc_va1 (ocf::heartbeat:IPaddr): Stopped + rsc_test02 (ocf::heartbeat:IPaddr): Stopped + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started va1 + child_DoFencing:1 (stonith:ssh): Started ibm1 + child_DoFencing:2 (stonith:ssh): Stopped + child_DoFencing:3 (stonith:ssh): Stopped + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:1 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:2 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:3 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:4 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:5 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:6 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:7 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + +Transition Summary: + * Start DcIPaddr (va1 - blocked) + * Start ocf_127.0.0.11 (va1 - blocked) + * Start heartbeat_127.0.0.12 (va1 - blocked) + * Start ocf_127.0.0.13 (va1 - blocked) + * Start lsb_dummy (va1 - blocked) + * Start rsc_sgi2 (va1 - blocked) + * Start rsc_ibm1 (va1 - blocked) + * Start rsc_va1 (va1 - blocked) + * Start rsc_test02 (va1 - blocked) + * Stop child_DoFencing:1 (ibm1) + * Start ocf_msdummy:0 (va1 - blocked) + * Start ocf_msdummy:1 (va1 - blocked) + +Executing cluster transition: + * Resource action: child_DoFencing:1 monitor on va1 + * Resource action: child_DoFencing:2 monitor on ibm1 + * Resource action: child_DoFencing:2 monitor on va1 + * Resource action: child_DoFencing:3 monitor on ibm1 + * Resource action: child_DoFencing:3 monitor on va1 + * Pseudo action: DoFencing_stop_0 + * Resource action: ocf_msdummy:2 monitor on ibm1 + * Resource action: ocf_msdummy:2 monitor on va1 + * Resource action: ocf_msdummy:3 monitor on ibm1 + * Resource action: ocf_msdummy:3 monitor on va1 + * Resource action: ocf_msdummy:4 monitor on ibm1 + * Resource action: ocf_msdummy:4 monitor on va1 + * Resource action: ocf_msdummy:5 monitor on ibm1 + * Resource action: ocf_msdummy:5 monitor on va1 + * Resource action: ocf_msdummy:6 monitor on ibm1 + * Resource action: ocf_msdummy:6 monitor on va1 + * Resource action: ocf_msdummy:7 monitor on ibm1 + * Resource action: ocf_msdummy:7 monitor on va1 + * Pseudo action: probe_complete + * Resource action: child_DoFencing:1 stop on ibm1 + * Pseudo action: DoFencing_stopped_0 + * Cluster action: do_shutdown on ibm1 + +Revised cluster status: +Node test02 (f75e684a-be1e-4036-89e5-a14f8dcdc947): UNCLEAN (offline) +Node sgi2 (619e8a37-147a-4782-ac11-46afad7c32b8): UNCLEAN (offline) +Online: [ va1 ibm1 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Stopped + Resource Group: group-1 + ocf_127.0.0.11 (ocf::heartbeat:IPaddr): Stopped + heartbeat_127.0.0.12 (heartbeat:IPaddr): Stopped + ocf_127.0.0.13 (ocf::heartbeat:IPaddr): Stopped + lsb_dummy (lsb:/usr/lib64/heartbeat/cts/LSBDummy): Stopped + rsc_sgi2 (ocf::heartbeat:IPaddr): Stopped + rsc_ibm1 (ocf::heartbeat:IPaddr): Stopped + rsc_va1 (ocf::heartbeat:IPaddr): Stopped + rsc_test02 (ocf::heartbeat:IPaddr): Stopped + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started va1 + child_DoFencing:1 (stonith:ssh): Stopped + child_DoFencing:2 (stonith:ssh): Stopped + child_DoFencing:3 (stonith:ssh): Stopped + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:1 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:2 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:3 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:4 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:5 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:6 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:7 (ocf::heartbeat:/usr/lib64/heartbeat/cts/OCFMSDummy): Stopped + diff --git a/pengine/test10/master-allow-start.summary b/pengine/test10/master-allow-start.summary new file mode 100644 index 0000000000..f0e78e3d90 --- /dev/null +++ b/pengine/test10/master-allow-start.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ sles11-a sles11-b ] + + Master/Slave Set: ms_res_Stateful_1 [res_Stateful_1] + Masters: [ sles11-a ] + Slaves: [ sles11-b ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ sles11-a sles11-b ] + + Master/Slave Set: ms_res_Stateful_1 [res_Stateful_1] + Masters: [ sles11-a ] + Slaves: [ sles11-b ] + diff --git a/pengine/test10/master-colocation.summary b/pengine/test10/master-colocation.summary new file mode 100644 index 0000000000..c5d708bc27 --- /dev/null +++ b/pengine/test10/master-colocation.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ box1 box2 ] + + Master/Slave Set: ms-conntrackd [conntrackd-stateful] + Slaves: [ box1 box2 ] + Resource Group: virtualips + externalip (ocf::heartbeat:IPaddr2): Started box2 + internalip (ocf::heartbeat:IPaddr2): Started box2 + sship (ocf::heartbeat:IPaddr2): Started box2 + +Transition Summary: + * Promote conntrackd-stateful:1 (Slave -> Master box2) + +Executing cluster transition: + * Resource action: conntrackd-stateful:0 monitor=29000 on box1 + * Pseudo action: ms-conntrackd_promote_0 + * Resource action: conntrackd-stateful:1 promote on box2 + * Pseudo action: ms-conntrackd_promoted_0 + * Resource action: conntrackd-stateful:1 monitor=30000 on box2 + +Revised cluster status: +Online: [ box1 box2 ] + + Master/Slave Set: ms-conntrackd [conntrackd-stateful] + Masters: [ box2 ] + Slaves: [ box1 ] + Resource Group: virtualips + externalip (ocf::heartbeat:IPaddr2): Started box2 + internalip (ocf::heartbeat:IPaddr2): Started box2 + sship (ocf::heartbeat:IPaddr2): Started box2 + diff --git a/pengine/test10/master-demote-2.summary b/pengine/test10/master-demote-2.summary new file mode 100644 index 0000000000..a6dadb0816 --- /dev/null +++ b/pengine/test10/master-demote-2.summary @@ -0,0 +1,74 @@ + +Current cluster status: +Online: [ pcmk-1 pcmk-2 pcmk-3 pcmk-4 ] + + Fencing (stonith:fence_xvm): Started pcmk-1 + Resource Group: group-1 + r192.168.122.105 (ocf::heartbeat:IPaddr): Stopped + r192.168.122.106 (ocf::heartbeat:IPaddr): Stopped + r192.168.122.107 (ocf::heartbeat:IPaddr): Stopped + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-4 + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Stopped + migrator (ocf::pacemaker:Dummy): Started pcmk-4 + Clone Set: Connectivity [ping-1] + Started: [ pcmk-1 pcmk-2 pcmk-3 pcmk-4 ] + Master/Slave Set: master-1 [stateful-1] + stateful-1:1 (ocf::pacemaker:Stateful): Slave pcmk-1 FAILED + Slaves: [ pcmk-2 pcmk-3 pcmk-4 ] + +Transition Summary: + * Start r192.168.122.105 (pcmk-2) + * Start r192.168.122.106 (pcmk-2) + * Start r192.168.122.107 (pcmk-2) + * Start lsb-dummy (pcmk-2) + * Promote stateful-1:0 (Slave -> Master pcmk-2) + * Recover stateful-1:1 (Slave pcmk-1) + +Executing cluster transition: + * Resource action: stateful-1:0 cancel=15000 on pcmk-2 + * Pseudo action: master-1_stop_0 + * Resource action: stateful-1:1 stop on pcmk-1 + * Pseudo action: master-1_stopped_0 + * Pseudo action: master-1_start_0 + * Pseudo action: all_stopped + * Resource action: stateful-1:1 start on pcmk-1 + * Pseudo action: master-1_running_0 + * Resource action: stateful-1:1 monitor=15000 on pcmk-1 + * Pseudo action: master-1_promote_0 + * Resource action: stateful-1:0 promote on pcmk-2 + * Pseudo action: master-1_promoted_0 + * Pseudo action: group-1_start_0 + * Resource action: r192.168.122.105 start on pcmk-2 + * Resource action: r192.168.122.106 start on pcmk-2 + * Resource action: r192.168.122.107 start on pcmk-2 + * Resource action: stateful-1:0 monitor=16000 on pcmk-2 + * Pseudo action: group-1_running_0 + * Resource action: r192.168.122.105 monitor=5000 on pcmk-2 + * Resource action: r192.168.122.106 monitor=5000 on pcmk-2 + * Resource action: r192.168.122.107 monitor=5000 on pcmk-2 + * Resource action: lsb-dummy start on pcmk-2 + * Resource action: lsb-dummy monitor=5000 on pcmk-2 + +Revised cluster status: +Online: [ pcmk-1 pcmk-2 pcmk-3 pcmk-4 ] + + Fencing (stonith:fence_xvm): Started pcmk-1 + Resource Group: group-1 + r192.168.122.105 (ocf::heartbeat:IPaddr): Started pcmk-2 + r192.168.122.106 (ocf::heartbeat:IPaddr): Started pcmk-2 + r192.168.122.107 (ocf::heartbeat:IPaddr): Started pcmk-2 + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-4 + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Started pcmk-2 + migrator (ocf::pacemaker:Dummy): Started pcmk-4 + Clone Set: Connectivity [ping-1] + Started: [ pcmk-1 pcmk-2 pcmk-3 pcmk-4 ] + Master/Slave Set: master-1 [stateful-1] + Masters: [ pcmk-2 ] + Slaves: [ pcmk-1 pcmk-3 pcmk-4 ] + diff --git a/pengine/test10/master-demote.summary b/pengine/test10/master-demote.summary new file mode 100644 index 0000000000..5796c42251 --- /dev/null +++ b/pengine/test10/master-demote.summary @@ -0,0 +1,69 @@ + +Current cluster status: +Online: [ cxa1 cxb1 ] + + cyrus_address (ocf::heartbeat:IPaddr2): Started cxa1 + cyrus_master (ocf::heartbeat:cyrus-imap): Stopped + cyrus_syslogd (ocf::heartbeat:syslogd): Stopped + cyrus_filesys (ocf::heartbeat:Filesystem): Stopped + cyrus_volgroup (ocf::heartbeat:VolGroup): Stopped + Master/Slave Set: cyrus_drbd [cyrus_drbd_node] + Masters: [ cxa1 ] + Slaves: [ cxb1 ] + named_address (ocf::heartbeat:IPaddr2): Started cxa1 + named_filesys (ocf::heartbeat:Filesystem): Stopped + named_volgroup (ocf::heartbeat:VolGroup): Stopped + named_daemon (ocf::heartbeat:recursor): Stopped + named_syslogd (ocf::heartbeat:syslogd): Stopped + Master/Slave Set: named_drbd [named_drbd_node] + Slaves: [ cxb1 cxa1 ] + Clone Set: pingd_clone [pingd_node] + Started: [ cxa1 cxb1 ] + Clone Set: fence_clone [fence_node] + Started: [ cxa1 cxb1 ] + +Transition Summary: + * Move named_address (Started cxa1 -> cxb1) + * Promote named_drbd_node:0 (Slave -> Master cxb1) + +Executing cluster transition: + * Resource action: named_address stop on cxa1 + * Pseudo action: named_drbd_pre_notify_promote_0 + * Pseudo action: all_stopped + * Resource action: named_address start on cxb1 + * Resource action: named_drbd_node:0 notify on cxb1 + * Resource action: named_drbd_node:1 notify on cxa1 + * Pseudo action: named_drbd_confirmed-pre_notify_promote_0 + * Pseudo action: named_drbd_promote_0 + * Resource action: named_drbd_node:0 promote on cxb1 + * Pseudo action: named_drbd_promoted_0 + * Pseudo action: named_drbd_post_notify_promoted_0 + * Resource action: named_drbd_node:0 notify on cxb1 + * Resource action: named_drbd_node:1 notify on cxa1 + * Pseudo action: named_drbd_confirmed-post_notify_promoted_0 + * Resource action: named_drbd_node:0 monitor=10000 on cxb1 + +Revised cluster status: +Online: [ cxa1 cxb1 ] + + cyrus_address (ocf::heartbeat:IPaddr2): Started cxa1 + cyrus_master (ocf::heartbeat:cyrus-imap): Stopped + cyrus_syslogd (ocf::heartbeat:syslogd): Stopped + cyrus_filesys (ocf::heartbeat:Filesystem): Stopped + cyrus_volgroup (ocf::heartbeat:VolGroup): Stopped + Master/Slave Set: cyrus_drbd [cyrus_drbd_node] + Masters: [ cxa1 ] + Slaves: [ cxb1 ] + named_address (ocf::heartbeat:IPaddr2): Started cxb1 + named_filesys (ocf::heartbeat:Filesystem): Stopped + named_volgroup (ocf::heartbeat:VolGroup): Stopped + named_daemon (ocf::heartbeat:recursor): Stopped + named_syslogd (ocf::heartbeat:syslogd): Stopped + Master/Slave Set: named_drbd [named_drbd_node] + Masters: [ cxb1 ] + Slaves: [ cxa1 ] + Clone Set: pingd_clone [pingd_node] + Started: [ cxa1 cxb1 ] + Clone Set: fence_clone [fence_node] + Started: [ cxa1 cxb1 ] + diff --git a/pengine/test10/master-depend.summary b/pengine/test10/master-depend.summary new file mode 100644 index 0000000000..d64ccbfca3 --- /dev/null +++ b/pengine/test10/master-depend.summary @@ -0,0 +1,59 @@ + +Current cluster status: +Online: [ vbox4 ] +OFFLINE: [ vbox3 ] + + Master/Slave Set: drbd [drbd0] + Stopped: [ drbd0:0 drbd0:1 ] + Clone Set: cman_clone [cman] + Stopped: [ cman:0 cman:1 ] + Clone Set: clvmd_clone [clvmd] + Stopped: [ clvmd:0 clvmd:1 ] + vmnci36 (ocf::heartbeat:vm): Stopped + vmnci37 (ocf::heartbeat:vm): Stopped + vmnci38 (ocf::heartbeat:vm): Stopped + vmnci55 (ocf::heartbeat:vm): Stopped + +Transition Summary: + * Start drbd0:0 (vbox4) + * Start cman:0 (vbox4) + +Executing cluster transition: + * Resource action: drbd0:0 monitor on vbox4 + * Pseudo action: drbd_pre_notify_start_0 + * Resource action: cman:0 monitor on vbox4 + * Pseudo action: cman_clone_start_0 + * Resource action: clvmd:0 monitor on vbox4 + * Resource action: vmnci36 monitor on vbox4 + * Resource action: vmnci37 monitor on vbox4 + * Resource action: vmnci38 monitor on vbox4 + * Resource action: vmnci55 monitor on vbox4 + * Pseudo action: probe_complete + * Pseudo action: drbd_confirmed-pre_notify_start_0 + * Pseudo action: drbd_start_0 + * Resource action: cman:0 start on vbox4 + * Pseudo action: cman_clone_running_0 + * Resource action: drbd0:0 start on vbox4 + * Pseudo action: drbd_running_0 + * Pseudo action: drbd_post_notify_running_0 + * Resource action: drbd0:0 notify on vbox4 + * Pseudo action: drbd_confirmed-post_notify_running_0 + * Resource action: drbd0:0 monitor=60000 on vbox4 + +Revised cluster status: +Online: [ vbox4 ] +OFFLINE: [ vbox3 ] + + Master/Slave Set: drbd [drbd0] + Slaves: [ vbox4 ] + Stopped: [ drbd0:1 ] + Clone Set: cman_clone [cman] + Started: [ vbox4 ] + Stopped: [ cman:1 ] + Clone Set: clvmd_clone [clvmd] + Stopped: [ clvmd:0 clvmd:1 ] + vmnci36 (ocf::heartbeat:vm): Stopped + vmnci37 (ocf::heartbeat:vm): Stopped + vmnci38 (ocf::heartbeat:vm): Stopped + vmnci55 (ocf::heartbeat:vm): Stopped + diff --git a/pengine/test10/master-failed-demote-2.summary b/pengine/test10/master-failed-demote-2.summary new file mode 100644 index 0000000000..3fdfdef281 --- /dev/null +++ b/pengine/test10/master-failed-demote-2.summary @@ -0,0 +1,46 @@ + +Current cluster status: +Online: [ dl380g5b dl380g5a ] + + Master/Slave Set: ms-sf [group] (unique) + Resource Group: group:0 + stateful-1:0 (ocf::heartbeat:Stateful): Slave dl380g5b FAILED + stateful-2:0 (ocf::heartbeat:Stateful): Stopped + Resource Group: group:1 + stateful-1:1 (ocf::heartbeat:Stateful): Started dl380g5a + stateful-2:1 (ocf::heartbeat:Stateful): Started dl380g5a + +Transition Summary: + * Stop stateful-1:0 (dl380g5b) + * Promote stateful-1:1 (Slave -> Master dl380g5a) + * Promote stateful-2:1 (Slave -> Master dl380g5a) + +Executing cluster transition: + * Resource action: stateful-1:1 cancel=20000 on dl380g5a + * Resource action: stateful-2:1 cancel=20000 on dl380g5a + * Pseudo action: ms-sf_stop_0 + * Pseudo action: group:0_stop_0 + * Resource action: stateful-1:0 stop on dl380g5b + * Pseudo action: all_stopped + * Pseudo action: group:0_stopped_0 + * Pseudo action: ms-sf_stopped_0 + * Pseudo action: ms-sf_promote_0 + * Pseudo action: group:1_promote_0 + * Resource action: stateful-1:1 promote on dl380g5a + * Resource action: stateful-2:1 promote on dl380g5a + * Pseudo action: group:1_promoted_0 + * Resource action: stateful-1:1 monitor=10000 on dl380g5a + * Resource action: stateful-2:1 monitor=10000 on dl380g5a + * Pseudo action: ms-sf_promoted_0 + +Revised cluster status: +Online: [ dl380g5b dl380g5a ] + + Master/Slave Set: ms-sf [group] (unique) + Resource Group: group:0 + stateful-1:0 (ocf::heartbeat:Stateful): Stopped + stateful-2:0 (ocf::heartbeat:Stateful): Stopped + Resource Group: group:1 + stateful-1:1 (ocf::heartbeat:Stateful): Master dl380g5a + stateful-2:1 (ocf::heartbeat:Stateful): Master dl380g5a + diff --git a/pengine/test10/master-failed-demote.summary b/pengine/test10/master-failed-demote.summary new file mode 100644 index 0000000000..ac6a2145ab --- /dev/null +++ b/pengine/test10/master-failed-demote.summary @@ -0,0 +1,63 @@ + +Current cluster status: +Online: [ dl380g5b dl380g5a ] + + Master/Slave Set: ms-sf [group] (unique) + Resource Group: group:0 + stateful-1:0 (ocf::heartbeat:Stateful): Slave dl380g5b FAILED + stateful-2:0 (ocf::heartbeat:Stateful): Stopped + Resource Group: group:1 + stateful-1:1 (ocf::heartbeat:Stateful): Started dl380g5a + stateful-2:1 (ocf::heartbeat:Stateful): Started dl380g5a + +Transition Summary: + * Stop stateful-1:0 (dl380g5b) + * Promote stateful-1:1 (Slave -> Master dl380g5a) + * Promote stateful-2:1 (Slave -> Master dl380g5a) + +Executing cluster transition: + * Resource action: stateful-1:1 cancel=20000 on dl380g5a + * Resource action: stateful-2:1 cancel=20000 on dl380g5a + * Pseudo action: ms-sf_pre_notify_stop_0 + * Resource action: stateful-1:0 notify on dl380g5b + * Resource action: stateful-1:1 notify on dl380g5a + * Resource action: stateful-2:1 notify on dl380g5a + * Pseudo action: ms-sf_confirmed-pre_notify_stop_0 + * Pseudo action: ms-sf_stop_0 + * Pseudo action: group:0_stop_0 + * Resource action: stateful-1:0 stop on dl380g5b + * Pseudo action: group:0_stopped_0 + * Pseudo action: ms-sf_stopped_0 + * Pseudo action: ms-sf_post_notify_stopped_0 + * Resource action: stateful-1:1 notify on dl380g5a + * Resource action: stateful-2:1 notify on dl380g5a + * Pseudo action: ms-sf_confirmed-post_notify_stopped_0 + * Pseudo action: all_stopped + * Pseudo action: ms-sf_pre_notify_promote_0 + * Resource action: stateful-1:1 notify on dl380g5a + * Resource action: stateful-2:1 notify on dl380g5a + * Pseudo action: ms-sf_confirmed-pre_notify_promote_0 + * Pseudo action: ms-sf_promote_0 + * Pseudo action: group:1_promote_0 + * Resource action: stateful-1:1 promote on dl380g5a + * Resource action: stateful-2:1 promote on dl380g5a + * Pseudo action: group:1_promoted_0 + * Pseudo action: ms-sf_promoted_0 + * Pseudo action: ms-sf_post_notify_promoted_0 + * Resource action: stateful-1:1 notify on dl380g5a + * Resource action: stateful-2:1 notify on dl380g5a + * Pseudo action: ms-sf_confirmed-post_notify_promoted_0 + * Resource action: stateful-1:1 monitor=10000 on dl380g5a + * Resource action: stateful-2:1 monitor=10000 on dl380g5a + +Revised cluster status: +Online: [ dl380g5b dl380g5a ] + + Master/Slave Set: ms-sf [group] (unique) + Resource Group: group:0 + stateful-1:0 (ocf::heartbeat:Stateful): Stopped + stateful-2:0 (ocf::heartbeat:Stateful): Stopped + Resource Group: group:1 + stateful-1:1 (ocf::heartbeat:Stateful): Master dl380g5a + stateful-2:1 (ocf::heartbeat:Stateful): Master dl380g5a + diff --git a/pengine/test10/master-group.summary b/pengine/test10/master-group.summary new file mode 100644 index 0000000000..c1560cd080 --- /dev/null +++ b/pengine/test10/master-group.summary @@ -0,0 +1,35 @@ + +Current cluster status: +Online: [ rh44-1 rh44-2 ] + + Resource Group: test + resource_1 (ocf::heartbeat:IPaddr): Started rh44-1 + Master/Slave Set: ms-sf [grp_ms_sf] (unique) + Resource Group: grp_ms_sf:0 + master_slave_Stateful:0 (ocf::heartbeat:Stateful): Started rh44-2 + Resource Group: grp_ms_sf:1 + master_slave_Stateful:1 (ocf::heartbeat:Stateful): Started rh44-1 + +Transition Summary: + * Promote master_slave_Stateful:1 (Slave -> Master rh44-1) + +Executing cluster transition: + * Resource action: master_slave_Stateful:1 cancel=5000 on rh44-1 + * Pseudo action: ms-sf_promote_0 + * Pseudo action: grp_ms_sf:1_promote_0 + * Resource action: master_slave_Stateful:1 promote on rh44-1 + * Pseudo action: grp_ms_sf:1_promoted_0 + * Resource action: master_slave_Stateful:1 monitor=6000 on rh44-1 + * Pseudo action: ms-sf_promoted_0 + +Revised cluster status: +Online: [ rh44-1 rh44-2 ] + + Resource Group: test + resource_1 (ocf::heartbeat:IPaddr): Started rh44-1 + Master/Slave Set: ms-sf [grp_ms_sf] (unique) + Resource Group: grp_ms_sf:0 + master_slave_Stateful:0 (ocf::heartbeat:Stateful): Started rh44-2 + Resource Group: grp_ms_sf:1 + master_slave_Stateful:1 (ocf::heartbeat:Stateful): Master rh44-1 + diff --git a/pengine/test10/master-move.summary b/pengine/test10/master-move.summary new file mode 100644 index 0000000000..f5873b4f95 --- /dev/null +++ b/pengine/test10/master-move.summary @@ -0,0 +1,71 @@ + +Current cluster status: +Online: [ bl460g1n13 bl460g1n14 ] + + Resource Group: grpDRBD + dummy01 (ocf::pacemaker:Dummy): Started bl460g1n13 FAILED + dummy02 (ocf::pacemaker:Dummy): Started bl460g1n13 + dummy03 (ocf::pacemaker:Dummy): Stopped + Master/Slave Set: msDRBD [prmDRBD] + Masters: [ bl460g1n13 ] + Slaves: [ bl460g1n14 ] + +Transition Summary: + * Move dummy01 (Started bl460g1n13 -> bl460g1n14) + * Move dummy02 (Started bl460g1n13 -> bl460g1n14) + * Start dummy03 (bl460g1n14) + * Demote prmDRBD:0 (Master -> Slave bl460g1n13) + * Promote prmDRBD:1 (Slave -> Master bl460g1n14) + +Executing cluster transition: + * Pseudo action: grpDRBD_stop_0 + * Resource action: dummy02 stop on bl460g1n13 + * Resource action: prmDRBD:0 cancel=10000 on bl460g1n13 + * Resource action: prmDRBD:1 cancel=20000 on bl460g1n14 + * Pseudo action: msDRBD_pre_notify_demote_0 + * Resource action: dummy01 stop on bl460g1n13 + * Resource action: prmDRBD:0 notify on bl460g1n13 + * Resource action: prmDRBD:1 notify on bl460g1n14 + * Pseudo action: msDRBD_confirmed-pre_notify_demote_0 + * Pseudo action: all_stopped + * Pseudo action: grpDRBD_stopped_0 + * Pseudo action: msDRBD_demote_0 + * Resource action: prmDRBD:0 demote on bl460g1n13 + * Pseudo action: msDRBD_demoted_0 + * Pseudo action: msDRBD_post_notify_demoted_0 + * Resource action: prmDRBD:0 notify on bl460g1n13 + * Resource action: prmDRBD:1 notify on bl460g1n14 + * Pseudo action: msDRBD_confirmed-post_notify_demoted_0 + * Pseudo action: msDRBD_pre_notify_promote_0 + * Resource action: prmDRBD:0 notify on bl460g1n13 + * Resource action: prmDRBD:1 notify on bl460g1n14 + * Pseudo action: msDRBD_confirmed-pre_notify_promote_0 + * Pseudo action: msDRBD_promote_0 + * Resource action: prmDRBD:1 promote on bl460g1n14 + * Pseudo action: msDRBD_promoted_0 + * Pseudo action: msDRBD_post_notify_promoted_0 + * Resource action: prmDRBD:0 notify on bl460g1n13 + * Resource action: prmDRBD:1 notify on bl460g1n14 + * Pseudo action: msDRBD_confirmed-post_notify_promoted_0 + * Pseudo action: grpDRBD_start_0 + * Resource action: dummy01 start on bl460g1n14 + * Resource action: dummy02 start on bl460g1n14 + * Resource action: dummy03 start on bl460g1n14 + * Resource action: prmDRBD:0 monitor=20000 on bl460g1n13 + * Resource action: prmDRBD:1 monitor=10000 on bl460g1n14 + * Pseudo action: grpDRBD_running_0 + * Resource action: dummy01 monitor=10000 on bl460g1n14 + * Resource action: dummy02 monitor=10000 on bl460g1n14 + * Resource action: dummy03 monitor=10000 on bl460g1n14 + +Revised cluster status: +Online: [ bl460g1n13 bl460g1n14 ] + + Resource Group: grpDRBD + dummy01 (ocf::pacemaker:Dummy): Started bl460g1n14 + dummy02 (ocf::pacemaker:Dummy): Started bl460g1n14 + dummy03 (ocf::pacemaker:Dummy): Started bl460g1n14 + Master/Slave Set: msDRBD [prmDRBD] + Masters: [ bl460g1n14 ] + Slaves: [ bl460g1n13 ] + diff --git a/pengine/test10/master-ordering.summary b/pengine/test10/master-ordering.summary new file mode 100644 index 0000000000..330bdc8eef --- /dev/null +++ b/pengine/test10/master-ordering.summary @@ -0,0 +1,95 @@ + +Current cluster status: +Online: [ webcluster01 ] +OFFLINE: [ webcluster02 ] + + mysql-server (ocf::heartbeat:mysql): Stopped + extip_1 (ocf::heartbeat:IPaddr2): Stopped + extip_2 (ocf::heartbeat:IPaddr2): Stopped + Resource Group: group_main + intip_0_main (ocf::heartbeat:IPaddr2): Stopped + intip_1_master (ocf::heartbeat:IPaddr2): Stopped + intip_2_slave (ocf::heartbeat:IPaddr2): Stopped + Master/Slave Set: ms_drbd_www [drbd_www] + Stopped: [ drbd_www:0 drbd_www:1 ] + Clone Set: clone_ocfs2_www [ocfs2_www] (unique) + ocfs2_www:0 (ocf::heartbeat:Filesystem): Stopped + ocfs2_www:1 (ocf::heartbeat:Filesystem): Stopped + Clone Set: clone_webservice [group_webservice] + Stopped: [ group_webservice:0 group_webservice:1 ] + Master/Slave Set: ms_drbd_mysql [drbd_mysql] + Stopped: [ drbd_mysql:0 drbd_mysql:1 ] + fs_mysql (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + * Start extip_1 (webcluster01) + * Start extip_2 (webcluster01) + * Start intip_1_master (webcluster01) + * Start intip_2_slave (webcluster01) + * Start drbd_www:0 (webcluster01) + * Start drbd_mysql:0 (webcluster01) + +Executing cluster transition: + * Resource action: mysql-server monitor on webcluster01 + * Resource action: extip_1 monitor on webcluster01 + * Resource action: extip_2 monitor on webcluster01 + * Resource action: intip_0_main monitor on webcluster01 + * Resource action: intip_1_master monitor on webcluster01 + * Resource action: intip_2_slave monitor on webcluster01 + * Resource action: drbd_www:0 monitor on webcluster01 + * Pseudo action: ms_drbd_www_pre_notify_start_0 + * Resource action: ocfs2_www:0 monitor on webcluster01 + * Resource action: ocfs2_www:1 monitor on webcluster01 + * Resource action: apache2:0 monitor on webcluster01 + * Resource action: mysql-proxy:0 monitor on webcluster01 + * Resource action: drbd_mysql:0 monitor on webcluster01 + * Pseudo action: ms_drbd_mysql_pre_notify_start_0 + * Resource action: fs_mysql monitor on webcluster01 + * Pseudo action: probe_complete + * Resource action: extip_1 start on webcluster01 + * Resource action: extip_2 start on webcluster01 + * Resource action: intip_1_master start on webcluster01 + * Resource action: intip_2_slave start on webcluster01 + * Pseudo action: ms_drbd_www_confirmed-pre_notify_start_0 + * Pseudo action: ms_drbd_www_start_0 + * Pseudo action: ms_drbd_mysql_confirmed-pre_notify_start_0 + * Pseudo action: ms_drbd_mysql_start_0 + * Resource action: extip_1 monitor=30000 on webcluster01 + * Resource action: extip_2 monitor=30000 on webcluster01 + * Resource action: intip_1_master monitor=30000 on webcluster01 + * Resource action: intip_2_slave monitor=30000 on webcluster01 + * Resource action: drbd_www:0 start on webcluster01 + * Pseudo action: ms_drbd_www_running_0 + * Resource action: drbd_mysql:0 start on webcluster01 + * Pseudo action: ms_drbd_mysql_running_0 + * Pseudo action: ms_drbd_www_post_notify_running_0 + * Pseudo action: ms_drbd_mysql_post_notify_running_0 + * Resource action: drbd_www:0 notify on webcluster01 + * Pseudo action: ms_drbd_www_confirmed-post_notify_running_0 + * Resource action: drbd_mysql:0 notify on webcluster01 + * Pseudo action: ms_drbd_mysql_confirmed-post_notify_running_0 + +Revised cluster status: +Online: [ webcluster01 ] +OFFLINE: [ webcluster02 ] + + mysql-server (ocf::heartbeat:mysql): Stopped + extip_1 (ocf::heartbeat:IPaddr2): Started webcluster01 + extip_2 (ocf::heartbeat:IPaddr2): Started webcluster01 + Resource Group: group_main + intip_0_main (ocf::heartbeat:IPaddr2): Stopped + intip_1_master (ocf::heartbeat:IPaddr2): Started webcluster01 + intip_2_slave (ocf::heartbeat:IPaddr2): Started webcluster01 + Master/Slave Set: ms_drbd_www [drbd_www] + Slaves: [ webcluster01 ] + Stopped: [ drbd_www:1 ] + Clone Set: clone_ocfs2_www [ocfs2_www] (unique) + ocfs2_www:0 (ocf::heartbeat:Filesystem): Stopped + ocfs2_www:1 (ocf::heartbeat:Filesystem): Stopped + Clone Set: clone_webservice [group_webservice] + Stopped: [ group_webservice:0 group_webservice:1 ] + Master/Slave Set: ms_drbd_mysql [drbd_mysql] + Slaves: [ webcluster01 ] + Stopped: [ drbd_mysql:1 ] + fs_mysql (ocf::heartbeat:Filesystem): Stopped + diff --git a/pengine/test10/master-probed-score.summary b/pengine/test10/master-probed-score.summary new file mode 100644 index 0000000000..faf4824231 --- /dev/null +++ b/pengine/test10/master-probed-score.summary @@ -0,0 +1,328 @@ + +Current cluster status: +Online: [ hypatia-corosync.nevis.columbia.edu orestes-corosync.nevis.columbia.edu ] + + Master/Slave Set: AdminClone [AdminDrbd] + Stopped: [ AdminDrbd:0 AdminDrbd:1 ] + CronAmbientTemperature (ocf::heartbeat:symlink): Stopped + StonithHypatia (stonith:fence_nut): Stopped + StonithOrestes (stonith:fence_nut): Stopped + Resource Group: DhcpGroup + SymlinkDhcpdConf (ocf::heartbeat:symlink): Stopped + SymlinkSysconfigDhcpd (ocf::heartbeat:symlink): Stopped + SymlinkDhcpdLeases (ocf::heartbeat:symlink): Stopped + Dhcpd (lsb:dhcpd): Stopped + DhcpIP (ocf::heartbeat:IPaddr2): Stopped + Clone Set: CupsClone [CupsGroup] + Stopped: [ CupsGroup:0 CupsGroup:1 ] + Clone Set: IPClone [IPGroup] (unique) + Resource Group: IPGroup:0 + ClusterIP:0 (ocf::heartbeat:IPaddr2): Stopped + ClusterIPLocal:0 (ocf::heartbeat:IPaddr2): Stopped + ClusterIPSandbox:0 (ocf::heartbeat:IPaddr2): Stopped + Resource Group: IPGroup:1 + ClusterIP:1 (ocf::heartbeat:IPaddr2): Stopped + ClusterIPLocal:1 (ocf::heartbeat:IPaddr2): Stopped + ClusterIPSandbox:1 (ocf::heartbeat:IPaddr2): Stopped + Clone Set: LibvirtdClone [LibvirtdGroup] + Stopped: [ LibvirtdGroup:0 LibvirtdGroup:1 ] + Clone Set: TftpClone [TftpGroup] + Stopped: [ TftpGroup:0 TftpGroup:1 ] + Clone Set: ExportsClone [ExportsGroup] + Stopped: [ ExportsGroup:0 ExportsGroup:1 ] + Clone Set: FilesystemClone [FilesystemGroup] + Stopped: [ FilesystemGroup:0 FilesystemGroup:1 ] + KVM-guest (ocf::heartbeat:VirtualDomain): Stopped + Proxy (ocf::heartbeat:VirtualDomain): Stopped + +Transition Summary: + * Start AdminDrbd:0 (hypatia-corosync.nevis.columbia.edu) + * Promote AdminDrbd:0 (Stopped -> Master hypatia-corosync.nevis.columbia.edu) + * Start AdminDrbd:1 (orestes-corosync.nevis.columbia.edu) + * Promote AdminDrbd:1 (Stopped -> Master orestes-corosync.nevis.columbia.edu) + * Start CronAmbientTemperature (hypatia-corosync.nevis.columbia.edu) + * Start StonithHypatia (orestes-corosync.nevis.columbia.edu) + * Start StonithOrestes (hypatia-corosync.nevis.columbia.edu) + * Start SymlinkDhcpdConf (orestes-corosync.nevis.columbia.edu) + * Start SymlinkSysconfigDhcpd (orestes-corosync.nevis.columbia.edu) + * Start SymlinkDhcpdLeases (orestes-corosync.nevis.columbia.edu) + * Start SymlinkUsrShareCups:0 (hypatia-corosync.nevis.columbia.edu) + * Start SymlinkCupsdConf:0 (hypatia-corosync.nevis.columbia.edu) + * Start Cups:0 (hypatia-corosync.nevis.columbia.edu) + * Start SymlinkUsrShareCups:1 (orestes-corosync.nevis.columbia.edu) + * Start SymlinkCupsdConf:1 (orestes-corosync.nevis.columbia.edu) + * Start Cups:1 (orestes-corosync.nevis.columbia.edu) + * Start ClusterIP:0 (hypatia-corosync.nevis.columbia.edu) + * Start ClusterIPLocal:0 (hypatia-corosync.nevis.columbia.edu) + * Start ClusterIPSandbox:0 (hypatia-corosync.nevis.columbia.edu) + * Start ClusterIP:1 (orestes-corosync.nevis.columbia.edu) + * Start ClusterIPLocal:1 (orestes-corosync.nevis.columbia.edu) + * Start ClusterIPSandbox:1 (orestes-corosync.nevis.columbia.edu) + * Start SymlinkEtcLibvirt:0 (hypatia-corosync.nevis.columbia.edu) + * Start Libvirtd:0 (hypatia-corosync.nevis.columbia.edu) + * Start SymlinkEtcLibvirt:1 (orestes-corosync.nevis.columbia.edu) + * Start Libvirtd:1 (orestes-corosync.nevis.columbia.edu) + * Start SymlinkTftp:0 (hypatia-corosync.nevis.columbia.edu) + * Start Xinetd:0 (hypatia-corosync.nevis.columbia.edu) + * Start SymlinkTftp:1 (orestes-corosync.nevis.columbia.edu) + * Start Xinetd:1 (orestes-corosync.nevis.columbia.edu) + * Start ExportMail:0 (hypatia-corosync.nevis.columbia.edu) + * Start ExportMailInbox:0 (hypatia-corosync.nevis.columbia.edu) + * Start ExportMailFolders:0 (hypatia-corosync.nevis.columbia.edu) + * Start ExportMailForward:0 (hypatia-corosync.nevis.columbia.edu) + * Start ExportMailProcmailrc:0 (hypatia-corosync.nevis.columbia.edu) + * Start ExportUsrNevis:0 (hypatia-corosync.nevis.columbia.edu) + * Start ExportUsrNevisOffsite:0 (hypatia-corosync.nevis.columbia.edu) + * Start ExportWWW:0 (hypatia-corosync.nevis.columbia.edu) + * Start ExportMail:1 (orestes-corosync.nevis.columbia.edu) + * Start ExportMailInbox:1 (orestes-corosync.nevis.columbia.edu) + * Start ExportMailFolders:1 (orestes-corosync.nevis.columbia.edu) + * Start ExportMailForward:1 (orestes-corosync.nevis.columbia.edu) + * Start ExportMailProcmailrc:1 (orestes-corosync.nevis.columbia.edu) + * Start ExportUsrNevis:1 (orestes-corosync.nevis.columbia.edu) + * Start ExportUsrNevisOffsite:1 (orestes-corosync.nevis.columbia.edu) + * Start ExportWWW:1 (orestes-corosync.nevis.columbia.edu) + * Start AdminLvm:0 (hypatia-corosync.nevis.columbia.edu) + * Start FSUsrNevis:0 (hypatia-corosync.nevis.columbia.edu) + * Start FSVarNevis:0 (hypatia-corosync.nevis.columbia.edu) + * Start FSVirtualMachines:0 (hypatia-corosync.nevis.columbia.edu) + * Start FSMail:0 (hypatia-corosync.nevis.columbia.edu) + * Start FSWork:0 (hypatia-corosync.nevis.columbia.edu) + * Start AdminLvm:1 (orestes-corosync.nevis.columbia.edu) + * Start FSUsrNevis:1 (orestes-corosync.nevis.columbia.edu) + * Start FSVarNevis:1 (orestes-corosync.nevis.columbia.edu) + * Start FSVirtualMachines:1 (orestes-corosync.nevis.columbia.edu) + * Start FSMail:1 (orestes-corosync.nevis.columbia.edu) + * Start FSWork:1 (orestes-corosync.nevis.columbia.edu) + * Start KVM-guest (hypatia-corosync.nevis.columbia.edu) + * Start Proxy (orestes-corosync.nevis.columbia.edu) + +Executing cluster transition: + * Pseudo action: AdminClone_pre_notify_start_0 + * Resource action: StonithHypatia start on orestes-corosync.nevis.columbia.edu + * Resource action: StonithOrestes start on hypatia-corosync.nevis.columbia.edu + * Resource action: SymlinkEtcLibvirt:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: Libvirtd:0 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: Libvirtd:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: SymlinkTftp:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: Xinetd:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: SymlinkTftp:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: Xinetd:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: ExportMail:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportMailInbox:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportMailFolders:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportMailForward:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportMailProcmailrc:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportUsrNevis:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportUsrNevisOffsite:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportWWW:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportMail:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: ExportMailInbox:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: ExportMailFolders:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: ExportMailForward:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: ExportMailProcmailrc:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: ExportUsrNevis:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: ExportUsrNevisOffsite:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: ExportWWW:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: AdminLvm:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: FSUsrNevis:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: FSVarNevis:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: FSVirtualMachines:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: FSMail:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: FSWork:0 monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: AdminLvm:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: FSUsrNevis:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: FSVarNevis:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: FSVirtualMachines:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: FSMail:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: FSWork:1 monitor on orestes-corosync.nevis.columbia.edu + * Resource action: KVM-guest monitor on orestes-corosync.nevis.columbia.edu + * Resource action: KVM-guest monitor on hypatia-corosync.nevis.columbia.edu + * Resource action: Proxy monitor on orestes-corosync.nevis.columbia.edu + * Resource action: Proxy monitor on hypatia-corosync.nevis.columbia.edu + * Pseudo action: probe_complete + * Pseudo action: AdminClone_confirmed-pre_notify_start_0 + * Pseudo action: AdminClone_start_0 + * Resource action: AdminDrbd:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: AdminDrbd:1 start on orestes-corosync.nevis.columbia.edu + * Pseudo action: AdminClone_running_0 + * Pseudo action: AdminClone_post_notify_running_0 + * Resource action: AdminDrbd:0 notify on hypatia-corosync.nevis.columbia.edu + * Resource action: AdminDrbd:1 notify on orestes-corosync.nevis.columbia.edu + * Pseudo action: AdminClone_confirmed-post_notify_running_0 + * Pseudo action: AdminClone_pre_notify_promote_0 + * Resource action: AdminDrbd:0 notify on hypatia-corosync.nevis.columbia.edu + * Resource action: AdminDrbd:1 notify on orestes-corosync.nevis.columbia.edu + * Pseudo action: AdminClone_confirmed-pre_notify_promote_0 + * Pseudo action: AdminClone_promote_0 + * Resource action: AdminDrbd:0 promote on hypatia-corosync.nevis.columbia.edu + * Resource action: AdminDrbd:1 promote on orestes-corosync.nevis.columbia.edu + * Pseudo action: AdminClone_promoted_0 + * Pseudo action: AdminClone_post_notify_promoted_0 + * Resource action: AdminDrbd:0 notify on hypatia-corosync.nevis.columbia.edu + * Resource action: AdminDrbd:1 notify on orestes-corosync.nevis.columbia.edu + * Pseudo action: AdminClone_confirmed-post_notify_promoted_0 + * Pseudo action: FilesystemClone_start_0 + * Resource action: AdminDrbd:0 monitor=59000 on hypatia-corosync.nevis.columbia.edu + * Resource action: AdminDrbd:1 monitor=59000 on orestes-corosync.nevis.columbia.edu + * Pseudo action: FilesystemGroup:0_start_0 + * Resource action: AdminLvm:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: FSUsrNevis:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: FSVarNevis:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: FSVirtualMachines:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: FSMail:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: FSWork:0 start on hypatia-corosync.nevis.columbia.edu + * Pseudo action: FilesystemGroup:1_start_0 + * Resource action: AdminLvm:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: FSUsrNevis:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: FSVarNevis:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: FSVirtualMachines:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: FSMail:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: FSWork:1 start on orestes-corosync.nevis.columbia.edu + * Pseudo action: FilesystemGroup:0_running_0 + * Resource action: AdminLvm:0 monitor=30000 on hypatia-corosync.nevis.columbia.edu + * Resource action: FSUsrNevis:0 monitor=20000 on hypatia-corosync.nevis.columbia.edu + * Resource action: FSVarNevis:0 monitor=20000 on hypatia-corosync.nevis.columbia.edu + * Resource action: FSVirtualMachines:0 monitor=20000 on hypatia-corosync.nevis.columbia.edu + * Resource action: FSMail:0 monitor=20000 on hypatia-corosync.nevis.columbia.edu + * Resource action: FSWork:0 monitor=20000 on hypatia-corosync.nevis.columbia.edu + * Pseudo action: FilesystemGroup:1_running_0 + * Resource action: AdminLvm:1 monitor=30000 on orestes-corosync.nevis.columbia.edu + * Resource action: FSUsrNevis:1 monitor=20000 on orestes-corosync.nevis.columbia.edu + * Resource action: FSVarNevis:1 monitor=20000 on orestes-corosync.nevis.columbia.edu + * Resource action: FSVirtualMachines:1 monitor=20000 on orestes-corosync.nevis.columbia.edu + * Resource action: FSMail:1 monitor=20000 on orestes-corosync.nevis.columbia.edu + * Resource action: FSWork:1 monitor=20000 on orestes-corosync.nevis.columbia.edu + * Pseudo action: FilesystemClone_running_0 + * Resource action: CronAmbientTemperature start on hypatia-corosync.nevis.columbia.edu + * Pseudo action: DhcpGroup_start_0 + * Resource action: SymlinkDhcpdConf start on orestes-corosync.nevis.columbia.edu + * Resource action: SymlinkSysconfigDhcpd start on orestes-corosync.nevis.columbia.edu + * Resource action: SymlinkDhcpdLeases start on orestes-corosync.nevis.columbia.edu + * Pseudo action: CupsClone_start_0 + * Pseudo action: IPClone_start_0 + * Pseudo action: LibvirtdClone_start_0 + * Pseudo action: TftpClone_start_0 + * Pseudo action: ExportsClone_start_0 + * Resource action: CronAmbientTemperature monitor=60000 on hypatia-corosync.nevis.columbia.edu + * Resource action: SymlinkDhcpdConf monitor=60000 on orestes-corosync.nevis.columbia.edu + * Resource action: SymlinkSysconfigDhcpd monitor=60000 on orestes-corosync.nevis.columbia.edu + * Resource action: SymlinkDhcpdLeases monitor=60000 on orestes-corosync.nevis.columbia.edu + * Pseudo action: CupsGroup:0_start_0 + * Resource action: SymlinkUsrShareCups:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: SymlinkCupsdConf:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: Cups:0 start on hypatia-corosync.nevis.columbia.edu + * Pseudo action: CupsGroup:1_start_0 + * Resource action: SymlinkUsrShareCups:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: SymlinkCupsdConf:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: Cups:1 start on orestes-corosync.nevis.columbia.edu + * Pseudo action: IPGroup:0_start_0 + * Resource action: ClusterIP:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: ClusterIPLocal:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: ClusterIPSandbox:0 start on hypatia-corosync.nevis.columbia.edu + * Pseudo action: IPGroup:1_start_0 + * Resource action: ClusterIP:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: ClusterIPLocal:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: ClusterIPSandbox:1 start on orestes-corosync.nevis.columbia.edu + * Pseudo action: LibvirtdGroup:0_start_0 + * Resource action: SymlinkEtcLibvirt:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: Libvirtd:0 start on hypatia-corosync.nevis.columbia.edu + * Pseudo action: LibvirtdGroup:1_start_0 + * Resource action: SymlinkEtcLibvirt:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: Libvirtd:1 start on orestes-corosync.nevis.columbia.edu + * Pseudo action: TftpGroup:0_start_0 + * Resource action: SymlinkTftp:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: Xinetd:0 start on hypatia-corosync.nevis.columbia.edu + * Pseudo action: TftpGroup:1_start_0 + * Resource action: SymlinkTftp:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: Xinetd:1 start on orestes-corosync.nevis.columbia.edu + * Pseudo action: ExportsGroup:0_start_0 + * Resource action: ExportMail:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportMailInbox:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportMailFolders:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportMailForward:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportMailProcmailrc:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportUsrNevis:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportUsrNevisOffsite:0 start on hypatia-corosync.nevis.columbia.edu + * Resource action: ExportWWW:0 start on hypatia-corosync.nevis.columbia.edu + * Pseudo action: ExportsGroup:1_start_0 + * Resource action: ExportMail:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: ExportMailInbox:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: ExportMailFolders:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: ExportMailForward:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: ExportMailProcmailrc:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: ExportUsrNevis:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: ExportUsrNevisOffsite:1 start on orestes-corosync.nevis.columbia.edu + * Resource action: ExportWWW:1 start on orestes-corosync.nevis.columbia.edu + * Pseudo action: CupsGroup:0_running_0 + * Resource action: SymlinkUsrShareCups:0 monitor=60000 on hypatia-corosync.nevis.columbia.edu + * Resource action: SymlinkCupsdConf:0 monitor=60000 on hypatia-corosync.nevis.columbia.edu + * Resource action: Cups:0 monitor=30000 on hypatia-corosync.nevis.columbia.edu + * Pseudo action: CupsGroup:1_running_0 + * Resource action: SymlinkUsrShareCups:1 monitor=60000 on orestes-corosync.nevis.columbia.edu + * Resource action: SymlinkCupsdConf:1 monitor=60000 on orestes-corosync.nevis.columbia.edu + * Resource action: Cups:1 monitor=30000 on orestes-corosync.nevis.columbia.edu + * Pseudo action: CupsClone_running_0 + * Pseudo action: IPGroup:0_running_0 + * Resource action: ClusterIP:0 monitor=30000 on hypatia-corosync.nevis.columbia.edu + * Resource action: ClusterIPLocal:0 monitor=31000 on hypatia-corosync.nevis.columbia.edu + * Resource action: ClusterIPSandbox:0 monitor=32000 on hypatia-corosync.nevis.columbia.edu + * Pseudo action: IPGroup:1_running_0 + * Resource action: ClusterIP:1 monitor=30000 on orestes-corosync.nevis.columbia.edu + * Resource action: ClusterIPLocal:1 monitor=31000 on orestes-corosync.nevis.columbia.edu + * Resource action: ClusterIPSandbox:1 monitor=32000 on orestes-corosync.nevis.columbia.edu + * Pseudo action: IPClone_running_0 + * Pseudo action: LibvirtdGroup:0_running_0 + * Resource action: SymlinkEtcLibvirt:0 monitor=60000 on hypatia-corosync.nevis.columbia.edu + * Resource action: Libvirtd:0 monitor=30000 on hypatia-corosync.nevis.columbia.edu + * Pseudo action: LibvirtdGroup:1_running_0 + * Resource action: SymlinkEtcLibvirt:1 monitor=60000 on orestes-corosync.nevis.columbia.edu + * Resource action: Libvirtd:1 monitor=30000 on orestes-corosync.nevis.columbia.edu + * Pseudo action: LibvirtdClone_running_0 + * Pseudo action: TftpGroup:0_running_0 + * Resource action: SymlinkTftp:0 monitor=60000 on hypatia-corosync.nevis.columbia.edu + * Pseudo action: TftpGroup:1_running_0 + * Resource action: SymlinkTftp:1 monitor=60000 on orestes-corosync.nevis.columbia.edu + * Pseudo action: TftpClone_running_0 + * Pseudo action: ExportsGroup:0_running_0 + * Pseudo action: ExportsGroup:1_running_0 + * Pseudo action: ExportsClone_running_0 + * Resource action: KVM-guest start on hypatia-corosync.nevis.columbia.edu + * Resource action: Proxy start on orestes-corosync.nevis.columbia.edu + +Revised cluster status: +Online: [ hypatia-corosync.nevis.columbia.edu orestes-corosync.nevis.columbia.edu ] + + Master/Slave Set: AdminClone [AdminDrbd] + Masters: [ hypatia-corosync.nevis.columbia.edu orestes-corosync.nevis.columbia.edu ] + CronAmbientTemperature (ocf::heartbeat:symlink): Started hypatia-corosync.nevis.columbia.edu + StonithHypatia (stonith:fence_nut): Started orestes-corosync.nevis.columbia.edu + StonithOrestes (stonith:fence_nut): Started hypatia-corosync.nevis.columbia.edu + Resource Group: DhcpGroup + SymlinkDhcpdConf (ocf::heartbeat:symlink): Started orestes-corosync.nevis.columbia.edu + SymlinkSysconfigDhcpd (ocf::heartbeat:symlink): Started orestes-corosync.nevis.columbia.edu + SymlinkDhcpdLeases (ocf::heartbeat:symlink): Started orestes-corosync.nevis.columbia.edu + Dhcpd (lsb:dhcpd): Stopped + DhcpIP (ocf::heartbeat:IPaddr2): Stopped + Clone Set: CupsClone [CupsGroup] + Started: [ hypatia-corosync.nevis.columbia.edu orestes-corosync.nevis.columbia.edu ] + Clone Set: IPClone [IPGroup] (unique) + Resource Group: IPGroup:0 + ClusterIP:0 (ocf::heartbeat:IPaddr2): Started hypatia-corosync.nevis.columbia.edu + ClusterIPLocal:0 (ocf::heartbeat:IPaddr2): Started hypatia-corosync.nevis.columbia.edu + ClusterIPSandbox:0 (ocf::heartbeat:IPaddr2): Started hypatia-corosync.nevis.columbia.edu + Resource Group: IPGroup:1 + ClusterIP:1 (ocf::heartbeat:IPaddr2): Started orestes-corosync.nevis.columbia.edu + ClusterIPLocal:1 (ocf::heartbeat:IPaddr2): Started orestes-corosync.nevis.columbia.edu + ClusterIPSandbox:1 (ocf::heartbeat:IPaddr2): Started orestes-corosync.nevis.columbia.edu + Clone Set: LibvirtdClone [LibvirtdGroup] + Started: [ hypatia-corosync.nevis.columbia.edu orestes-corosync.nevis.columbia.edu ] + Clone Set: TftpClone [TftpGroup] + Started: [ hypatia-corosync.nevis.columbia.edu orestes-corosync.nevis.columbia.edu ] + Clone Set: ExportsClone [ExportsGroup] + Started: [ hypatia-corosync.nevis.columbia.edu orestes-corosync.nevis.columbia.edu ] + Clone Set: FilesystemClone [FilesystemGroup] + Started: [ hypatia-corosync.nevis.columbia.edu orestes-corosync.nevis.columbia.edu ] + KVM-guest (ocf::heartbeat:VirtualDomain): Started hypatia-corosync.nevis.columbia.edu + Proxy (ocf::heartbeat:VirtualDomain): Started orestes-corosync.nevis.columbia.edu + diff --git a/pengine/test10/master-promotion-constraint.summary b/pengine/test10/master-promotion-constraint.summary new file mode 100644 index 0000000000..75fe763c82 --- /dev/null +++ b/pengine/test10/master-promotion-constraint.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + fencing-sbd (stonith:external/sbd): Started hex-13 + Resource Group: g0 + d0 (ocf::pacemaker:Dummy): Stopped + d1 (ocf::pacemaker:Dummy): Stopped + Master/Slave Set: ms0 [s0] + Masters: [ hex-14 ] + Slaves: [ hex-13 ] + +Transition Summary: + * Demote s0:1 (Master -> Slave hex-14) + +Executing cluster transition: + * Resource action: s0:1 cancel=20000 on hex-14 + * Pseudo action: ms0_demote_0 + * Resource action: s0:1 demote on hex-14 + * Pseudo action: ms0_demoted_0 + * Resource action: s0:1 monitor=21000 on hex-14 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + fencing-sbd (stonith:external/sbd): Started hex-13 + Resource Group: g0 + d0 (ocf::pacemaker:Dummy): Stopped + d1 (ocf::pacemaker:Dummy): Stopped + Master/Slave Set: ms0 [s0] + Slaves: [ hex-13 hex-14 ] + diff --git a/pengine/test10/master-pseudo.summary b/pengine/test10/master-pseudo.summary new file mode 100644 index 0000000000..4ac7605517 --- /dev/null +++ b/pengine/test10/master-pseudo.summary @@ -0,0 +1,60 @@ + +Current cluster status: +Node raki.linbit: standby +Online: [ sambuca.linbit ] + + ip_float_right (ocf::heartbeat:IPaddr2): Stopped + Master/Slave Set: ms_drbd_float [drbd_float] + Slaves: [ sambuca.linbit ] + Resource Group: nfsexport + ip_nfs (ocf::heartbeat:IPaddr2): Stopped + fs_float (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + * Start ip_float_right (sambuca.linbit) + * Restart drbd_float:0 (Slave sambuca.linbit) + * Promote drbd_float:0 (Slave -> Master sambuca.linbit) + * Start ip_nfs (sambuca.linbit) + +Executing cluster transition: + * Resource action: ip_float_right start on sambuca.linbit + * Pseudo action: ms_drbd_float_pre_notify_stop_0 + * Resource action: drbd_float:0 notify on sambuca.linbit + * Pseudo action: ms_drbd_float_confirmed-pre_notify_stop_0 + * Pseudo action: ms_drbd_float_stop_0 + * Resource action: drbd_float:0 stop on sambuca.linbit + * Pseudo action: ms_drbd_float_stopped_0 + * Pseudo action: ms_drbd_float_post_notify_stopped_0 + * Pseudo action: ms_drbd_float_confirmed-post_notify_stopped_0 + * Pseudo action: ms_drbd_float_pre_notify_start_0 + * Pseudo action: all_stopped + * Pseudo action: ms_drbd_float_confirmed-pre_notify_start_0 + * Pseudo action: ms_drbd_float_start_0 + * Resource action: drbd_float:0 start on sambuca.linbit + * Pseudo action: ms_drbd_float_running_0 + * Pseudo action: ms_drbd_float_post_notify_running_0 + * Resource action: drbd_float:0 notify on sambuca.linbit + * Pseudo action: ms_drbd_float_confirmed-post_notify_running_0 + * Pseudo action: ms_drbd_float_pre_notify_promote_0 + * Resource action: drbd_float:0 notify on sambuca.linbit + * Pseudo action: ms_drbd_float_confirmed-pre_notify_promote_0 + * Pseudo action: ms_drbd_float_promote_0 + * Resource action: drbd_float:0 promote on sambuca.linbit + * Pseudo action: ms_drbd_float_promoted_0 + * Pseudo action: ms_drbd_float_post_notify_promoted_0 + * Resource action: drbd_float:0 notify on sambuca.linbit + * Pseudo action: ms_drbd_float_confirmed-post_notify_promoted_0 + * Pseudo action: nfsexport_start_0 + * Resource action: ip_nfs start on sambuca.linbit + +Revised cluster status: +Node raki.linbit: standby +Online: [ sambuca.linbit ] + + ip_float_right (ocf::heartbeat:IPaddr2): Started sambuca.linbit + Master/Slave Set: ms_drbd_float [drbd_float] + Masters: [ sambuca.linbit ] + Resource Group: nfsexport + ip_nfs (ocf::heartbeat:IPaddr2): Started sambuca.linbit + fs_float (ocf::heartbeat:Filesystem): Stopped + diff --git a/pengine/test10/master-reattach.summary b/pengine/test10/master-reattach.summary new file mode 100644 index 0000000000..8afe6a9c8b --- /dev/null +++ b/pengine/test10/master-reattach.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ dktest1 dktest2 ] + + Master/Slave Set: ms-drbd1 [drbd1] (unmanaged) + drbd1:0 (ocf::heartbeat:drbd): Master dktest1 (unmanaged) + drbd1:1 (ocf::heartbeat:drbd): Slave dktest2 (unmanaged) + Resource Group: apache + apache-vip (ocf::heartbeat:IPaddr2): Started dktest1 (unmanaged) + mount (ocf::heartbeat:Filesystem): Started dktest1 (unmanaged) + webserver (ocf::heartbeat:apache): Started dktest1 (unmanaged) + +Transition Summary: + +Executing cluster transition: + * Resource action: drbd1:0 monitor=10000 on dktest1 + * Resource action: drbd1:0 monitor=11000 on dktest2 + * Resource action: apache-vip monitor=60000 on dktest1 + * Resource action: mount monitor=10000 on dktest1 + * Resource action: webserver monitor=30000 on dktest1 + +Revised cluster status: +Online: [ dktest1 dktest2 ] + + Master/Slave Set: ms-drbd1 [drbd1] (unmanaged) + drbd1:0 (ocf::heartbeat:drbd): Master dktest1 (unmanaged) + drbd1:1 (ocf::heartbeat:drbd): Slave dktest2 (unmanaged) + Resource Group: apache + apache-vip (ocf::heartbeat:IPaddr2): Started dktest1 (unmanaged) + mount (ocf::heartbeat:Filesystem): Started dktest1 (unmanaged) + webserver (ocf::heartbeat:apache): Started dktest1 (unmanaged) + diff --git a/pengine/test10/master-role.summary b/pengine/test10/master-role.summary new file mode 100644 index 0000000000..0241af1cf2 --- /dev/null +++ b/pengine/test10/master-role.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ sles11-a sles11-b ] + + Master/Slave Set: ms_res_Stateful_1 [res_Stateful_1] + Masters: [ sles11-a sles11-b ] + +Transition Summary: + * Demote res_Stateful_1:1 (Master -> Slave sles11-b) + +Executing cluster transition: + * Pseudo action: ms_res_Stateful_1_demote_0 + * Resource action: res_Stateful_1:1 demote on sles11-b + * Pseudo action: ms_res_Stateful_1_demoted_0 + +Revised cluster status: +Online: [ sles11-a sles11-b ] + + Master/Slave Set: ms_res_Stateful_1 [res_Stateful_1] + Masters: [ sles11-a ] + Slaves: [ sles11-b ] + diff --git a/pengine/test10/master-unmanaged-monitor.summary b/pengine/test10/master-unmanaged-monitor.summary new file mode 100644 index 0000000000..0a5712dba1 --- /dev/null +++ b/pengine/test10/master-unmanaged-monitor.summary @@ -0,0 +1,68 @@ + +Current cluster status: +Online: [ pcmk-1 pcmk-2 pcmk-3 pcmk-4 ] + + Clone Set: Fencing [FencingChild] (unmanaged) + Stopped: [ FencingChild:0 FencingChild:1 FencingChild:2 FencingChild:3 ] + Resource Group: group-1 + r192.168.122.112 (ocf::heartbeat:IPaddr): Started pcmk-3 (unmanaged) + r192.168.122.113 (ocf::heartbeat:IPaddr): Started pcmk-3 (unmanaged) + r192.168.122.114 (ocf::heartbeat:IPaddr): Started pcmk-3 (unmanaged) + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 (unmanaged) + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 (unmanaged) + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 (unmanaged) + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-4 (unmanaged) + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Started pcmk-3 (unmanaged) + migrator (ocf::pacemaker:Dummy): Started pcmk-4 (unmanaged) + Clone Set: Connectivity [ping-1] (unmanaged) + ping-1:0 (ocf::pacemaker:ping): Started pcmk-2 (unmanaged) + ping-1:1 (ocf::pacemaker:ping): Started pcmk-3 (unmanaged) + ping-1:2 (ocf::pacemaker:ping): Started pcmk-4 (unmanaged) + ping-1:3 (ocf::pacemaker:ping): Started pcmk-1 (unmanaged) + Master/Slave Set: master-1 [stateful-1] (unmanaged) + stateful-1:0 (ocf::pacemaker:Stateful): Slave pcmk-2 (unmanaged) + stateful-1:1 (ocf::pacemaker:Stateful): Master pcmk-3 (unmanaged) + stateful-1:2 (ocf::pacemaker:Stateful): Slave pcmk-4 (unmanaged) + Stopped: [ stateful-1:3 ] + +Transition Summary: + +Executing cluster transition: + * Resource action: lsb-dummy monitor=5000 on pcmk-3 + * Resource action: migrator monitor=10000 on pcmk-4 + * Resource action: ping-1:0 monitor=60000 on pcmk-2 + * Resource action: ping-1:0 monitor=60000 on pcmk-3 + * Resource action: ping-1:0 monitor=60000 on pcmk-4 + * Resource action: ping-1:0 monitor=60000 on pcmk-1 + * Resource action: stateful-1:0 monitor=15000 on pcmk-2 + * Resource action: stateful-1:0 monitor on pcmk-1 + * Resource action: stateful-1:0 monitor=16000 on pcmk-3 + * Resource action: stateful-1:0 monitor=15000 on pcmk-4 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ pcmk-1 pcmk-2 pcmk-3 pcmk-4 ] + + Clone Set: Fencing [FencingChild] (unmanaged) + Stopped: [ FencingChild:0 FencingChild:1 FencingChild:2 FencingChild:3 ] + Resource Group: group-1 + r192.168.122.112 (ocf::heartbeat:IPaddr): Started pcmk-3 (unmanaged) + r192.168.122.113 (ocf::heartbeat:IPaddr): Started pcmk-3 (unmanaged) + r192.168.122.114 (ocf::heartbeat:IPaddr): Started pcmk-3 (unmanaged) + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 (unmanaged) + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 (unmanaged) + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 (unmanaged) + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-4 (unmanaged) + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Started pcmk-3 (unmanaged) + migrator (ocf::pacemaker:Dummy): Started pcmk-4 (unmanaged) + Clone Set: Connectivity [ping-1] (unmanaged) + ping-1:0 (ocf::pacemaker:ping): Started pcmk-2 (unmanaged) + ping-1:1 (ocf::pacemaker:ping): Started pcmk-3 (unmanaged) + ping-1:2 (ocf::pacemaker:ping): Started pcmk-4 (unmanaged) + ping-1:3 (ocf::pacemaker:ping): Started pcmk-1 (unmanaged) + Master/Slave Set: master-1 [stateful-1] (unmanaged) + stateful-1:0 (ocf::pacemaker:Stateful): Slave pcmk-2 (unmanaged) + stateful-1:1 (ocf::pacemaker:Stateful): Master pcmk-3 (unmanaged) + stateful-1:2 (ocf::pacemaker:Stateful): Slave pcmk-4 (unmanaged) + Stopped: [ stateful-1:3 ] + diff --git a/pengine/test10/master_monitor_restart.summary b/pengine/test10/master_monitor_restart.summary new file mode 100644 index 0000000000..2eed0a5bc0 --- /dev/null +++ b/pengine/test10/master_monitor_restart.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Node node2 (1048225984): standby +Online: [ node1 ] + + Master/Slave Set: MS_RSC [MS_RSC_NATIVE] + Masters: [ node1 ] + Stopped: [ MS_RSC_NATIVE:1 ] + +Transition Summary: + +Executing cluster transition: + * Resource action: MS_RSC_NATIVE:0 monitor=5000 on node1 + +Revised cluster status: +Node node2 (1048225984): standby +Online: [ node1 ] + + Master/Slave Set: MS_RSC [MS_RSC_NATIVE] + Masters: [ node1 ] + Stopped: [ MS_RSC_NATIVE:1 ] + diff --git a/pengine/test10/migrate-1.summary b/pengine/test10/migrate-1.summary new file mode 100644 index 0000000000..c0e892a3ce --- /dev/null +++ b/pengine/test10/migrate-1.summary @@ -0,0 +1,25 @@ + +Current cluster status: +Node node1: standby +Online: [ node2 ] + + rsc3 (heartbeat:apache): Started node1 + +Transition Summary: + * Migrate rsc3 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: rsc3 monitor on node2 + * Pseudo action: probe_complete + * Resource action: rsc3 migrate_to on node1 + * Resource action: rsc3 migrate_from on node2 + * Resource action: rsc3 stop on node1 + * Pseudo action: all_stopped + * Pseudo action: rsc3_start_0 + +Revised cluster status: +Node node1: standby +Online: [ node2 ] + + rsc3 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/migrate-2.summary b/pengine/test10/migrate-2.summary new file mode 100644 index 0000000000..6dda0737fa --- /dev/null +++ b/pengine/test10/migrate-2.summary @@ -0,0 +1,17 @@ + +Current cluster status: +Node node1: standby +Online: [ node2 ] + + rsc3 (heartbeat:apache): Started node2 + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Node node1: standby +Online: [ node2 ] + + rsc3 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/migrate-3.summary b/pengine/test10/migrate-3.summary new file mode 100644 index 0000000000..943b53d630 --- /dev/null +++ b/pengine/test10/migrate-3.summary @@ -0,0 +1,23 @@ + +Current cluster status: +Node node1: standby +Online: [ node2 ] + + rsc3 (heartbeat:apache): Started node1 FAILED + +Transition Summary: + * Move rsc3 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: rsc3 monitor on node2 + * Pseudo action: probe_complete + * Resource action: rsc3 stop on node1 + * Pseudo action: all_stopped + * Resource action: rsc3 start on node2 + +Revised cluster status: +Node node1: standby +Online: [ node2 ] + + rsc3 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/migrate-4.summary b/pengine/test10/migrate-4.summary new file mode 100644 index 0000000000..aacb53b966 --- /dev/null +++ b/pengine/test10/migrate-4.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Node node1: standby +Online: [ node2 ] + + rsc3 (heartbeat:apache): Started node2 FAILED + +Transition Summary: + * Recover rsc3 (Started node2) + +Executing cluster transition: + * Resource action: rsc3 stop on node2 + * Pseudo action: all_stopped + * Resource action: rsc3 start on node2 + +Revised cluster status: +Node node1: standby +Online: [ node2 ] + + rsc3 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/migrate-5.summary b/pengine/test10/migrate-5.summary new file mode 100644 index 0000000000..6e9f146199 --- /dev/null +++ b/pengine/test10/migrate-5.summary @@ -0,0 +1,34 @@ + +Current cluster status: +Node dom0-02: standby +Online: [ dom0-01 ] + + domU-test01 (ocf::heartbeat:Xen): Started dom0-02 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-02 dom0-01 ] + +Transition Summary: + * Migrate domU-test01 (Started dom0-02 -> dom0-01) + * Stop dom0-iscsi1-cnx1:0 (dom0-02) + +Executing cluster transition: + * Resource action: domU-test01 migrate_to on dom0-02 + * Resource action: domU-test01 migrate_from on dom0-01 + * Resource action: domU-test01 stop on dom0-02 + * Pseudo action: clone-dom0-iscsi1_stop_0 + * Pseudo action: domU-test01_start_0 + * Pseudo action: dom0-iscsi1:0_stop_0 + * Resource action: dom0-iscsi1-cnx1:0 stop on dom0-02 + * Pseudo action: all_stopped + * Pseudo action: dom0-iscsi1:0_stopped_0 + * Pseudo action: clone-dom0-iscsi1_stopped_0 + +Revised cluster status: +Node dom0-02: standby +Online: [ dom0-01 ] + + domU-test01 (ocf::heartbeat:Xen): Started dom0-01 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-01 ] + Stopped: [ dom0-iscsi1:0 ] + diff --git a/pengine/test10/migrate-begin.summary b/pengine/test10/migrate-begin.summary new file mode 100644 index 0000000000..b4b58703f1 --- /dev/null +++ b/pengine/test10/migrate-begin.summary @@ -0,0 +1,27 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-14 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + +Transition Summary: + * Migrate test-vm (Started hex-14 -> hex-13) + +Executing cluster transition: + * Pseudo action: load_stopped_hex-13 + * Resource action: test-vm migrate_to on hex-14 + * Resource action: test-vm migrate_from on hex-13 + * Resource action: test-vm stop on hex-14 + * Pseudo action: load_stopped_hex-14 + * Pseudo action: all_stopped + * Pseudo action: test-vm_start_0 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + diff --git a/pengine/test10/migrate-fail-2.summary b/pengine/test10/migrate-fail-2.summary new file mode 100644 index 0000000000..255a650fa1 --- /dev/null +++ b/pengine/test10/migrate-fail-2.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen) Started FAILED[ hex-13 hex-14 ] + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + +Transition Summary: + * Recover test-vm (Started hex-13) + +Executing cluster transition: + * Resource action: test-vm stop on hex-14 + * Resource action: test-vm stop on hex-13 + * Pseudo action: load_stopped_hex-14 + * Pseudo action: load_stopped_hex-13 + * Pseudo action: all_stopped + * Resource action: test-vm start on hex-13 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + diff --git a/pengine/test10/migrate-fail-3.summary b/pengine/test10/migrate-fail-3.summary new file mode 100644 index 0000000000..c3929378d8 --- /dev/null +++ b/pengine/test10/migrate-fail-3.summary @@ -0,0 +1,25 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 FAILED + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + +Transition Summary: + * Recover test-vm (Started hex-13) + +Executing cluster transition: + * Resource action: test-vm stop on hex-13 + * Pseudo action: load_stopped_hex-14 + * Pseudo action: load_stopped_hex-13 + * Pseudo action: all_stopped + * Resource action: test-vm start on hex-13 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + diff --git a/pengine/test10/migrate-fail-4.summary b/pengine/test10/migrate-fail-4.summary new file mode 100644 index 0000000000..cf5801d9d7 --- /dev/null +++ b/pengine/test10/migrate-fail-4.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen) Started [ hex-13 hex-14 ] + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + +Transition Summary: + * Restart test-vm (Started hex-13) + +Executing cluster transition: + * Resource action: test-vm stop on hex-14 + * Resource action: test-vm stop on hex-13 + * Pseudo action: load_stopped_hex-14 + * Pseudo action: load_stopped_hex-13 + * Pseudo action: all_stopped + * Resource action: test-vm start on hex-13 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + diff --git a/pengine/test10/migrate-fail-5.summary b/pengine/test10/migrate-fail-5.summary new file mode 100644 index 0000000000..d009383e39 --- /dev/null +++ b/pengine/test10/migrate-fail-5.summary @@ -0,0 +1,23 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Stopped + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + +Transition Summary: + * Start test-vm (hex-13) + +Executing cluster transition: + * Pseudo action: load_stopped_hex-14 + * Pseudo action: load_stopped_hex-13 + * Resource action: test-vm start on hex-13 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + diff --git a/pengine/test10/migrate-fail-6.summary b/pengine/test10/migrate-fail-6.summary new file mode 100644 index 0000000000..0433f14b2f --- /dev/null +++ b/pengine/test10/migrate-fail-6.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen) Started FAILED[ hex-13 hex-14 ] + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + +Transition Summary: + * Recover test-vm (Started hex-13) + +Executing cluster transition: + * Resource action: test-vm stop on hex-13 + * Resource action: test-vm stop on hex-14 + * Pseudo action: load_stopped_hex-14 + * Pseudo action: load_stopped_hex-13 + * Pseudo action: all_stopped + * Resource action: test-vm start on hex-13 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + diff --git a/pengine/test10/migrate-fail-7.summary b/pengine/test10/migrate-fail-7.summary new file mode 100644 index 0000000000..7a417583e6 --- /dev/null +++ b/pengine/test10/migrate-fail-7.summary @@ -0,0 +1,23 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Stopped hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + +Transition Summary: + * Restart test-vm (Started hex-13) + +Executing cluster transition: + * Pseudo action: load_stopped_hex-14 + * Pseudo action: load_stopped_hex-13 + * Resource action: test-vm start on hex-13 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + diff --git a/pengine/test10/migrate-fail-8.summary b/pengine/test10/migrate-fail-8.summary new file mode 100644 index 0000000000..542e5ae05c --- /dev/null +++ b/pengine/test10/migrate-fail-8.summary @@ -0,0 +1,25 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-14 FAILED + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + +Transition Summary: + * Move test-vm (Started hex-14 -> hex-13) + +Executing cluster transition: + * Resource action: test-vm stop on hex-14 + * Pseudo action: load_stopped_hex-13 + * Pseudo action: load_stopped_hex-14 + * Pseudo action: all_stopped + * Resource action: test-vm start on hex-13 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + diff --git a/pengine/test10/migrate-fail-9.summary b/pengine/test10/migrate-fail-9.summary new file mode 100644 index 0000000000..82ded68be1 --- /dev/null +++ b/pengine/test10/migrate-fail-9.summary @@ -0,0 +1,25 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Stopped + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + +Transition Summary: + * Start test-vm (hex-13) + +Executing cluster transition: + * Resource action: test-vm stop on hex-14 + * Pseudo action: load_stopped_hex-14 + * Pseudo action: load_stopped_hex-13 + * Pseudo action: all_stopped + * Resource action: test-vm start on hex-13 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + diff --git a/pengine/test10/migrate-fencing.summary b/pengine/test10/migrate-fencing.summary new file mode 100644 index 0000000000..11c2dd212f --- /dev/null +++ b/pengine/test10/migrate-fencing.summary @@ -0,0 +1,108 @@ + +Current cluster status: +Node pcmk-4: UNCLEAN (online) +Online: [ pcmk-1 pcmk-2 pcmk-3 ] + + Clone Set: Fencing [FencingChild] + Started: [ pcmk-4 pcmk-1 pcmk-2 pcmk-3 ] + Resource Group: group-1 + r192.168.101.181 (ocf::heartbeat:IPaddr): Started pcmk-4 + r192.168.101.182 (ocf::heartbeat:IPaddr): Started pcmk-4 + r192.168.101.183 (ocf::heartbeat:IPaddr): Started pcmk-4 + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-4 + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Started pcmk-4 + migrator (ocf::pacemaker:Dummy): Started pcmk-1 + Clone Set: Connectivity [ping-1] + Started: [ pcmk-4 pcmk-2 pcmk-3 pcmk-1 ] + Master/Slave Set: master-1 [stateful-1] + Masters: [ pcmk-4 ] + Slaves: [ pcmk-1 pcmk-2 pcmk-3 ] + +Transition Summary: + * Stop FencingChild:0 (pcmk-4) + * Move r192.168.101.181 (Started pcmk-4 -> pcmk-1) + * Move r192.168.101.182 (Started pcmk-4 -> pcmk-1) + * Move r192.168.101.183 (Started pcmk-4 -> pcmk-1) + * Move rsc_pcmk-4 (Started pcmk-4 -> pcmk-2) + * Move lsb-dummy (Started pcmk-4 -> pcmk-1) + * Migrate migrator (Started pcmk-1 -> pcmk-3) + * Stop ping-1:0 (pcmk-4) + * Demote stateful-1:0 (Master -> Stopped pcmk-4) + * Promote stateful-1:1 (Slave -> Master pcmk-1) + +Executing cluster transition: + * Pseudo action: Fencing_stop_0 + * Resource action: stateful-1:2 monitor=15000 on pcmk-2 + * Resource action: stateful-1:3 monitor=15000 on pcmk-3 + * Pseudo action: stonith_up + * Pseudo action: FencingChild:0_stop_0 + * Pseudo action: Fencing_stopped_0 + * Fencing pcmk-4 + * Pseudo action: stonith_complete + * Pseudo action: rsc_pcmk-4_stop_0 + * Pseudo action: lsb-dummy_stop_0 + * Resource action: migrator migrate_to on pcmk-1 + * Pseudo action: Connectivity_stop_0 + * Pseudo action: group-1_stop_0 + * Pseudo action: r192.168.101.183_stop_0 + * Resource action: rsc_pcmk-4 start on pcmk-2 + * Resource action: migrator migrate_from on pcmk-3 + * Resource action: migrator stop on pcmk-1 + * Pseudo action: ping-1:0_stop_0 + * Pseudo action: Connectivity_stopped_0 + * Pseudo action: r192.168.101.182_stop_0 + * Resource action: rsc_pcmk-4 monitor=5000 on pcmk-2 + * Pseudo action: migrator_start_0 + * Pseudo action: r192.168.101.181_stop_0 + * Resource action: migrator monitor=10000 on pcmk-3 + * Pseudo action: group-1_stopped_0 + * Pseudo action: master-1_demote_0 + * Pseudo action: stateful-1:0_demote_0 + * Pseudo action: master-1_demoted_0 + * Pseudo action: master-1_stop_0 + * Pseudo action: stateful-1:0_stop_0 + * Pseudo action: master-1_stopped_0 + * Pseudo action: all_stopped + * Pseudo action: master-1_promote_0 + * Resource action: stateful-1:1 promote on pcmk-1 + * Pseudo action: master-1_promoted_0 + * Pseudo action: group-1_start_0 + * Resource action: r192.168.101.181 start on pcmk-1 + * Resource action: r192.168.101.182 start on pcmk-1 + * Resource action: r192.168.101.183 start on pcmk-1 + * Resource action: stateful-1:1 monitor=16000 on pcmk-1 + * Pseudo action: group-1_running_0 + * Resource action: r192.168.101.181 monitor=5000 on pcmk-1 + * Resource action: r192.168.101.182 monitor=5000 on pcmk-1 + * Resource action: r192.168.101.183 monitor=5000 on pcmk-1 + * Resource action: lsb-dummy start on pcmk-1 + * Resource action: lsb-dummy monitor=5000 on pcmk-1 + +Revised cluster status: +Online: [ pcmk-1 pcmk-2 pcmk-3 ] +OFFLINE: [ pcmk-4 ] + + Clone Set: Fencing [FencingChild] + Started: [ pcmk-1 pcmk-2 pcmk-3 ] + Stopped: [ FencingChild:0 ] + Resource Group: group-1 + r192.168.101.181 (ocf::heartbeat:IPaddr): Started pcmk-1 + r192.168.101.182 (ocf::heartbeat:IPaddr): Started pcmk-1 + r192.168.101.183 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-2 + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Started pcmk-1 + migrator (ocf::pacemaker:Dummy): Started pcmk-3 + Clone Set: Connectivity [ping-1] + Started: [ pcmk-2 pcmk-3 pcmk-1 ] + Stopped: [ ping-1:0 ] + Master/Slave Set: master-1 [stateful-1] + Masters: [ pcmk-1 ] + Slaves: [ pcmk-2 pcmk-3 ] + Stopped: [ stateful-1:0 ] + diff --git a/pengine/test10/migrate-partial-1.summary b/pengine/test10/migrate-partial-1.summary new file mode 100644 index 0000000000..d0caf3bbe0 --- /dev/null +++ b/pengine/test10/migrate-partial-1.summary @@ -0,0 +1,23 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + +Transition Summary: + +Executing cluster transition: + * Resource action: test-vm stop on hex-14 + * Pseudo action: load_stopped_hex-14 + * Pseudo action: load_stopped_hex-13 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + diff --git a/pengine/test10/migrate-partial-2.summary b/pengine/test10/migrate-partial-2.summary new file mode 100644 index 0000000000..60fd466cbb --- /dev/null +++ b/pengine/test10/migrate-partial-2.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen) Started [ hex-13 hex-14 ] + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + +Transition Summary: + * Migrate test-vm (Started hex-14 -> hex-13) + +Executing cluster transition: + * Pseudo action: load_stopped_hex-13 + * Resource action: test-vm migrate_from on hex-13 + * Resource action: test-vm stop on hex-14 + * Pseudo action: load_stopped_hex-14 + * Pseudo action: all_stopped + * Pseudo action: test-vm_start_0 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + diff --git a/pengine/test10/migrate-partial-3.summary b/pengine/test10/migrate-partial-3.summary new file mode 100644 index 0000000000..89ccaf5bc8 --- /dev/null +++ b/pengine/test10/migrate-partial-3.summary @@ -0,0 +1,30 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] +OFFLINE: [ hex-15 ] + + test-vm (ocf::heartbeat:Xen): Started hex-14 FAILED + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + Stopped: [ dlm:2 ] + +Transition Summary: + * Move test-vm (Started hex-14 -> hex-13) + +Executing cluster transition: + * Resource action: test-vm stop on hex-14 + * Pseudo action: load_stopped_hex-15 + * Pseudo action: load_stopped_hex-13 + * Pseudo action: load_stopped_hex-14 + * Pseudo action: all_stopped + * Resource action: test-vm start on hex-13 + +Revised cluster status: +Online: [ hex-13 hex-14 ] +OFFLINE: [ hex-15 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + Stopped: [ dlm:2 ] + diff --git a/pengine/test10/migrate-partial-4.summary b/pengine/test10/migrate-partial-4.summary new file mode 100644 index 0000000000..1aa95fedbc --- /dev/null +++ b/pengine/test10/migrate-partial-4.summary @@ -0,0 +1,127 @@ + +Current cluster status: +Online: [ lustre02-left lustre01-left lustre03-left lustre04-left ] + + drbd-local (ocf::vds-ok:Ticketer): Started lustre01-left + drbd-stacked (ocf::vds-ok:Ticketer): Stopped + drbd-testfs-local (ocf::vds-ok:Ticketer): Stopped + drbd-testfs-stacked (ocf::vds-ok:Ticketer): Stopped + ip-testfs-mdt0000-left (ocf::heartbeat:IPaddr2): Stopped + ip-testfs-ost0000-left (ocf::heartbeat:IPaddr2): Stopped + ip-testfs-ost0001-left (ocf::heartbeat:IPaddr2): Stopped + ip-testfs-ost0002-left (ocf::heartbeat:IPaddr2): Stopped + ip-testfs-ost0003-left (ocf::heartbeat:IPaddr2): Stopped + lustre (ocf::vds-ok:Ticketer): Started lustre03-left + mgs (ocf::vds-ok:lustre-server): Stopped + testfs (ocf::vds-ok:Ticketer): Started lustre02-left + testfs-mdt0000 (ocf::vds-ok:lustre-server): Stopped + testfs-ost0000 (ocf::vds-ok:lustre-server): Stopped + testfs-ost0001 (ocf::vds-ok:lustre-server): Stopped + testfs-ost0002 (ocf::vds-ok:lustre-server): Stopped + testfs-ost0003 (ocf::vds-ok:lustre-server): Stopped + Resource Group: booth + ip-booth (ocf::heartbeat:IPaddr2): Started lustre02-left + boothd (ocf::pacemaker:booth-site): Started lustre02-left + Master/Slave Set: ms-drbd-mgs [drbd-mgs] + Stopped: [ drbd-mgs:0 drbd-mgs:1 ] + Master/Slave Set: ms-drbd-testfs-mdt0000 [drbd-testfs-mdt0000] + Stopped: [ drbd-testfs-mdt0000:0 ] + Master/Slave Set: ms-drbd-testfs-mdt0000-left [drbd-testfs-mdt0000-left] + Stopped: [ drbd-testfs-mdt0000-left:0 drbd-testfs-mdt0000-left:1 ] + Master/Slave Set: ms-drbd-testfs-ost0000 [drbd-testfs-ost0000] + Stopped: [ drbd-testfs-ost0000:0 ] + Master/Slave Set: ms-drbd-testfs-ost0000-left [drbd-testfs-ost0000-left] + Stopped: [ drbd-testfs-ost0000-left:0 drbd-testfs-ost0000-left:1 ] + Master/Slave Set: ms-drbd-testfs-ost0001 [drbd-testfs-ost0001] + Stopped: [ drbd-testfs-ost0001:0 ] + Master/Slave Set: ms-drbd-testfs-ost0001-left [drbd-testfs-ost0001-left] + Stopped: [ drbd-testfs-ost0001-left:0 drbd-testfs-ost0001-left:1 ] + Master/Slave Set: ms-drbd-testfs-ost0002 [drbd-testfs-ost0002] + Stopped: [ drbd-testfs-ost0002:0 ] + Master/Slave Set: ms-drbd-testfs-ost0002-left [drbd-testfs-ost0002-left] + Stopped: [ drbd-testfs-ost0002-left:0 drbd-testfs-ost0002-left:1 ] + Master/Slave Set: ms-drbd-testfs-ost0003 [drbd-testfs-ost0003] + Stopped: [ drbd-testfs-ost0003:0 ] + Master/Slave Set: ms-drbd-testfs-ost0003-left [drbd-testfs-ost0003-left] + Stopped: [ drbd-testfs-ost0003-left:0 drbd-testfs-ost0003-left:1 ] + +Transition Summary: + * Start drbd-stacked (lustre02-left) + * Start drbd-testfs-local (lustre03-left) + * Migrate lustre (Started lustre03-left -> lustre04-left) + * Migrate testfs (Started lustre02-left -> lustre03-left) + * Start drbd-mgs:0 (lustre01-left) + * Start drbd-mgs:1 (lustre02-left) + +Executing cluster transition: + * Resource action: drbd-stacked start on lustre02-left + * Resource action: drbd-testfs-local start on lustre03-left + * Resource action: lustre migrate_to on lustre03-left + * Resource action: testfs migrate_to on lustre02-left + * Resource action: testfs stop on lustre01-left + * Pseudo action: ms-drbd-mgs_pre_notify_start_0 + * Resource action: lustre migrate_from on lustre04-left + * Resource action: lustre stop on lustre03-left + * Resource action: testfs migrate_from on lustre03-left + * Resource action: testfs stop on lustre02-left + * Pseudo action: ms-drbd-mgs_confirmed-pre_notify_start_0 + * Pseudo action: ms-drbd-mgs_start_0 + * Pseudo action: all_stopped + * Pseudo action: lustre_start_0 + * Pseudo action: testfs_start_0 + * Resource action: drbd-mgs:0 start on lustre01-left + * Resource action: drbd-mgs:1 start on lustre02-left + * Pseudo action: ms-drbd-mgs_running_0 + * Pseudo action: ms-drbd-mgs_post_notify_running_0 + * Resource action: drbd-mgs:0 notify on lustre01-left + * Resource action: drbd-mgs:1 notify on lustre02-left + * Pseudo action: ms-drbd-mgs_confirmed-post_notify_running_0 + * Resource action: drbd-mgs:0 monitor=30000 on lustre01-left + * Resource action: drbd-mgs:1 monitor=30000 on lustre02-left + +Revised cluster status: +Online: [ lustre02-left lustre01-left lustre03-left lustre04-left ] + + drbd-local (ocf::vds-ok:Ticketer): Started lustre01-left + drbd-stacked (ocf::vds-ok:Ticketer): Started lustre02-left + drbd-testfs-local (ocf::vds-ok:Ticketer): Started lustre03-left + drbd-testfs-stacked (ocf::vds-ok:Ticketer): Stopped + ip-testfs-mdt0000-left (ocf::heartbeat:IPaddr2): Stopped + ip-testfs-ost0000-left (ocf::heartbeat:IPaddr2): Stopped + ip-testfs-ost0001-left (ocf::heartbeat:IPaddr2): Stopped + ip-testfs-ost0002-left (ocf::heartbeat:IPaddr2): Stopped + ip-testfs-ost0003-left (ocf::heartbeat:IPaddr2): Stopped + lustre (ocf::vds-ok:Ticketer): Started lustre04-left + mgs (ocf::vds-ok:lustre-server): Stopped + testfs (ocf::vds-ok:Ticketer): Started lustre03-left + testfs-mdt0000 (ocf::vds-ok:lustre-server): Stopped + testfs-ost0000 (ocf::vds-ok:lustre-server): Stopped + testfs-ost0001 (ocf::vds-ok:lustre-server): Stopped + testfs-ost0002 (ocf::vds-ok:lustre-server): Stopped + testfs-ost0003 (ocf::vds-ok:lustre-server): Stopped + Resource Group: booth + ip-booth (ocf::heartbeat:IPaddr2): Started lustre02-left + boothd (ocf::pacemaker:booth-site): Started lustre02-left + Master/Slave Set: ms-drbd-mgs [drbd-mgs] + Slaves: [ lustre01-left lustre02-left ] + Master/Slave Set: ms-drbd-testfs-mdt0000 [drbd-testfs-mdt0000] + Stopped: [ drbd-testfs-mdt0000:0 ] + Master/Slave Set: ms-drbd-testfs-mdt0000-left [drbd-testfs-mdt0000-left] + Stopped: [ drbd-testfs-mdt0000-left:0 drbd-testfs-mdt0000-left:1 ] + Master/Slave Set: ms-drbd-testfs-ost0000 [drbd-testfs-ost0000] + Stopped: [ drbd-testfs-ost0000:0 ] + Master/Slave Set: ms-drbd-testfs-ost0000-left [drbd-testfs-ost0000-left] + Stopped: [ drbd-testfs-ost0000-left:0 drbd-testfs-ost0000-left:1 ] + Master/Slave Set: ms-drbd-testfs-ost0001 [drbd-testfs-ost0001] + Stopped: [ drbd-testfs-ost0001:0 ] + Master/Slave Set: ms-drbd-testfs-ost0001-left [drbd-testfs-ost0001-left] + Stopped: [ drbd-testfs-ost0001-left:0 drbd-testfs-ost0001-left:1 ] + Master/Slave Set: ms-drbd-testfs-ost0002 [drbd-testfs-ost0002] + Stopped: [ drbd-testfs-ost0002:0 ] + Master/Slave Set: ms-drbd-testfs-ost0002-left [drbd-testfs-ost0002-left] + Stopped: [ drbd-testfs-ost0002-left:0 drbd-testfs-ost0002-left:1 ] + Master/Slave Set: ms-drbd-testfs-ost0003 [drbd-testfs-ost0003] + Stopped: [ drbd-testfs-ost0003:0 ] + Master/Slave Set: ms-drbd-testfs-ost0003-left [drbd-testfs-ost0003-left] + Stopped: [ drbd-testfs-ost0003-left:0 drbd-testfs-ost0003-left:1 ] + diff --git a/pengine/test10/migrate-shutdown.summary b/pengine/test10/migrate-shutdown.summary new file mode 100644 index 0000000000..88a2de6930 --- /dev/null +++ b/pengine/test10/migrate-shutdown.summary @@ -0,0 +1,91 @@ + +Current cluster status: +Online: [ pcmk-1 pcmk-2 pcmk-3 pcmk-4 ] + + Fencing (stonith:fence_xvm): Started pcmk-1 + Resource Group: group-1 + r192.168.122.105 (ocf::heartbeat:IPaddr): Started pcmk-2 + r192.168.122.106 (ocf::heartbeat:IPaddr): Started pcmk-2 + r192.168.122.107 (ocf::heartbeat:IPaddr): Started pcmk-2 + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Stopped + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-4 + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Started pcmk-2 + migrator (ocf::pacemaker:Dummy): Started pcmk-1 + Clone Set: Connectivity [ping-1] + Started: [ pcmk-1 pcmk-2 pcmk-4 ] + Stopped: [ ping-1:2 ] + Master/Slave Set: master-1 [stateful-1] + Masters: [ pcmk-2 ] + Slaves: [ pcmk-1 pcmk-4 ] + Stopped: [ stateful-1:1 ] + +Transition Summary: + * Stop Fencing (pcmk-1) + * Stop r192.168.122.105 (pcmk-2) + * Stop r192.168.122.106 (pcmk-2) + * Stop r192.168.122.107 (pcmk-2) + * Stop rsc_pcmk-1 (pcmk-1) + * Stop rsc_pcmk-2 (pcmk-2) + * Stop rsc_pcmk-4 (pcmk-4) + * Stop lsb-dummy (pcmk-2) + * Stop migrator (pcmk-1) + * Stop ping-1:0 (pcmk-1) + * Stop ping-1:1 (pcmk-2) + * Stop ping-1:3 (pcmk-4) + * Demote stateful-1:0 (Master -> Stopped pcmk-2) + * Stop stateful-1:2 (pcmk-1) + * Stop stateful-1:3 (pcmk-4) + +Executing cluster transition: + * Resource action: rsc_pcmk-1 stop on pcmk-1 + * Resource action: rsc_pcmk-2 stop on pcmk-2 + * Resource action: rsc_pcmk-4 stop on pcmk-4 + * Resource action: lsb-dummy stop on pcmk-2 + * Resource action: migrator stop on pcmk-1 + * Resource action: migrator stop on pcmk-3 + * Pseudo action: Connectivity_stop_0 + * Cluster action: do_shutdown on pcmk-3 + * Pseudo action: group-1_stop_0 + * Resource action: r192.168.122.107 stop on pcmk-2 + * Resource action: ping-1:0 stop on pcmk-1 + * Resource action: ping-1:1 stop on pcmk-2 + * Resource action: ping-1:3 stop on pcmk-4 + * Pseudo action: Connectivity_stopped_0 + * Resource action: r192.168.122.106 stop on pcmk-2 + * Resource action: r192.168.122.105 stop on pcmk-2 + * Pseudo action: group-1_stopped_0 + * Pseudo action: master-1_demote_0 + * Resource action: stateful-1:0 demote on pcmk-2 + * Pseudo action: master-1_demoted_0 + * Pseudo action: master-1_stop_0 + * Resource action: stateful-1:0 stop on pcmk-2 + * Resource action: stateful-1:2 stop on pcmk-1 + * Resource action: stateful-1:3 stop on pcmk-4 + * Pseudo action: master-1_stopped_0 + * Cluster action: do_shutdown on pcmk-4 + * Cluster action: do_shutdown on pcmk-2 + * Pseudo action: all_stopped + * Resource action: Fencing stop on pcmk-1 + * Cluster action: do_shutdown on pcmk-1 + +Revised cluster status: +Online: [ pcmk-1 pcmk-2 pcmk-3 pcmk-4 ] + + Fencing (stonith:fence_xvm): Stopped + Resource Group: group-1 + r192.168.122.105 (ocf::heartbeat:IPaddr): Stopped + r192.168.122.106 (ocf::heartbeat:IPaddr): Stopped + r192.168.122.107 (ocf::heartbeat:IPaddr): Stopped + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Stopped + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Stopped + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Stopped + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Stopped + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Stopped + migrator (ocf::pacemaker:Dummy): Stopped + Clone Set: Connectivity [ping-1] + Stopped: [ ping-1:0 ping-1:1 ping-1:2 ping-1:3 ] + Master/Slave Set: master-1 [stateful-1] + Stopped: [ stateful-1:0 stateful-1:1 stateful-1:2 stateful-1:3 ] + diff --git a/pengine/test10/migrate-start-complex.summary b/pengine/test10/migrate-start-complex.summary new file mode 100644 index 0000000000..866bd2fc1c --- /dev/null +++ b/pengine/test10/migrate-start-complex.summary @@ -0,0 +1,50 @@ + +Current cluster status: +Online: [ dom0-02 dom0-01 ] + + top (ocf::heartbeat:Dummy): Started dom0-02 + domU-test01 (ocf::heartbeat:Xen): Started dom0-02 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-02 ] + Stopped: [ dom0-iscsi1:1 ] + Clone Set: clone-bottom [bottom] + Stopped: [ bottom:0 bottom:1 ] + +Transition Summary: + * Move top (Started dom0-02 -> dom0-01) + * Migrate domU-test01 (Started dom0-02 -> dom0-01) + * Start dom0-iscsi1-cnx1:1 (dom0-01) + * Start bottom:0 (dom0-01) + * Start bottom:1 (dom0-02) + +Executing cluster transition: + * Pseudo action: clone-dom0-iscsi1_start_0 + * Resource action: bottom:0 monitor on dom0-01 + * Resource action: bottom:1 monitor on dom0-02 + * Pseudo action: clone-bottom_start_0 + * Pseudo action: probe_complete + * Resource action: top stop on dom0-02 + * Pseudo action: dom0-iscsi1:1_start_0 + * Resource action: dom0-iscsi1-cnx1:1 start on dom0-01 + * Resource action: bottom:0 start on dom0-01 + * Resource action: bottom:1 start on dom0-02 + * Pseudo action: clone-bottom_running_0 + * Pseudo action: dom0-iscsi1:1_running_0 + * Pseudo action: clone-dom0-iscsi1_running_0 + * Resource action: domU-test01 migrate_to on dom0-02 + * Resource action: domU-test01 migrate_from on dom0-01 + * Resource action: domU-test01 stop on dom0-02 + * Pseudo action: all_stopped + * Pseudo action: domU-test01_start_0 + * Resource action: top start on dom0-01 + +Revised cluster status: +Online: [ dom0-02 dom0-01 ] + + top (ocf::heartbeat:Dummy): Started dom0-01 + domU-test01 (ocf::heartbeat:Xen): Started dom0-01 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-02 dom0-01 ] + Clone Set: clone-bottom [bottom] + Started: [ dom0-01 dom0-02 ] + diff --git a/pengine/test10/migrate-start.summary b/pengine/test10/migrate-start.summary new file mode 100644 index 0000000000..e9c8356aee --- /dev/null +++ b/pengine/test10/migrate-start.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ dom0-02 dom0-01 ] + + domU-test01 (ocf::heartbeat:Xen): Started dom0-02 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-02 ] + Stopped: [ dom0-iscsi1:1 ] + +Transition Summary: + * Migrate domU-test01 (Started dom0-02 -> dom0-01) + * Start dom0-iscsi1-cnx1:1 (dom0-01) + +Executing cluster transition: + * Pseudo action: clone-dom0-iscsi1_start_0 + * Pseudo action: dom0-iscsi1:1_start_0 + * Resource action: dom0-iscsi1-cnx1:1 start on dom0-01 + * Pseudo action: dom0-iscsi1:1_running_0 + * Pseudo action: clone-dom0-iscsi1_running_0 + * Resource action: domU-test01 migrate_to on dom0-02 + * Resource action: domU-test01 migrate_from on dom0-01 + * Resource action: domU-test01 stop on dom0-02 + * Pseudo action: all_stopped + * Pseudo action: domU-test01_start_0 + +Revised cluster status: +Online: [ dom0-02 dom0-01 ] + + domU-test01 (ocf::heartbeat:Xen): Started dom0-01 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-02 dom0-01 ] + diff --git a/pengine/test10/migrate-stop-complex.summary b/pengine/test10/migrate-stop-complex.summary new file mode 100644 index 0000000000..d9c376c02c --- /dev/null +++ b/pengine/test10/migrate-stop-complex.summary @@ -0,0 +1,48 @@ + +Current cluster status: +Node dom0-02: standby +Online: [ dom0-01 ] + + top (ocf::heartbeat:Dummy): Started dom0-02 + domU-test01 (ocf::heartbeat:Xen): Started dom0-02 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-02 dom0-01 ] + Clone Set: clone-bottom [bottom] + Started: [ dom0-01 dom0-02 ] + +Transition Summary: + * Move top (Started dom0-02 -> dom0-01) + * Migrate domU-test01 (Started dom0-02 -> dom0-01) + * Stop dom0-iscsi1-cnx1:0 (dom0-02) + * Stop bottom:1 (dom0-02) + +Executing cluster transition: + * Resource action: top stop on dom0-02 + * Resource action: domU-test01 migrate_to on dom0-02 + * Resource action: domU-test01 migrate_from on dom0-01 + * Resource action: domU-test01 stop on dom0-02 + * Pseudo action: clone-dom0-iscsi1_stop_0 + * Pseudo action: clone-bottom_stop_0 + * Pseudo action: domU-test01_start_0 + * Pseudo action: dom0-iscsi1:0_stop_0 + * Resource action: dom0-iscsi1-cnx1:0 stop on dom0-02 + * Resource action: bottom:0 stop on dom0-02 + * Pseudo action: clone-bottom_stopped_0 + * Pseudo action: all_stopped + * Resource action: top start on dom0-01 + * Pseudo action: dom0-iscsi1:0_stopped_0 + * Pseudo action: clone-dom0-iscsi1_stopped_0 + +Revised cluster status: +Node dom0-02: standby +Online: [ dom0-01 ] + + top (ocf::heartbeat:Dummy): Started dom0-01 + domU-test01 (ocf::heartbeat:Xen): Started dom0-01 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-01 ] + Stopped: [ dom0-iscsi1:0 ] + Clone Set: clone-bottom [bottom] + Started: [ dom0-01 ] + Stopped: [ bottom:1 ] + diff --git a/pengine/test10/migrate-stop-start-complex.summary b/pengine/test10/migrate-stop-start-complex.summary new file mode 100644 index 0000000000..9f17b19f02 --- /dev/null +++ b/pengine/test10/migrate-stop-start-complex.summary @@ -0,0 +1,52 @@ + +Current cluster status: +Node dom0-02: standby +Online: [ dom0-01 ] + + top (ocf::heartbeat:Dummy): Started dom0-01 + domU-test01 (ocf::heartbeat:Xen): Started dom0-02 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-02 dom0-01 ] + Clone Set: clone-bottom [bottom] + Started: [ dom0-02 ] + Stopped: [ bottom:1 ] + +Transition Summary: + * Restart top (Started dom0-01) + * Migrate domU-test01 (Started dom0-02 -> dom0-01) + * Stop dom0-iscsi1-cnx1:0 (dom0-02) + * Move bottom:0 (Started dom0-02 -> dom0-01) + +Executing cluster transition: + * Resource action: top stop on dom0-01 + * Resource action: domU-test01 migrate_to on dom0-02 + * Resource action: domU-test01 migrate_from on dom0-01 + * Resource action: domU-test01 stop on dom0-02 + * Pseudo action: clone-dom0-iscsi1_stop_0 + * Pseudo action: domU-test01_start_0 + * Pseudo action: dom0-iscsi1:0_stop_0 + * Resource action: dom0-iscsi1-cnx1:0 stop on dom0-02 + * Resource action: top start on dom0-01 + * Pseudo action: dom0-iscsi1:0_stopped_0 + * Pseudo action: clone-dom0-iscsi1_stopped_0 + * Pseudo action: clone-bottom_stop_0 + * Resource action: bottom:0 stop on dom0-02 + * Pseudo action: clone-bottom_stopped_0 + * Pseudo action: clone-bottom_start_0 + * Pseudo action: all_stopped + * Resource action: bottom:0 start on dom0-01 + * Pseudo action: clone-bottom_running_0 + +Revised cluster status: +Node dom0-02: standby +Online: [ dom0-01 ] + + top (ocf::heartbeat:Dummy): Started dom0-01 + domU-test01 (ocf::heartbeat:Xen): Started dom0-01 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-01 ] + Stopped: [ dom0-iscsi1:0 ] + Clone Set: clone-bottom [bottom] + Started: [ dom0-01 ] + Stopped: [ bottom:1 ] + diff --git a/pengine/test10/migrate-stop.summary b/pengine/test10/migrate-stop.summary new file mode 100644 index 0000000000..6e9f146199 --- /dev/null +++ b/pengine/test10/migrate-stop.summary @@ -0,0 +1,34 @@ + +Current cluster status: +Node dom0-02: standby +Online: [ dom0-01 ] + + domU-test01 (ocf::heartbeat:Xen): Started dom0-02 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-02 dom0-01 ] + +Transition Summary: + * Migrate domU-test01 (Started dom0-02 -> dom0-01) + * Stop dom0-iscsi1-cnx1:0 (dom0-02) + +Executing cluster transition: + * Resource action: domU-test01 migrate_to on dom0-02 + * Resource action: domU-test01 migrate_from on dom0-01 + * Resource action: domU-test01 stop on dom0-02 + * Pseudo action: clone-dom0-iscsi1_stop_0 + * Pseudo action: domU-test01_start_0 + * Pseudo action: dom0-iscsi1:0_stop_0 + * Resource action: dom0-iscsi1-cnx1:0 stop on dom0-02 + * Pseudo action: all_stopped + * Pseudo action: dom0-iscsi1:0_stopped_0 + * Pseudo action: clone-dom0-iscsi1_stopped_0 + +Revised cluster status: +Node dom0-02: standby +Online: [ dom0-01 ] + + domU-test01 (ocf::heartbeat:Xen): Started dom0-01 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-01 ] + Stopped: [ dom0-iscsi1:0 ] + diff --git a/pengine/test10/migrate-stop_start.summary b/pengine/test10/migrate-stop_start.summary new file mode 100644 index 0000000000..cf843fdcbc --- /dev/null +++ b/pengine/test10/migrate-stop_start.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Node dom0-02: standby +Online: [ dom0-01 ] + + domU-test01 (ocf::heartbeat:Xen): Started dom0-02 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-02 ] + Stopped: [ dom0-iscsi1:1 ] + +Transition Summary: + * Move domU-test01 (Started dom0-02 -> dom0-01) + * Move dom0-iscsi1-cnx1:0 (Started dom0-02 -> dom0-01) + +Executing cluster transition: + * Resource action: domU-test01 stop on dom0-02 + * Pseudo action: clone-dom0-iscsi1_stop_0 + * Pseudo action: dom0-iscsi1:0_stop_0 + * Resource action: dom0-iscsi1-cnx1:0 stop on dom0-02 + * Pseudo action: all_stopped + * Pseudo action: dom0-iscsi1:0_stopped_0 + * Pseudo action: clone-dom0-iscsi1_stopped_0 + * Pseudo action: clone-dom0-iscsi1_start_0 + * Pseudo action: dom0-iscsi1:0_start_0 + * Resource action: dom0-iscsi1-cnx1:0 start on dom0-01 + * Pseudo action: dom0-iscsi1:0_running_0 + * Pseudo action: clone-dom0-iscsi1_running_0 + * Resource action: domU-test01 start on dom0-01 + +Revised cluster status: +Node dom0-02: standby +Online: [ dom0-01 ] + + domU-test01 (ocf::heartbeat:Xen): Started dom0-01 + Clone Set: clone-dom0-iscsi1 [dom0-iscsi1] + Started: [ dom0-01 ] + Stopped: [ dom0-iscsi1:1 ] + diff --git a/pengine/test10/migrate-success.summary b/pengine/test10/migrate-success.summary new file mode 100644 index 0000000000..6b20424b47 --- /dev/null +++ b/pengine/test10/migrate-success.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + +Transition Summary: + +Executing cluster transition: + * Pseudo action: load_stopped_hex-14 + * Pseudo action: load_stopped_hex-13 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + test-vm (ocf::heartbeat:Xen): Started hex-13 + Clone Set: c-clusterfs [dlm] + Started: [ hex-13 hex-14 ] + diff --git a/pengine/test10/minimal.summary b/pengine/test10/minimal.summary new file mode 100644 index 0000000000..16908d064f --- /dev/null +++ b/pengine/test10/minimal.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ host1 host2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (host1) + * Start rsc2 (host1) + +Executing cluster transition: + * Resource action: rsc1 monitor on host2 + * Resource action: rsc1 monitor on host1 + * Resource action: rsc2 monitor on host2 + * Resource action: rsc2 monitor on host1 + * Pseudo action: probe_complete + * Pseudo action: load_stopped_host2 + * Pseudo action: load_stopped_host1 + * Resource action: rsc1 start on host1 + * Resource action: rsc2 start on host1 + +Revised cluster status: +Online: [ host1 host2 ] + + rsc1 (ocf::pacemaker:Dummy): Started host1 + rsc2 (ocf::pacemaker:Dummy): Started host1 + diff --git a/pengine/test10/mon-rsc-1.summary b/pengine/test10/mon-rsc-1.summary new file mode 100644 index 0000000000..0d22d900df --- /dev/null +++ b/pengine/test10/mon-rsc-1.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Resource action: rsc1 monitor=5000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/mon-rsc-2.summary b/pengine/test10/mon-rsc-2.summary new file mode 100644 index 0000000000..4e5cec9233 --- /dev/null +++ b/pengine/test10/mon-rsc-2.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Node node2 (uuid2): standby +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node2 + +Transition Summary: + * Move rsc1 (Started node2 -> node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node1 + * Resource action: rsc1 monitor=5000 on node1 + +Revised cluster status: +Node node2 (uuid2): standby +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/mon-rsc-3.summary b/pengine/test10/mon-rsc-3.summary new file mode 100644 index 0000000000..5e1c5f371b --- /dev/null +++ b/pengine/test10/mon-rsc-3.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Resource action: rsc1 monitor=5000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/mon-rsc-4.summary b/pengine/test10/mon-rsc-4.summary new file mode 100644 index 0000000000..f671b190f7 --- /dev/null +++ b/pengine/test10/mon-rsc-4.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Node node2 (uuid2): standby +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node2 + +Transition Summary: + * Move rsc1 (Started node2 -> node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 stop on node2 + * Resource action: rsc1 start on node1 + * Pseudo action: all_stopped + * Resource action: rsc1 monitor=5000 on node1 + +Revised cluster status: +Node node2 (uuid2): standby +Online: [ node1 ] + + rsc1 (heartbeat:apache) Started [ node1 node2 ] + diff --git a/pengine/test10/monitor-onfail-restart.summary b/pengine/test10/monitor-onfail-restart.summary new file mode 100644 index 0000000000..d77963ad27 --- /dev/null +++ b/pengine/test10/monitor-onfail-restart.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder FAILED + +Transition Summary: + * Recover A (Started fc16-builder) + +Executing cluster transition: + * Resource action: A stop on fc16-builder + * Pseudo action: all_stopped + * Resource action: A start on fc16-builder + * Resource action: A monitor=20000 on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/monitor-onfail-stop.summary b/pengine/test10/monitor-onfail-stop.summary new file mode 100644 index 0000000000..8027fc5f0c --- /dev/null +++ b/pengine/test10/monitor-onfail-stop.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder FAILED + +Transition Summary: + * Stop A (fc16-builder) + +Executing cluster transition: + * Resource action: A stop on fc16-builder + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/multi1.summary b/pengine/test10/multi1.summary new file mode 100644 index 0000000000..f5d5a10ebe --- /dev/null +++ b/pengine/test10/multi1.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache) Started [ node1 node2 ] + +Transition Summary: + * Restart rsc1 (Started node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Resource action: rsc1 stop on node1 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/notify-0.summary b/pengine/test10/notify-0.summary new file mode 100644 index 0000000000..25f7283ad9 --- /dev/null +++ b/pengine/test10/notify-0.summary @@ -0,0 +1,39 @@ + +Current cluster status: +Online: [ node1 ] +OFFLINE: [ node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Stopped + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node1 + child_rsc2:1 (heartbeat:apache): Stopped + +Transition Summary: + * Start child_rsc1:1 (node1) + * Stop child_rsc2:0 (node1) + +Executing cluster transition: + * Resource action: child_rsc1:1 monitor on node1 + * Pseudo action: rsc1_start_0 + * Resource action: child_rsc2:1 monitor on node1 + * Pseudo action: rsc2_stop_0 + * Pseudo action: probe_complete + * Resource action: child_rsc1:1 start on node1 + * Pseudo action: rsc1_running_0 + * Resource action: child_rsc2:0 stop on node1 + * Pseudo action: rsc2_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 ] +OFFLINE: [ node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node1 + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Stopped + child_rsc2:1 (heartbeat:apache): Stopped + diff --git a/pengine/test10/notify-1.summary b/pengine/test10/notify-1.summary new file mode 100644 index 0000000000..56480904af --- /dev/null +++ b/pengine/test10/notify-1.summary @@ -0,0 +1,51 @@ + +Current cluster status: +Online: [ node1 ] +OFFLINE: [ node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Stopped + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node1 + child_rsc2:1 (heartbeat:apache): Stopped + +Transition Summary: + * Start child_rsc1:1 (node1) + * Stop child_rsc2:0 (node1) + +Executing cluster transition: + * Resource action: child_rsc1:1 monitor on node1 + * Pseudo action: rsc1_pre_notify_start_0 + * Resource action: child_rsc2:1 monitor on node1 + * Pseudo action: rsc2_pre_notify_stop_0 + * Pseudo action: probe_complete + * Resource action: child_rsc1:0 notify on node1 + * Pseudo action: rsc1_confirmed-pre_notify_start_0 + * Pseudo action: rsc1_start_0 + * Resource action: child_rsc2:0 notify on node1 + * Pseudo action: rsc2_confirmed-pre_notify_stop_0 + * Pseudo action: rsc2_stop_0 + * Resource action: child_rsc1:1 start on node1 + * Pseudo action: rsc1_running_0 + * Resource action: child_rsc2:0 stop on node1 + * Pseudo action: rsc2_stopped_0 + * Pseudo action: rsc1_post_notify_running_0 + * Pseudo action: rsc2_post_notify_stopped_0 + * Resource action: child_rsc1:0 notify on node1 + * Resource action: child_rsc1:1 notify on node1 + * Pseudo action: rsc1_confirmed-post_notify_running_0 + * Pseudo action: rsc2_confirmed-post_notify_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 ] +OFFLINE: [ node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node1 + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Stopped + child_rsc2:1 (heartbeat:apache): Stopped + diff --git a/pengine/test10/notify-2.summary b/pengine/test10/notify-2.summary new file mode 100644 index 0000000000..56480904af --- /dev/null +++ b/pengine/test10/notify-2.summary @@ -0,0 +1,51 @@ + +Current cluster status: +Online: [ node1 ] +OFFLINE: [ node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Stopped + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node1 + child_rsc2:1 (heartbeat:apache): Stopped + +Transition Summary: + * Start child_rsc1:1 (node1) + * Stop child_rsc2:0 (node1) + +Executing cluster transition: + * Resource action: child_rsc1:1 monitor on node1 + * Pseudo action: rsc1_pre_notify_start_0 + * Resource action: child_rsc2:1 monitor on node1 + * Pseudo action: rsc2_pre_notify_stop_0 + * Pseudo action: probe_complete + * Resource action: child_rsc1:0 notify on node1 + * Pseudo action: rsc1_confirmed-pre_notify_start_0 + * Pseudo action: rsc1_start_0 + * Resource action: child_rsc2:0 notify on node1 + * Pseudo action: rsc2_confirmed-pre_notify_stop_0 + * Pseudo action: rsc2_stop_0 + * Resource action: child_rsc1:1 start on node1 + * Pseudo action: rsc1_running_0 + * Resource action: child_rsc2:0 stop on node1 + * Pseudo action: rsc2_stopped_0 + * Pseudo action: rsc1_post_notify_running_0 + * Pseudo action: rsc2_post_notify_stopped_0 + * Resource action: child_rsc1:0 notify on node1 + * Resource action: child_rsc1:1 notify on node1 + * Pseudo action: rsc1_confirmed-post_notify_running_0 + * Pseudo action: rsc2_confirmed-post_notify_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 ] +OFFLINE: [ node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node1 + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Stopped + child_rsc2:1 (heartbeat:apache): Stopped + diff --git a/pengine/test10/notify-3.summary b/pengine/test10/notify-3.summary new file mode 100644 index 0000000000..d5ea33aa94 --- /dev/null +++ b/pengine/test10/notify-3.summary @@ -0,0 +1,62 @@ + +Current cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node2 + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Started node1 + child_rsc2:1 (heartbeat:apache): Stopped + +Transition Summary: + * Move child_rsc1:1 (Started node2 -> node1) + * Stop child_rsc2:0 (node1) + +Executing cluster transition: + * Resource action: child_rsc1:0 monitor on node2 + * Resource action: child_rsc1:1 monitor on node1 + * Pseudo action: rsc1_pre_notify_stop_0 + * Resource action: child_rsc2:0 monitor on node2 + * Resource action: child_rsc2:1 monitor on node2 + * Resource action: child_rsc2:1 monitor on node1 + * Pseudo action: rsc2_pre_notify_stop_0 + * Pseudo action: probe_complete + * Resource action: child_rsc1:0 notify on node1 + * Resource action: child_rsc1:1 notify on node2 + * Pseudo action: rsc1_confirmed-pre_notify_stop_0 + * Pseudo action: rsc1_stop_0 + * Resource action: child_rsc2:0 notify on node1 + * Pseudo action: rsc2_confirmed-pre_notify_stop_0 + * Pseudo action: rsc2_stop_0 + * Resource action: child_rsc1:1 stop on node2 + * Pseudo action: rsc1_stopped_0 + * Resource action: child_rsc2:0 stop on node1 + * Pseudo action: rsc2_stopped_0 + * Pseudo action: rsc1_post_notify_stopped_0 + * Pseudo action: rsc2_post_notify_stopped_0 + * Resource action: child_rsc1:0 notify on node1 + * Pseudo action: rsc1_confirmed-post_notify_stopped_0 + * Pseudo action: rsc1_pre_notify_start_0 + * Pseudo action: rsc2_confirmed-post_notify_stopped_0 + * Pseudo action: all_stopped + * Resource action: child_rsc1:0 notify on node1 + * Pseudo action: rsc1_confirmed-pre_notify_start_0 + * Pseudo action: rsc1_start_0 + * Resource action: child_rsc1:1 start on node1 + * Pseudo action: rsc1_running_0 + * Pseudo action: rsc1_post_notify_running_0 + * Resource action: child_rsc1:0 notify on node1 + * Resource action: child_rsc1:1 notify on node1 + * Pseudo action: rsc1_confirmed-post_notify_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + Clone Set: rsc1 [child_rsc1] (unique) + child_rsc1:0 (heartbeat:apache): Started node1 + child_rsc1:1 (heartbeat:apache): Started node1 + Clone Set: rsc2 [child_rsc2] (unique) + child_rsc2:0 (heartbeat:apache): Stopped + child_rsc2:1 (heartbeat:apache): Stopped + diff --git a/pengine/test10/novell-239079.summary b/pengine/test10/novell-239079.summary new file mode 100644 index 0000000000..d85bc70c15 --- /dev/null +++ b/pengine/test10/novell-239079.summary @@ -0,0 +1,31 @@ + +Current cluster status: +Online: [ xen-2 xen-1 ] + + fs_1 (ocf::heartbeat:Filesystem): Stopped + Master/Slave Set: ms-drbd0 [drbd0] + Stopped: [ drbd0:0 drbd0:1 ] + +Transition Summary: + * Start drbd0:0 (xen-1) + * Start drbd0:1 (xen-2) + +Executing cluster transition: + * Pseudo action: ms-drbd0_pre_notify_start_0 + * Pseudo action: ms-drbd0_confirmed-pre_notify_start_0 + * Pseudo action: ms-drbd0_start_0 + * Resource action: drbd0:0 start on xen-1 + * Resource action: drbd0:1 start on xen-2 + * Pseudo action: ms-drbd0_running_0 + * Pseudo action: ms-drbd0_post_notify_running_0 + * Resource action: drbd0:0 notify on xen-1 + * Resource action: drbd0:1 notify on xen-2 + * Pseudo action: ms-drbd0_confirmed-post_notify_running_0 + +Revised cluster status: +Online: [ xen-2 xen-1 ] + + fs_1 (ocf::heartbeat:Filesystem): Stopped + Master/Slave Set: ms-drbd0 [drbd0] + Slaves: [ xen-1 xen-2 ] + diff --git a/pengine/test10/novell-239082.summary b/pengine/test10/novell-239082.summary new file mode 100644 index 0000000000..a4bcf00b1f --- /dev/null +++ b/pengine/test10/novell-239082.summary @@ -0,0 +1,58 @@ + +Current cluster status: +Online: [ xen-2 xen-1 ] + + fs_1 (ocf::heartbeat:Filesystem): Started xen-1 + Master/Slave Set: ms-drbd0 [drbd0] + Masters: [ xen-1 ] + Slaves: [ xen-2 ] + +Transition Summary: + * Move fs_1 (Started xen-1 -> xen-2) + * Promote drbd0:0 (Slave -> Master xen-2) + * Demote drbd0:1 (Master -> Stopped xen-1) + +Executing cluster transition: + * Resource action: fs_1 stop on xen-1 + * Pseudo action: ms-drbd0_pre_notify_demote_0 + * Resource action: drbd0:0 notify on xen-2 + * Resource action: drbd0:1 notify on xen-1 + * Pseudo action: ms-drbd0_confirmed-pre_notify_demote_0 + * Pseudo action: ms-drbd0_demote_0 + * Resource action: drbd0:1 demote on xen-1 + * Pseudo action: ms-drbd0_demoted_0 + * Pseudo action: ms-drbd0_post_notify_demoted_0 + * Resource action: drbd0:0 notify on xen-2 + * Resource action: drbd0:1 notify on xen-1 + * Pseudo action: ms-drbd0_confirmed-post_notify_demoted_0 + * Pseudo action: ms-drbd0_pre_notify_stop_0 + * Resource action: drbd0:0 notify on xen-2 + * Resource action: drbd0:1 notify on xen-1 + * Pseudo action: ms-drbd0_confirmed-pre_notify_stop_0 + * Pseudo action: ms-drbd0_stop_0 + * Resource action: drbd0:1 stop on xen-1 + * Pseudo action: ms-drbd0_stopped_0 + * Cluster action: do_shutdown on xen-1 + * Pseudo action: ms-drbd0_post_notify_stopped_0 + * Resource action: drbd0:0 notify on xen-2 + * Pseudo action: ms-drbd0_confirmed-post_notify_stopped_0 + * Pseudo action: all_stopped + * Pseudo action: ms-drbd0_pre_notify_promote_0 + * Resource action: drbd0:0 notify on xen-2 + * Pseudo action: ms-drbd0_confirmed-pre_notify_promote_0 + * Pseudo action: ms-drbd0_promote_0 + * Resource action: drbd0:0 promote on xen-2 + * Pseudo action: ms-drbd0_promoted_0 + * Pseudo action: ms-drbd0_post_notify_promoted_0 + * Resource action: drbd0:0 notify on xen-2 + * Pseudo action: ms-drbd0_confirmed-post_notify_promoted_0 + * Resource action: fs_1 start on xen-2 + +Revised cluster status: +Online: [ xen-2 xen-1 ] + + fs_1 (ocf::heartbeat:Filesystem): Started xen-2 + Master/Slave Set: ms-drbd0 [drbd0] + Masters: [ xen-2 ] + Stopped: [ drbd0:1 ] + diff --git a/pengine/test10/novell-239087.summary b/pengine/test10/novell-239087.summary new file mode 100644 index 0000000000..21bdd099e2 --- /dev/null +++ b/pengine/test10/novell-239087.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ xen-2 xen-1 ] + + fs_1 (ocf::heartbeat:Filesystem): Started xen-1 + Master/Slave Set: ms-drbd0 [drbd0] + Masters: [ xen-1 ] + Slaves: [ xen-2 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ xen-2 xen-1 ] + + fs_1 (ocf::heartbeat:Filesystem): Started xen-1 + Master/Slave Set: ms-drbd0 [drbd0] + Masters: [ xen-1 ] + Slaves: [ xen-2 ] + diff --git a/pengine/test10/novell-251689.summary b/pengine/test10/novell-251689.summary new file mode 100644 index 0000000000..62ea54778c --- /dev/null +++ b/pengine/test10/novell-251689.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Online: [ node2 node1 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node2 node1 ] + Clone Set: evmsdcloneset [evmsdclone] + Started: [ node2 node1 ] + Clone Set: evmscloneset [evmsclone] + Started: [ node2 node1 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ node2 node1 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node2 node1 ] + sles10 (ocf::heartbeat:Xen): Started node2 + +Transition Summary: + * Stop sles10 (node2) + +Executing cluster transition: + * Resource action: sles10 stop on node2 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node2 node1 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node2 node1 ] + Clone Set: evmsdcloneset [evmsdclone] + Started: [ node2 node1 ] + Clone Set: evmscloneset [evmsclone] + Started: [ node2 node1 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ node2 node1 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node2 node1 ] + sles10 (ocf::heartbeat:Xen): Stopped + diff --git a/pengine/test10/novell-252693-2.summary b/pengine/test10/novell-252693-2.summary new file mode 100644 index 0000000000..f5c3005c6f --- /dev/null +++ b/pengine/test10/novell-252693-2.summary @@ -0,0 +1,99 @@ + +Current cluster status: +Online: [ node2 node1 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node2 ] + Stopped: [ stonithclone:1 ] + Clone Set: evmsdcloneset [evmsdclone] + Started: [ node2 ] + Stopped: [ evmsdclone:1 ] + Clone Set: evmscloneset [evmsclone] + Started: [ node2 ] + Stopped: [ evmsclone:1 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ node2 ] + Stopped: [ imagestoreclone:1 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node2 ] + Stopped: [ configstoreclone:1 ] + sles10 (ocf::heartbeat:Xen): Started node2 + +Transition Summary: + * Start stonithclone:1 (node1) + * Start evmsdclone:1 (node1) + * Start evmsclone:1 (node1) + * Start imagestoreclone:1 (node1) + * Start configstoreclone:1 (node1) + * Migrate sles10 (Started node2 -> node1) + +Executing cluster transition: + * Resource action: stonithclone:1 monitor on node1 + * Pseudo action: stonithcloneset_start_0 + * Resource action: evmsdclone:1 monitor on node1 + * Pseudo action: evmsdcloneset_start_0 + * Resource action: evmsclone:1 monitor on node1 + * Pseudo action: evmscloneset_pre_notify_start_0 + * Resource action: imagestoreclone:1 monitor on node1 + * Pseudo action: imagestorecloneset_pre_notify_start_0 + * Resource action: configstoreclone:1 monitor on node1 + * Pseudo action: configstorecloneset_pre_notify_start_0 + * Resource action: sles10 monitor on node1 + * Pseudo action: probe_complete + * Resource action: stonithclone:1 start on node1 + * Pseudo action: stonithcloneset_running_0 + * Resource action: evmsdclone:1 start on node1 + * Pseudo action: evmsdcloneset_running_0 + * Resource action: evmsclone:0 notify on node2 + * Pseudo action: evmscloneset_confirmed-pre_notify_start_0 + * Pseudo action: evmscloneset_start_0 + * Resource action: imagestoreclone:0 notify on node2 + * Pseudo action: imagestorecloneset_confirmed-pre_notify_start_0 + * Resource action: configstoreclone:0 notify on node2 + * Pseudo action: configstorecloneset_confirmed-pre_notify_start_0 + * Resource action: stonithclone:1 monitor=5000 on node1 + * Resource action: evmsdclone:1 monitor=5000 on node1 + * Resource action: evmsclone:1 start on node1 + * Pseudo action: evmscloneset_running_0 + * Pseudo action: evmscloneset_post_notify_running_0 + * Resource action: evmsclone:0 notify on node2 + * Resource action: evmsclone:1 notify on node1 + * Pseudo action: evmscloneset_confirmed-post_notify_running_0 + * Pseudo action: imagestorecloneset_start_0 + * Pseudo action: configstorecloneset_start_0 + * Resource action: imagestoreclone:1 start on node1 + * Pseudo action: imagestorecloneset_running_0 + * Resource action: configstoreclone:1 start on node1 + * Pseudo action: configstorecloneset_running_0 + * Pseudo action: imagestorecloneset_post_notify_running_0 + * Pseudo action: configstorecloneset_post_notify_running_0 + * Resource action: imagestoreclone:0 notify on node2 + * Resource action: imagestoreclone:1 notify on node1 + * Pseudo action: imagestorecloneset_confirmed-post_notify_running_0 + * Resource action: configstoreclone:0 notify on node2 + * Resource action: configstoreclone:1 notify on node1 + * Pseudo action: configstorecloneset_confirmed-post_notify_running_0 + * Resource action: sles10 migrate_to on node2 + * Resource action: imagestoreclone:1 monitor=20000 on node1 + * Resource action: configstoreclone:1 monitor=20000 on node1 + * Resource action: sles10 migrate_from on node1 + * Resource action: sles10 stop on node2 + * Pseudo action: all_stopped + * Pseudo action: sles10_start_0 + * Resource action: sles10 monitor=10000 on node1 + +Revised cluster status: +Online: [ node2 node1 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node2 node1 ] + Clone Set: evmsdcloneset [evmsdclone] + Started: [ node2 node1 ] + Clone Set: evmscloneset [evmsclone] + Started: [ node2 node1 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ node2 node1 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node2 node1 ] + sles10 (ocf::heartbeat:Xen): Started node1 + diff --git a/pengine/test10/novell-252693-3.summary b/pengine/test10/novell-252693-3.summary new file mode 100644 index 0000000000..6532000cca --- /dev/null +++ b/pengine/test10/novell-252693-3.summary @@ -0,0 +1,107 @@ + +Current cluster status: +Online: [ node2 node1 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node2 ] + Stopped: [ stonithclone:1 ] + Clone Set: evmsdcloneset [evmsdclone] + Started: [ node2 ] + Stopped: [ evmsdclone:1 ] + Clone Set: evmscloneset [evmsclone] + Started: [ node2 ] + Stopped: [ evmsclone:1 ] + Clone Set: imagestorecloneset [imagestoreclone] + imagestoreclone:0 (ocf::heartbeat:Filesystem): Started node2 FAILED + Stopped: [ imagestoreclone:1 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node2 ] + Stopped: [ configstoreclone:1 ] + sles10 (ocf::heartbeat:Xen): Started node2 + +Transition Summary: + * Start stonithclone:1 (node1) + * Start evmsdclone:1 (node1) + * Start evmsclone:1 (node1) + * Move imagestoreclone:0 (Started node2 -> node1) + * Start imagestoreclone:1 (node2) + * Start configstoreclone:1 (node1) + * Move sles10 (Started node2 -> node1) + +Executing cluster transition: + * Resource action: stonithclone:1 monitor on node1 + * Pseudo action: stonithcloneset_start_0 + * Resource action: evmsdclone:1 monitor on node1 + * Pseudo action: evmsdcloneset_start_0 + * Resource action: evmsclone:1 monitor on node1 + * Pseudo action: evmscloneset_pre_notify_start_0 + * Resource action: imagestoreclone:0 monitor on node1 + * Pseudo action: imagestorecloneset_pre_notify_stop_0 + * Resource action: configstoreclone:1 monitor on node1 + * Pseudo action: configstorecloneset_pre_notify_start_0 + * Resource action: sles10 monitor on node1 + * Pseudo action: probe_complete + * Resource action: stonithclone:1 start on node1 + * Pseudo action: stonithcloneset_running_0 + * Resource action: evmsdclone:1 start on node1 + * Pseudo action: evmsdcloneset_running_0 + * Resource action: evmsclone:0 notify on node2 + * Pseudo action: evmscloneset_confirmed-pre_notify_start_0 + * Pseudo action: evmscloneset_start_0 + * Resource action: imagestoreclone:0 notify on node2 + * Pseudo action: imagestorecloneset_confirmed-pre_notify_stop_0 + * Resource action: configstoreclone:0 notify on node2 + * Pseudo action: configstorecloneset_confirmed-pre_notify_start_0 + * Resource action: sles10 stop on node2 + * Resource action: stonithclone:1 monitor=5000 on node1 + * Resource action: evmsdclone:1 monitor=5000 on node1 + * Resource action: evmsclone:1 start on node1 + * Pseudo action: evmscloneset_running_0 + * Pseudo action: imagestorecloneset_stop_0 + * Pseudo action: evmscloneset_post_notify_running_0 + * Resource action: imagestoreclone:0 stop on node2 + * Pseudo action: imagestorecloneset_stopped_0 + * Resource action: evmsclone:0 notify on node2 + * Resource action: evmsclone:1 notify on node1 + * Pseudo action: evmscloneset_confirmed-post_notify_running_0 + * Pseudo action: imagestorecloneset_post_notify_stopped_0 + * Pseudo action: configstorecloneset_start_0 + * Pseudo action: imagestorecloneset_confirmed-post_notify_stopped_0 + * Pseudo action: imagestorecloneset_pre_notify_start_0 + * Resource action: configstoreclone:1 start on node1 + * Pseudo action: configstorecloneset_running_0 + * Pseudo action: all_stopped + * Pseudo action: imagestorecloneset_confirmed-pre_notify_start_0 + * Pseudo action: imagestorecloneset_start_0 + * Pseudo action: configstorecloneset_post_notify_running_0 + * Resource action: imagestoreclone:0 start on node1 + * Resource action: imagestoreclone:1 start on node2 + * Pseudo action: imagestorecloneset_running_0 + * Resource action: configstoreclone:0 notify on node2 + * Resource action: configstoreclone:1 notify on node1 + * Pseudo action: configstorecloneset_confirmed-post_notify_running_0 + * Pseudo action: imagestorecloneset_post_notify_running_0 + * Resource action: configstoreclone:1 monitor=20000 on node1 + * Resource action: imagestoreclone:0 notify on node1 + * Resource action: imagestoreclone:1 notify on node2 + * Pseudo action: imagestorecloneset_confirmed-post_notify_running_0 + * Resource action: sles10 start on node1 + * Resource action: imagestoreclone:0 monitor=20000 on node1 + * Resource action: imagestoreclone:1 monitor=20000 on node2 + * Resource action: sles10 monitor=10000 on node1 + +Revised cluster status: +Online: [ node2 node1 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node2 node1 ] + Clone Set: evmsdcloneset [evmsdclone] + Started: [ node2 node1 ] + Clone Set: evmscloneset [evmsclone] + Started: [ node2 node1 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ node1 node2 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node2 node1 ] + sles10 (ocf::heartbeat:Xen): Started node1 + diff --git a/pengine/test10/novell-252693.summary b/pengine/test10/novell-252693.summary new file mode 100644 index 0000000000..c529de1845 --- /dev/null +++ b/pengine/test10/novell-252693.summary @@ -0,0 +1,89 @@ + +Current cluster status: +Online: [ node2 node1 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node2 node1 ] + Clone Set: evmsdcloneset [evmsdclone] + Started: [ node2 node1 ] + Clone Set: evmscloneset [evmsclone] + Started: [ node2 node1 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ node2 node1 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node2 node1 ] + sles10 (ocf::heartbeat:Xen): Started node1 + +Transition Summary: + * Stop stonithclone:1 (node1) + * Stop evmsdclone:1 (node1) + * Stop evmsclone:1 (node1) + * Stop imagestoreclone:1 (node1) + * Stop configstoreclone:1 (node1) + * Migrate sles10 (Started node1 -> node2) + +Executing cluster transition: + * Pseudo action: stonithcloneset_stop_0 + * Pseudo action: evmscloneset_pre_notify_stop_0 + * Pseudo action: imagestorecloneset_pre_notify_stop_0 + * Pseudo action: configstorecloneset_pre_notify_stop_0 + * Resource action: sles10 migrate_to on node1 + * Resource action: evmsclone:0 notify on node2 + * Resource action: evmsclone:1 notify on node1 + * Pseudo action: evmscloneset_confirmed-pre_notify_stop_0 + * Resource action: imagestoreclone:0 notify on node2 + * Resource action: imagestoreclone:0 notify on node1 + * Pseudo action: imagestorecloneset_confirmed-pre_notify_stop_0 + * Resource action: configstoreclone:0 notify on node2 + * Resource action: configstoreclone:0 notify on node1 + * Pseudo action: configstorecloneset_confirmed-pre_notify_stop_0 + * Resource action: sles10 migrate_from on node2 + * Resource action: sles10 stop on node1 + * Pseudo action: imagestorecloneset_stop_0 + * Pseudo action: configstorecloneset_stop_0 + * Pseudo action: sles10_start_0 + * Resource action: imagestoreclone:0 stop on node1 + * Pseudo action: imagestorecloneset_stopped_0 + * Resource action: configstoreclone:0 stop on node1 + * Pseudo action: configstorecloneset_stopped_0 + * Resource action: sles10 monitor=10000 on node2 + * Pseudo action: imagestorecloneset_post_notify_stopped_0 + * Pseudo action: configstorecloneset_post_notify_stopped_0 + * Resource action: imagestoreclone:0 notify on node2 + * Pseudo action: imagestorecloneset_confirmed-post_notify_stopped_0 + * Resource action: configstoreclone:0 notify on node2 + * Pseudo action: configstorecloneset_confirmed-post_notify_stopped_0 + * Pseudo action: evmscloneset_stop_0 + * Resource action: evmsclone:1 stop on node1 + * Pseudo action: evmscloneset_stopped_0 + * Pseudo action: evmscloneset_post_notify_stopped_0 + * Resource action: evmsclone:0 notify on node2 + * Pseudo action: evmscloneset_confirmed-post_notify_stopped_0 + * Pseudo action: evmsdcloneset_stop_0 + * Resource action: evmsdclone:1 stop on node1 + * Pseudo action: evmsdcloneset_stopped_0 + * Pseudo action: all_stopped + * Resource action: stonithclone:1 stop on node1 + * Pseudo action: stonithcloneset_stopped_0 + * Cluster action: do_shutdown on node1 + +Revised cluster status: +Online: [ node2 node1 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ node2 ] + Stopped: [ stonithclone:1 ] + Clone Set: evmsdcloneset [evmsdclone] + Started: [ node2 ] + Stopped: [ evmsdclone:1 ] + Clone Set: evmscloneset [evmsclone] + Started: [ node2 ] + Stopped: [ evmsclone:1 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ node2 ] + Stopped: [ imagestoreclone:1 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ node2 ] + Stopped: [ configstoreclone:1 ] + sles10 (ocf::heartbeat:Xen): Started node2 + diff --git a/pengine/test10/one-or-more-0.summary b/pengine/test10/one-or-more-0.summary new file mode 100644 index 0000000000..70a64d671a --- /dev/null +++ b/pengine/test10/one-or-more-0.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Stopped + B (ocf::pacemaker:Dummy): Stopped + C (ocf::pacemaker:Dummy): Stopped + D (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start A (fc16-builder) + * Start B (fc16-builder) + * Start C (fc16-builder) + * Start D (fc16-builder) + +Executing cluster transition: + * Resource action: A monitor on fc16-builder + * Resource action: B monitor on fc16-builder + * Resource action: C monitor on fc16-builder + * Resource action: D monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: A start on fc16-builder + * Resource action: B start on fc16-builder + * Resource action: C start on fc16-builder + * Pseudo action: one-or-more:require-all-set-1 + * Resource action: D start on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Started fc16-builder + C (ocf::pacemaker:Dummy): Started fc16-builder + D (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/one-or-more-1.summary b/pengine/test10/one-or-more-1.summary new file mode 100644 index 0000000000..56ffcab537 --- /dev/null +++ b/pengine/test10/one-or-more-1.summary @@ -0,0 +1,31 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Stopped + B (ocf::pacemaker:Dummy): Stopped + C (ocf::pacemaker:Dummy): Stopped + D (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start B (fc16-builder - blocked) + * Start C (fc16-builder - blocked) + * Start D (fc16-builder - blocked) + +Executing cluster transition: + * Resource action: A monitor on fc16-builder + * Resource action: B monitor on fc16-builder + * Resource action: C monitor on fc16-builder + * Resource action: D monitor on fc16-builder + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Stopped + B (ocf::pacemaker:Dummy): Stopped + C (ocf::pacemaker:Dummy): Stopped + D (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/one-or-more-2.summary b/pengine/test10/one-or-more-2.summary new file mode 100644 index 0000000000..9f3a4f1d25 --- /dev/null +++ b/pengine/test10/one-or-more-2.summary @@ -0,0 +1,35 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Stopped + B (ocf::pacemaker:Dummy): Stopped + C (ocf::pacemaker:Dummy): Stopped + D (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start A (fc16-builder) + * Start C (fc16-builder) + * Start D (fc16-builder) + +Executing cluster transition: + * Resource action: A monitor on fc16-builder + * Resource action: B monitor on fc16-builder + * Resource action: C monitor on fc16-builder + * Resource action: D monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: A start on fc16-builder + * Resource action: C start on fc16-builder + * Pseudo action: one-or-more:require-all-set-1 + * Resource action: D start on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Stopped + C (ocf::pacemaker:Dummy): Started fc16-builder + D (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/one-or-more-3.summary b/pengine/test10/one-or-more-3.summary new file mode 100644 index 0000000000..3ae8ecaa77 --- /dev/null +++ b/pengine/test10/one-or-more-3.summary @@ -0,0 +1,31 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Stopped + B (ocf::pacemaker:Dummy): Stopped + C (ocf::pacemaker:Dummy): Stopped + D (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start A (fc16-builder) + * Start D (fc16-builder - blocked) + +Executing cluster transition: + * Resource action: A monitor on fc16-builder + * Resource action: B monitor on fc16-builder + * Resource action: C monitor on fc16-builder + * Resource action: D monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: A start on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Stopped + C (ocf::pacemaker:Dummy): Stopped + D (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/one-or-more-4.summary b/pengine/test10/one-or-more-4.summary new file mode 100644 index 0000000000..f5a574555f --- /dev/null +++ b/pengine/test10/one-or-more-4.summary @@ -0,0 +1,35 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Stopped + B (ocf::pacemaker:Dummy): Stopped + C (ocf::pacemaker:Dummy): Stopped + D (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start A (fc16-builder) + * Start B (fc16-builder) + * Start C (fc16-builder) + +Executing cluster transition: + * Resource action: A monitor on fc16-builder + * Resource action: B monitor on fc16-builder + * Resource action: C monitor on fc16-builder + * Resource action: D monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: A start on fc16-builder + * Resource action: B start on fc16-builder + * Resource action: C start on fc16-builder + * Pseudo action: one-or-more:require-all-set-1 + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Started fc16-builder + C (ocf::pacemaker:Dummy): Started fc16-builder + D (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/one-or-more-5.summary b/pengine/test10/one-or-more-5.summary new file mode 100644 index 0000000000..48569ab5ed --- /dev/null +++ b/pengine/test10/one-or-more-5.summary @@ -0,0 +1,44 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Stopped + B (ocf::pacemaker:Dummy): Stopped + C (ocf::pacemaker:Dummy): Stopped + D (ocf::pacemaker:Dummy): Stopped + E (ocf::pacemaker:Dummy): Stopped + F (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start A (fc16-builder) + * Start B (fc16-builder) + * Start E (fc16-builder) + * Start F (fc16-builder) + +Executing cluster transition: + * Resource action: A monitor on fc16-builder + * Resource action: B monitor on fc16-builder + * Resource action: C monitor on fc16-builder + * Resource action: D monitor on fc16-builder + * Resource action: E monitor on fc16-builder + * Resource action: F monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: B start on fc16-builder + * Pseudo action: one-or-more:require-all-set-1 + * Resource action: A start on fc16-builder + * Resource action: E start on fc16-builder + * Pseudo action: one-or-more:require-all-set-3 + * Resource action: F start on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Started fc16-builder + C (ocf::pacemaker:Dummy): Stopped + D (ocf::pacemaker:Dummy): Stopped + E (ocf::pacemaker:Dummy): Started fc16-builder + F (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/one-or-more-6.summary b/pengine/test10/one-or-more-6.summary new file mode 100644 index 0000000000..e1fd0f6f8b --- /dev/null +++ b/pengine/test10/one-or-more-6.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Started fc16-builder + C (ocf::pacemaker:Dummy): Started fc16-builder + +Transition Summary: + * Stop B (fc16-builder) + +Executing cluster transition: + * Resource action: B stop on fc16-builder + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Stopped + C (ocf::pacemaker:Dummy): Started fc16-builder + diff --git a/pengine/test10/one-or-more-7.summary b/pengine/test10/one-or-more-7.summary new file mode 100644 index 0000000000..92c68cd1c3 --- /dev/null +++ b/pengine/test10/one-or-more-7.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Started fc16-builder + C (ocf::pacemaker:Dummy): Started fc16-builder + +Transition Summary: + * Stop C (fc16-builder) + +Executing cluster transition: + * Resource action: C stop on fc16-builder + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Started fc16-builder + B (ocf::pacemaker:Dummy): Started fc16-builder + C (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/order-clone.summary b/pengine/test10/order-clone.summary new file mode 100644 index 0000000000..3802db4cff --- /dev/null +++ b/pengine/test10/order-clone.summary @@ -0,0 +1,41 @@ + +Current cluster status: +Online: [ hex-7 hex-8 hex-9 hex-0 ] + + fencing-sbd (stonith:external/sbd): Stopped + Clone Set: o2cb-clone [o2cb] + Stopped: [ o2cb:0 o2cb:1 o2cb:2 o2cb:3 ] + Clone Set: vg1-clone [vg1] + Stopped: [ vg1:0 vg1:1 vg1:2 vg1:3 ] + Clone Set: fs2-clone [ocfs2-2] + Stopped: [ ocfs2-2:0 ocfs2-2:1 ocfs2-2:2 ocfs2-2:3 ] + Clone Set: fs1-clone [ocfs2-1] + Stopped: [ ocfs2-1:0 ocfs2-1:1 ocfs2-1:2 ocfs2-1:3 ] + Clone Set: dlm-clone [dlm] + Stopped: [ dlm:0 dlm:1 dlm:2 dlm:3 ] + Clone Set: clvm-clone [clvm] + Stopped: [ clvm:0 clvm:1 clvm:2 clvm:3 ] + +Transition Summary: + * Start fencing-sbd (hex-0) + +Executing cluster transition: + * Resource action: fencing-sbd start on hex-0 + +Revised cluster status: +Online: [ hex-7 hex-8 hex-9 hex-0 ] + + fencing-sbd (stonith:external/sbd): Started hex-0 + Clone Set: o2cb-clone [o2cb] + Stopped: [ o2cb:0 o2cb:1 o2cb:2 o2cb:3 ] + Clone Set: vg1-clone [vg1] + Stopped: [ vg1:0 vg1:1 vg1:2 vg1:3 ] + Clone Set: fs2-clone [ocfs2-2] + Stopped: [ ocfs2-2:0 ocfs2-2:1 ocfs2-2:2 ocfs2-2:3 ] + Clone Set: fs1-clone [ocfs2-1] + Stopped: [ ocfs2-1:0 ocfs2-1:1 ocfs2-1:2 ocfs2-1:3 ] + Clone Set: dlm-clone [dlm] + Stopped: [ dlm:0 dlm:1 dlm:2 dlm:3 ] + Clone Set: clvm-clone [clvm] + Stopped: [ clvm:0 clvm:1 clvm:2 clvm:3 ] + diff --git a/pengine/test10/order-mandatory.summary b/pengine/test10/order-mandatory.summary new file mode 100644 index 0000000000..a1d2b4be54 --- /dev/null +++ b/pengine/test10/order-mandatory.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Started node1 + +Transition Summary: + * Start rsc1 (node1) + * Restart rsc2 (Started node1) + * Stop rsc4 (Started node1) + +Executing cluster transition: + * Resource action: rsc1 start on node1 + * Resource action: rsc2 stop on node1 + * Resource action: rsc4 stop on node1 + * Pseudo action: all_stopped + * Resource action: rsc2 start on node1 + +Revised cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Stopped + diff --git a/pengine/test10/order-optional-keyword.summary b/pengine/test10/order-optional-keyword.summary new file mode 100644 index 0000000000..6d737524b5 --- /dev/null +++ b/pengine/test10/order-optional-keyword.summary @@ -0,0 +1,23 @@ + +Current cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Started node1 + +Transition Summary: + * Start rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/order-optional.summary b/pengine/test10/order-optional.summary new file mode 100644 index 0000000000..6d737524b5 --- /dev/null +++ b/pengine/test10/order-optional.summary @@ -0,0 +1,23 @@ + +Current cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Started node1 + +Transition Summary: + * Start rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/order-required.summary b/pengine/test10/order-required.summary new file mode 100644 index 0000000000..a1d2b4be54 --- /dev/null +++ b/pengine/test10/order-required.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Started node1 + +Transition Summary: + * Start rsc1 (node1) + * Restart rsc2 (Started node1) + * Stop rsc4 (Started node1) + +Executing cluster transition: + * Resource action: rsc1 start on node1 + * Resource action: rsc2 stop on node1 + * Resource action: rsc4 stop on node1 + * Pseudo action: all_stopped + * Resource action: rsc2 start on node1 + +Revised cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Stopped + diff --git a/pengine/test10/order-serialize-set.summary b/pengine/test10/order-serialize-set.summary new file mode 100644 index 0000000000..2516df7bab --- /dev/null +++ b/pengine/test10/order-serialize-set.summary @@ -0,0 +1,72 @@ + +Current cluster status: +Node xen-a (445a93d5-655e-430b-b45d-47d79a2f78c7): standby +Online: [ xen-b ] + + xen-a-fencing (stonith:external/ipmi): Started xen-b + xen-b-fencing (stonith:external/ipmi): Started xen-a + db (ocf::heartbeat:Xen): Started xen-a + dbreplica (ocf::heartbeat:Xen): Started xen-b + core-101 (ocf::heartbeat:Xen): Started xen-a + core-200 (ocf::heartbeat:Xen): Started xen-a + sysadmin (ocf::heartbeat:Xen): Started xen-b + edge (ocf::heartbeat:Xen): Started xen-a + base (ocf::heartbeat:Xen): Started xen-a + Email_Alerting (ocf::heartbeat:MailTo): Started xen-b + +Transition Summary: + * Restart xen-a-fencing (Started xen-b) + * Stop xen-b-fencing (xen-a) + * Migrate db (Started xen-a -> xen-b) + * Migrate core-101 (Started xen-a -> xen-b) + * Migrate core-200 (Started xen-a -> xen-b) + * Migrate edge (Started xen-a -> xen-b) + * Migrate base (Started xen-a -> xen-b) + +Executing cluster transition: + * Resource action: xen-a-fencing stop on xen-b + * Resource action: xen-a-fencing start on xen-b + * Resource action: xen-a-fencing monitor=60000 on xen-b + * Resource action: db migrate_to on xen-a + * Resource action: db migrate_from on xen-b + * Resource action: db stop on xen-a + * Pseudo action: db_start_0 + * Resource action: core-101 migrate_to on xen-a + * Resource action: db monitor=10000 on xen-b + * Resource action: core-101 migrate_from on xen-b + * Resource action: core-101 stop on xen-a + * Pseudo action: core-101_start_0 + * Resource action: core-200 migrate_to on xen-a + * Resource action: core-101 monitor=10000 on xen-b + * Resource action: core-200 migrate_from on xen-b + * Resource action: core-200 stop on xen-a + * Pseudo action: core-200_start_0 + * Resource action: edge migrate_to on xen-a + * Resource action: core-200 monitor=10000 on xen-b + * Resource action: edge migrate_from on xen-b + * Resource action: edge stop on xen-a + * Pseudo action: edge_start_0 + * Resource action: base migrate_to on xen-a + * Resource action: edge monitor=10000 on xen-b + * Resource action: base migrate_from on xen-b + * Resource action: base stop on xen-a + * Pseudo action: all_stopped + * Resource action: xen-b-fencing stop on xen-a + * Pseudo action: base_start_0 + * Resource action: base monitor=10000 on xen-b + +Revised cluster status: +Node xen-a (445a93d5-655e-430b-b45d-47d79a2f78c7): standby +Online: [ xen-b ] + + xen-a-fencing (stonith:external/ipmi): Started xen-b + xen-b-fencing (stonith:external/ipmi): Stopped + db (ocf::heartbeat:Xen): Started xen-b + dbreplica (ocf::heartbeat:Xen): Started xen-b + core-101 (ocf::heartbeat:Xen): Started xen-b + core-200 (ocf::heartbeat:Xen): Started xen-b + sysadmin (ocf::heartbeat:Xen): Started xen-b + edge (ocf::heartbeat:Xen): Started xen-b + base (ocf::heartbeat:Xen): Started xen-b + Email_Alerting (ocf::heartbeat:MailTo): Started xen-b + diff --git a/pengine/test10/order-serialize.summary b/pengine/test10/order-serialize.summary new file mode 100644 index 0000000000..3e1175c841 --- /dev/null +++ b/pengine/test10/order-serialize.summary @@ -0,0 +1,72 @@ + +Current cluster status: +Node xen-a (445a93d5-655e-430b-b45d-47d79a2f78c7): standby +Online: [ xen-b ] + + xen-a-fencing (stonith:external/ipmi): Started xen-b + xen-b-fencing (stonith:external/ipmi): Started xen-a + db (ocf::heartbeat:Xen): Started xen-a + dbreplica (ocf::heartbeat:Xen): Started xen-b + core-101 (ocf::heartbeat:Xen): Started xen-a + core-200 (ocf::heartbeat:Xen): Started xen-a + sysadmin (ocf::heartbeat:Xen): Started xen-b + edge (ocf::heartbeat:Xen): Started xen-a + base (ocf::heartbeat:Xen): Started xen-a + Email_Alerting (ocf::heartbeat:MailTo): Started xen-b + +Transition Summary: + * Restart xen-a-fencing (Started xen-b) + * Stop xen-b-fencing (xen-a) + * Migrate db (Started xen-a -> xen-b) + * Migrate core-101 (Started xen-a -> xen-b) + * Migrate core-200 (Started xen-a -> xen-b) + * Migrate edge (Started xen-a -> xen-b) + * Migrate base (Started xen-a -> xen-b) + +Executing cluster transition: + * Resource action: xen-a-fencing stop on xen-b + * Resource action: xen-a-fencing start on xen-b + * Resource action: xen-a-fencing monitor=60000 on xen-b + * Resource action: db migrate_to on xen-a + * Resource action: core-101 migrate_to on xen-a + * Resource action: edge migrate_to on xen-a + * Resource action: db migrate_from on xen-b + * Resource action: db stop on xen-a + * Resource action: core-101 migrate_from on xen-b + * Resource action: core-101 stop on xen-a + * Resource action: edge migrate_from on xen-b + * Resource action: edge stop on xen-a + * Pseudo action: db_start_0 + * Pseudo action: core-101_start_0 + * Resource action: core-200 migrate_to on xen-a + * Pseudo action: edge_start_0 + * Resource action: base migrate_to on xen-a + * Resource action: db monitor=10000 on xen-b + * Resource action: core-101 monitor=10000 on xen-b + * Resource action: core-200 migrate_from on xen-b + * Resource action: core-200 stop on xen-a + * Resource action: edge monitor=10000 on xen-b + * Resource action: base migrate_from on xen-b + * Resource action: base stop on xen-a + * Pseudo action: all_stopped + * Resource action: xen-b-fencing stop on xen-a + * Pseudo action: core-200_start_0 + * Pseudo action: base_start_0 + * Resource action: core-200 monitor=10000 on xen-b + * Resource action: base monitor=10000 on xen-b + +Revised cluster status: +Node xen-a (445a93d5-655e-430b-b45d-47d79a2f78c7): standby +Online: [ xen-b ] + + xen-a-fencing (stonith:external/ipmi): Started xen-b + xen-b-fencing (stonith:external/ipmi): Stopped + db (ocf::heartbeat:Xen): Started xen-b + dbreplica (ocf::heartbeat:Xen): Started xen-b + core-101 (ocf::heartbeat:Xen): Started xen-b + core-200 (ocf::heartbeat:Xen): Started xen-b + sysadmin (ocf::heartbeat:Xen): Started xen-b + edge (ocf::heartbeat:Xen): Started xen-b + base (ocf::heartbeat:Xen): Started xen-b + Email_Alerting (ocf::heartbeat:MailTo): Started xen-b + diff --git a/pengine/test10/order-sets.summary b/pengine/test10/order-sets.summary new file mode 100644 index 0000000000..0d5de5e9f3 --- /dev/null +++ b/pengine/test10/order-sets.summary @@ -0,0 +1,40 @@ + +Current cluster status: +Node ubuntu_2: standby +Online: [ ubuntu_1 ] + + world1 (ocf::bbnd:world1test): Started ubuntu_2 + world2 (ocf::bbnd:world2test): Started ubuntu_2 + world3 (ocf::bbnd:world3test): Started ubuntu_2 + world4 (ocf::bbnd:world4test): Started ubuntu_2 + +Transition Summary: + * Move world1 (Started ubuntu_2 -> ubuntu_1) + * Move world2 (Started ubuntu_2 -> ubuntu_1) + * Move world3 (Started ubuntu_2 -> ubuntu_1) + * Move world4 (Started ubuntu_2 -> ubuntu_1) + +Executing cluster transition: + * Resource action: world4 stop on ubuntu_2 + * Resource action: world3 stop on ubuntu_2 + * Resource action: world2 stop on ubuntu_2 + * Resource action: world1 stop on ubuntu_2 + * Pseudo action: all_stopped + * Resource action: world1 start on ubuntu_1 + * Resource action: world2 start on ubuntu_1 + * Resource action: world3 start on ubuntu_1 + * Resource action: world4 start on ubuntu_1 + * Resource action: world1 monitor=10000 on ubuntu_1 + * Resource action: world2 monitor=10000 on ubuntu_1 + * Resource action: world3 monitor=10000 on ubuntu_1 + * Resource action: world4 monitor=10000 on ubuntu_1 + +Revised cluster status: +Node ubuntu_2: standby +Online: [ ubuntu_1 ] + + world1 (ocf::bbnd:world1test): Started ubuntu_1 + world2 (ocf::bbnd:world2test): Started ubuntu_1 + world3 (ocf::bbnd:world3test): Started ubuntu_1 + world4 (ocf::bbnd:world4test): Started ubuntu_1 + diff --git a/pengine/test10/order1.summary b/pengine/test10/order1.summary new file mode 100644 index 0000000000..5b8255eef8 --- /dev/null +++ b/pengine/test10/order1.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + rsc3 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node2) + * Start rsc3 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node2 + * Resource action: rsc3 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/order2.summary b/pengine/test10/order2.summary new file mode 100644 index 0000000000..0cce863b32 --- /dev/null +++ b/pengine/test10/order2.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node2) + * Start rsc3 (node1) + * Start rsc4 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Resource action: rsc4 start on node2 + * Resource action: rsc2 start on node2 + * Resource action: rsc3 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Started node1 + rsc4 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/order3.summary b/pengine/test10/order3.summary new file mode 100644 index 0000000000..48d56b9374 --- /dev/null +++ b/pengine/test10/order3.summary @@ -0,0 +1,39 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Started node1 + rsc4 (heartbeat:apache): Started node1 + +Transition Summary: + * Move rsc1 (Started node1 -> node2) + * Move rsc2 (Started node1 -> node2) + * Move rsc3 (Started node1 -> node2) + * Move rsc4 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc4 monitor on node2 + * Pseudo action: probe_complete + * Resource action: rsc3 stop on node1 + * Resource action: rsc2 stop on node1 + * Resource action: rsc4 stop on node1 + * Resource action: rsc1 stop on node1 + * Resource action: rsc4 start on node2 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + * Resource action: rsc3 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node2 + rsc2 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Started node2 + rsc4 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/order4.summary b/pengine/test10/order4.summary new file mode 100644 index 0000000000..5b8255eef8 --- /dev/null +++ b/pengine/test10/order4.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + rsc3 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node2) + * Start rsc3 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node2 + * Resource action: rsc3 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/order5.summary b/pengine/test10/order5.summary new file mode 100644 index 0000000000..fdc9a27461 --- /dev/null +++ b/pengine/test10/order5.summary @@ -0,0 +1,51 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Started node1 + rsc4 (heartbeat:apache): Started node1 + rsc5 (heartbeat:apache): Started node2 + rsc6 (heartbeat:apache): Started node2 + rsc7 (heartbeat:apache): Started node2 + rsc8 (heartbeat:apache): Started node2 + +Transition Summary: + * Move rsc2 (Started node1 -> node2) + * Move rsc4 (Started node1 -> node2) + * Move rsc6 (Started node2 -> node1) + * Move rsc8 (Started node2 -> node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc5 monitor on node1 + * Resource action: rsc6 monitor on node1 + * Resource action: rsc7 monitor on node1 + * Resource action: rsc8 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc2 stop on node1 + * Resource action: rsc4 stop on node1 + * Resource action: rsc6 stop on node2 + * Resource action: rsc8 stop on node2 + * Pseudo action: all_stopped + * Resource action: rsc2 start on node2 + * Resource action: rsc4 start on node2 + * Resource action: rsc6 start on node1 + * Resource action: rsc8 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Started node1 + rsc4 (heartbeat:apache): Started node2 + rsc5 (heartbeat:apache): Started node2 + rsc6 (heartbeat:apache): Started node1 + rsc7 (heartbeat:apache): Started node2 + rsc8 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/order6.summary b/pengine/test10/order6.summary new file mode 100644 index 0000000000..fdc9a27461 --- /dev/null +++ b/pengine/test10/order6.summary @@ -0,0 +1,51 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Started node1 + rsc4 (heartbeat:apache): Started node1 + rsc5 (heartbeat:apache): Started node2 + rsc6 (heartbeat:apache): Started node2 + rsc7 (heartbeat:apache): Started node2 + rsc8 (heartbeat:apache): Started node2 + +Transition Summary: + * Move rsc2 (Started node1 -> node2) + * Move rsc4 (Started node1 -> node2) + * Move rsc6 (Started node2 -> node1) + * Move rsc8 (Started node2 -> node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc5 monitor on node1 + * Resource action: rsc6 monitor on node1 + * Resource action: rsc7 monitor on node1 + * Resource action: rsc8 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc2 stop on node1 + * Resource action: rsc4 stop on node1 + * Resource action: rsc6 stop on node2 + * Resource action: rsc8 stop on node2 + * Pseudo action: all_stopped + * Resource action: rsc2 start on node2 + * Resource action: rsc4 start on node2 + * Resource action: rsc6 start on node1 + * Resource action: rsc8 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Started node1 + rsc4 (heartbeat:apache): Started node2 + rsc5 (heartbeat:apache): Started node2 + rsc6 (heartbeat:apache): Started node1 + rsc7 (heartbeat:apache): Started node2 + rsc8 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/order7.summary b/pengine/test10/order7.summary new file mode 100644 index 0000000000..c82ca4aea6 --- /dev/null +++ b/pengine/test10/order7.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Stopped + rsc3 (heartbeat:apache): Stopped + rscA (heartbeat:apache): Started node1 (unmanaged) FAILED + rscB (heartbeat:apache): Stopped + rscC (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc2 (node1) + * Start rsc3 (node1) + * Start rscB (node1) + * Start rscC (node1 - blocked) + +Executing cluster transition: + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node1 + * Resource action: rscB monitor on node1 + * Resource action: rscC monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc2 start on node1 + * Resource action: rsc3 start on node1 + * Resource action: rscB start on node1 + +Revised cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Started node1 + rscA (heartbeat:apache): Started node1 (unmanaged) FAILED + rscB (heartbeat:apache): Started node1 + rscC (heartbeat:apache): Stopped + diff --git a/pengine/test10/order_constraint_stops_master.summary b/pengine/test10/order_constraint_stops_master.summary new file mode 100644 index 0000000000..cbbe157a07 --- /dev/null +++ b/pengine/test10/order_constraint_stops_master.summary @@ -0,0 +1,40 @@ + +Current cluster status: +Online: [ fc16-builder fc16-builder2 ] + + Master/Slave Set: MASTER_RSC_A [NATIVE_RSC_A] + Masters: [ fc16-builder ] + NATIVE_RSC_B (ocf::pacemaker:Dummy): Started fc16-builder2 + +Transition Summary: + * Stop NATIVE_RSC_A:0 (Master fc16-builder) + * Stop NATIVE_RSC_B (fc16-builder2) + +Executing cluster transition: + * Pseudo action: MASTER_RSC_A_pre_notify_demote_0 + * Resource action: NATIVE_RSC_A:0 notify on fc16-builder + * Pseudo action: MASTER_RSC_A_confirmed-pre_notify_demote_0 + * Pseudo action: MASTER_RSC_A_demote_0 + * Resource action: NATIVE_RSC_A:0 demote on fc16-builder + * Pseudo action: MASTER_RSC_A_demoted_0 + * Pseudo action: MASTER_RSC_A_post_notify_demoted_0 + * Resource action: NATIVE_RSC_A:0 notify on fc16-builder + * Pseudo action: MASTER_RSC_A_confirmed-post_notify_demoted_0 + * Pseudo action: MASTER_RSC_A_pre_notify_stop_0 + * Resource action: NATIVE_RSC_A:0 notify on fc16-builder + * Pseudo action: MASTER_RSC_A_confirmed-pre_notify_stop_0 + * Pseudo action: MASTER_RSC_A_stop_0 + * Resource action: NATIVE_RSC_A:0 stop on fc16-builder + * Pseudo action: MASTER_RSC_A_stopped_0 + * Pseudo action: MASTER_RSC_A_post_notify_stopped_0 + * Pseudo action: MASTER_RSC_A_confirmed-post_notify_stopped_0 + * Resource action: NATIVE_RSC_B stop on fc16-builder2 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ fc16-builder fc16-builder2 ] + + Master/Slave Set: MASTER_RSC_A [NATIVE_RSC_A] + Stopped: [ NATIVE_RSC_A:0 ] + NATIVE_RSC_B (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/order_constraint_stops_slave.summary b/pengine/test10/order_constraint_stops_slave.summary new file mode 100644 index 0000000000..14478b0cc0 --- /dev/null +++ b/pengine/test10/order_constraint_stops_slave.summary @@ -0,0 +1,33 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + Master/Slave Set: MASTER_RSC_A [NATIVE_RSC_A] + Slaves: [ fc16-builder ] + NATIVE_RSC_B (ocf::pacemaker:Dummy): Started fc16-builder + +Transition Summary: + * Stop NATIVE_RSC_A:0 (Slave fc16-builder) + * Stop NATIVE_RSC_B (fc16-builder) + +Executing cluster transition: + * Pseudo action: MASTER_RSC_A_pre_notify_stop_0 + * Resource action: NATIVE_RSC_A:0 notify on fc16-builder + * Pseudo action: MASTER_RSC_A_confirmed-pre_notify_stop_0 + * Pseudo action: MASTER_RSC_A_stop_0 + * Resource action: NATIVE_RSC_A:0 stop on fc16-builder + * Pseudo action: MASTER_RSC_A_stopped_0 + * Pseudo action: MASTER_RSC_A_post_notify_stopped_0 + * Pseudo action: MASTER_RSC_A_confirmed-post_notify_stopped_0 + * Resource action: NATIVE_RSC_B stop on fc16-builder + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + Master/Slave Set: MASTER_RSC_A [NATIVE_RSC_A] + Stopped: [ NATIVE_RSC_A:0 ] + NATIVE_RSC_B (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ordered-set-basic-startup.summary b/pengine/test10/ordered-set-basic-startup.summary new file mode 100644 index 0000000000..e47ed1eac8 --- /dev/null +++ b/pengine/test10/ordered-set-basic-startup.summary @@ -0,0 +1,39 @@ + +Current cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Stopped + B (ocf::pacemaker:Dummy): Stopped + C (ocf::pacemaker:Dummy): Stopped + D (ocf::pacemaker:Dummy): Stopped + E (ocf::pacemaker:Dummy): Stopped + F (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start A (fc16-builder - blocked) + * Start B (fc16-builder) + * Start E (fc16-builder - blocked) + * Start F (fc16-builder - blocked) + +Executing cluster transition: + * Resource action: A monitor on fc16-builder + * Resource action: B monitor on fc16-builder + * Resource action: C monitor on fc16-builder + * Resource action: D monitor on fc16-builder + * Resource action: E monitor on fc16-builder + * Resource action: F monitor on fc16-builder + * Pseudo action: probe_complete + * Resource action: B start on fc16-builder + +Revised cluster status: +Online: [ fc16-builder ] +OFFLINE: [ fc16-builder2 ] + + A (ocf::pacemaker:Dummy): Stopped + B (ocf::pacemaker:Dummy): Started fc16-builder + C (ocf::pacemaker:Dummy): Stopped + D (ocf::pacemaker:Dummy): Stopped + E (ocf::pacemaker:Dummy): Stopped + F (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/orphan-0.summary b/pengine/test10/orphan-0.summary new file mode 100644 index 0000000000..298c91b132 --- /dev/null +++ b/pengine/test10/orphan-0.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + rsc_c001n08 (ocf::heartbeat:IPaddr): ORPHANED Started c001n08 (unmanaged) + +Transition Summary: + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n01 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: rsc_c001n02 monitor on c001n01 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n03 monitor=6000 on c001n03 + * Resource action: rsc_c001n03 monitor on c001n01 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: rsc_c001n01 monitor on c001n02 + * Resource action: rsc_c001n01 monitor on c001n08 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + rsc_c001n08 (ocf::heartbeat:IPaddr): ORPHANED Started c001n08 (unmanaged) + diff --git a/pengine/test10/orphan-1.summary b/pengine/test10/orphan-1.summary new file mode 100644 index 0000000000..0ad546b11d --- /dev/null +++ b/pengine/test10/orphan-1.summary @@ -0,0 +1,41 @@ + +Current cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + rsc_c001n08 (ocf::heartbeat:IPaddr): ORPHANED Started c001n08 + +Transition Summary: + * Stop rsc_c001n08 (c001n08) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n01 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: rsc_c001n02 monitor on c001n01 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n02 cancel=5000 on c001n02 + * Resource action: rsc_c001n03 monitor=6000 on c001n03 + * Resource action: rsc_c001n03 monitor on c001n01 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n03 cancel=5000 on c001n03 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: rsc_c001n01 monitor on c001n02 + * Resource action: rsc_c001n01 monitor on c001n08 + * Pseudo action: probe_complete + * Resource action: rsc_c001n08 stop on c001n08 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + diff --git a/pengine/test10/orphan-2.summary b/pengine/test10/orphan-2.summary new file mode 100644 index 0000000000..2b4e956fe7 --- /dev/null +++ b/pengine/test10/orphan-2.summary @@ -0,0 +1,43 @@ + +Current cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + rsc_c001n08 (ocf::heartbeat:IPaddr): ORPHANED Started c001n08 + +Transition Summary: + * Stop rsc_c001n08 (c001n08) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n01 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: rsc_c001n02 monitor on c001n01 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n02 cancel=5000 on c001n02 + * Resource action: rsc_c001n03 monitor=6000 on c001n03 + * Resource action: rsc_c001n03 monitor on c001n01 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n03 cancel=5000 on c001n03 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: rsc_c001n01 monitor on c001n02 + * Resource action: rsc_c001n01 monitor on c001n08 + * Cluster action: clear_failcount on c001n02 + * Cluster action: clear_failcount on c001n08 + * Pseudo action: probe_complete + * Resource action: rsc_c001n08 stop on c001n08 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + diff --git a/pengine/test10/params-0.summary b/pengine/test10/params-0.summary new file mode 100644 index 0000000000..84f397ee9c --- /dev/null +++ b/pengine/test10/params-0.summary @@ -0,0 +1,39 @@ + +Current cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + +Transition Summary: + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n01 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: rsc_c001n08 monitor on c001n01 + * Resource action: rsc_c001n08 monitor on c001n03 + * Resource action: rsc_c001n08 monitor on c001n02 + * Resource action: rsc_c001n02 monitor on c001n01 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n03 monitor on c001n01 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: rsc_c001n01 monitor on c001n02 + * Resource action: rsc_c001n01 monitor on c001n08 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + diff --git a/pengine/test10/params-1.summary b/pengine/test10/params-1.summary new file mode 100644 index 0000000000..d8ec0aeed7 --- /dev/null +++ b/pengine/test10/params-1.summary @@ -0,0 +1,47 @@ + +Current cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + +Transition Summary: + * Restart DcIPaddr (Started c001n02) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n01 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: rsc_c001n08 monitor on c001n01 + * Resource action: rsc_c001n08 monitor on c001n03 + * Resource action: rsc_c001n08 monitor on c001n02 + * Resource action: rsc_c001n08 monitor=5000 on c001n08 + * Resource action: rsc_c001n02 monitor=6000 on c001n02 + * Resource action: rsc_c001n02 monitor on c001n01 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n02 cancel=5000 on c001n02 + * Resource action: rsc_c001n03 monitor on c001n01 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: rsc_c001n01 monitor on c001n02 + * Resource action: rsc_c001n01 monitor on c001n08 + * Pseudo action: probe_complete + * Resource action: DcIPaddr stop on c001n02 + * Resource action: DcIPaddr start on c001n02 + * Resource action: DcIPaddr monitor=5000 on c001n02 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + diff --git a/pengine/test10/params-2.summary b/pengine/test10/params-2.summary new file mode 100644 index 0000000000..42cefef2d7 --- /dev/null +++ b/pengine/test10/params-2.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (lsb:apache): Started node1 + rsc2 (lsb:apache): Started node2 + rsc3 (lsb:apache): Stopped + +Transition Summary: + * Stop rsc1 (node1) + * Restart rsc2 (Started node2) + * Start rsc3 (node3) + +Executing cluster transition: + * Resource action: rsc1 monitor on node3 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node3 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 stop on node1 + * Resource action: rsc2 stop on node2 + * Resource action: rsc3 start on node3 + * Cluster action: do_shutdown on node1 + * Pseudo action: all_stopped + * Resource action: rsc2 delete on node2 + * Cluster action: lrm_refresh on node2 + * Resource action: rsc2 start on node2 + +Revised cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (lsb:apache): Stopped + rsc2 (lsb:apache): Started node2 + rsc3 (lsb:apache): Started node3 + diff --git a/pengine/test10/params-4.summary b/pengine/test10/params-4.summary new file mode 100644 index 0000000000..03d5300a1c --- /dev/null +++ b/pengine/test10/params-4.summary @@ -0,0 +1,45 @@ + +Current cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + +Transition Summary: + * Reload DcIPaddr (Started c001n02) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n01 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: rsc_c001n08 monitor on c001n01 + * Resource action: rsc_c001n08 monitor on c001n03 + * Resource action: rsc_c001n08 monitor on c001n02 + * Resource action: rsc_c001n08 monitor=5000 on c001n08 + * Resource action: rsc_c001n02 monitor=6000 on c001n02 + * Resource action: rsc_c001n02 monitor on c001n01 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n02 cancel=5000 on c001n02 + * Resource action: rsc_c001n03 monitor on c001n01 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: rsc_c001n01 monitor on c001n02 + * Resource action: rsc_c001n01 monitor on c001n08 + * Pseudo action: probe_complete + * Resource action: DcIPaddr reload on c001n02 + * Resource action: DcIPaddr monitor=5000 on c001n02 + +Revised cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + diff --git a/pengine/test10/params-5.summary b/pengine/test10/params-5.summary new file mode 100644 index 0000000000..d8ec0aeed7 --- /dev/null +++ b/pengine/test10/params-5.summary @@ -0,0 +1,47 @@ + +Current cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + +Transition Summary: + * Restart DcIPaddr (Started c001n02) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n01 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: rsc_c001n08 monitor on c001n01 + * Resource action: rsc_c001n08 monitor on c001n03 + * Resource action: rsc_c001n08 monitor on c001n02 + * Resource action: rsc_c001n08 monitor=5000 on c001n08 + * Resource action: rsc_c001n02 monitor=6000 on c001n02 + * Resource action: rsc_c001n02 monitor on c001n01 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n02 cancel=5000 on c001n02 + * Resource action: rsc_c001n03 monitor on c001n01 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: rsc_c001n01 monitor on c001n02 + * Resource action: rsc_c001n01 monitor on c001n08 + * Pseudo action: probe_complete + * Resource action: DcIPaddr stop on c001n02 + * Resource action: DcIPaddr start on c001n02 + * Resource action: DcIPaddr monitor=5000 on c001n02 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + diff --git a/pengine/test10/params-6.summary b/pengine/test10/params-6.summary new file mode 100644 index 0000000000..fadc097d38 --- /dev/null +++ b/pengine/test10/params-6.summary @@ -0,0 +1,395 @@ + +Current cluster status: +Online: [ mgmt01 v03-a v03-b ] + + stonith-v02-a (stonith:fence_ipmilan): Stopped + stonith-v02-b (stonith:fence_ipmilan): Stopped + stonith-v02-c (stonith:fence_ipmilan): Stopped + stonith-v02-d (stonith:fence_ipmilan): Stopped + stonith-mgmt01 (stonith:fence_xvm): Started v03-a + stonith-mgmt02 (stonith:meatware): Started v03-a + stonith-v03-c (stonith:fence_ipmilan): Stopped + stonith-v03-a (stonith:fence_ipmilan): Started v03-b + stonith-v03-b (stonith:fence_ipmilan): Started mgmt01 + stonith-v03-d (stonith:fence_ipmilan): Stopped + Clone Set: cl-clvmd [clvmd] + Started: [ mgmt01 v03-a v03-b ] + Stopped: [ clvmd:3 clvmd:4 clvmd:5 clvmd:6 clvmd:7 clvmd:8 ] + Clone Set: cl-dlm [dlm] + Started: [ v03-a mgmt01 v03-b ] + Stopped: [ dlm:3 dlm:4 dlm:5 dlm:6 dlm:7 dlm:8 ] + Clone Set: cl-iscsid [iscsid] + Started: [ v03-a mgmt01 v03-b ] + Stopped: [ iscsid:3 iscsid:4 iscsid:5 iscsid:6 iscsid:7 iscsid:8 ] + Clone Set: cl-libvirtd [libvirtd] + Started: [ v03-a v03-b ] + Stopped: [ libvirtd:2 libvirtd:3 libvirtd:4 libvirtd:5 libvirtd:6 libvirtd:7 ] + Clone Set: cl-multipathd [multipathd] + Started: [ v03-a mgmt01 v03-b ] + Stopped: [ multipathd:3 multipathd:4 multipathd:5 multipathd:6 multipathd:7 multipathd:8 ] + Clone Set: cl-node-params [node-params] + Started: [ v03-a v03-b ] + Stopped: [ node-params:2 node-params:3 node-params:4 node-params:5 node-params:6 node-params:7 ] + Clone Set: cl-vlan1-if [vlan1-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan1-if:2 vlan1-if:3 vlan1-if:4 vlan1-if:5 vlan1-if:6 vlan1-if:7 ] + Clone Set: cl-vlan101-if [vlan101-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan101-if:2 vlan101-if:3 vlan101-if:4 vlan101-if:5 vlan101-if:6 vlan101-if:7 ] + Clone Set: cl-vlan102-if [vlan102-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan102-if:2 vlan102-if:3 vlan102-if:4 vlan102-if:5 vlan102-if:6 vlan102-if:7 ] + Clone Set: cl-vlan103-if [vlan103-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan103-if:2 vlan103-if:3 vlan103-if:4 vlan103-if:5 vlan103-if:6 vlan103-if:7 ] + Clone Set: cl-vlan104-if [vlan104-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan104-if:2 vlan104-if:3 vlan104-if:4 vlan104-if:5 vlan104-if:6 vlan104-if:7 ] + Clone Set: cl-vlan3-if [vlan3-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan3-if:2 vlan3-if:3 vlan3-if:4 vlan3-if:5 vlan3-if:6 vlan3-if:7 ] + Clone Set: cl-vlan4-if [vlan4-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan4-if:2 vlan4-if:3 vlan4-if:4 vlan4-if:5 vlan4-if:6 vlan4-if:7 ] + Clone Set: cl-vlan5-if [vlan5-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan5-if:2 vlan5-if:3 vlan5-if:4 vlan5-if:5 vlan5-if:6 vlan5-if:7 ] + Clone Set: cl-vlan900-if [vlan900-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan900-if:2 vlan900-if:3 vlan900-if:4 vlan900-if:5 vlan900-if:6 vlan900-if:7 ] + Clone Set: cl-vlan909-if [vlan909-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan909-if:2 vlan909-if:3 vlan909-if:4 vlan909-if:5 vlan909-if:6 vlan909-if:7 ] + Clone Set: cl-libvirt-images-fs [libvirt-images-fs] + Started: [ v03-a mgmt01 v03-b ] + Stopped: [ libvirt-images-fs:3 libvirt-images-fs:4 libvirt-images-fs:5 libvirt-images-fs:6 libvirt-images-fs:7 libvirt-images-fs:8 ] + Clone Set: cl-libvirt-install-fs [libvirt-install-fs] + Started: [ v03-a mgmt01 v03-b ] + Stopped: [ libvirt-install-fs:3 libvirt-install-fs:4 libvirt-install-fs:5 libvirt-install-fs:6 libvirt-install-fs:7 libvirt-install-fs:8 ] + Clone Set: cl-vds-ok-pool-0-iscsi [vds-ok-pool-0-iscsi] + Started: [ v03-a mgmt01 v03-b ] + Stopped: [ vds-ok-pool-0-iscsi:3 vds-ok-pool-0-iscsi:4 vds-ok-pool-0-iscsi:5 vds-ok-pool-0-iscsi:6 vds-ok-pool-0-iscsi:7 vds-ok-pool-0-iscsi:8 ] + Clone Set: cl-vds-ok-pool-0-vg [vds-ok-pool-0-vg] + Started: [ mgmt01 v03-a v03-b ] + Stopped: [ vds-ok-pool-0-vg:3 vds-ok-pool-0-vg:4 vds-ok-pool-0-vg:5 vds-ok-pool-0-vg:6 vds-ok-pool-0-vg:7 vds-ok-pool-0-vg:8 ] + Clone Set: cl-vds-ok-pool-1-iscsi [vds-ok-pool-1-iscsi] + Started: [ mgmt01 v03-a v03-b ] + Stopped: [ vds-ok-pool-1-iscsi:3 vds-ok-pool-1-iscsi:4 vds-ok-pool-1-iscsi:5 vds-ok-pool-1-iscsi:6 vds-ok-pool-1-iscsi:7 vds-ok-pool-1-iscsi:8 ] + Clone Set: cl-vds-ok-pool-1-vg [vds-ok-pool-1-vg] + Started: [ mgmt01 v03-a v03-b ] + Stopped: [ vds-ok-pool-1-vg:3 vds-ok-pool-1-vg:4 vds-ok-pool-1-vg:5 vds-ok-pool-1-vg:6 vds-ok-pool-1-vg:7 vds-ok-pool-1-vg:8 ] + Clone Set: cl-libvirt-images-pool [libvirt-images-pool] + Started: [ v03-a v03-b ] + Stopped: [ libvirt-images-pool:2 libvirt-images-pool:3 libvirt-images-pool:4 libvirt-images-pool:5 libvirt-images-pool:6 libvirt-images-pool:7 ] + Clone Set: cl-vds-ok-pool-0-pool [vds-ok-pool-0-pool] + Started: [ v03-a v03-b ] + Stopped: [ vds-ok-pool-0-pool:2 vds-ok-pool-0-pool:3 vds-ok-pool-0-pool:4 vds-ok-pool-0-pool:5 vds-ok-pool-0-pool:6 vds-ok-pool-0-pool:7 ] + Clone Set: cl-vds-ok-pool-1-pool [vds-ok-pool-1-pool] + Started: [ v03-a v03-b ] + Stopped: [ vds-ok-pool-1-pool:2 vds-ok-pool-1-pool:3 vds-ok-pool-1-pool:4 vds-ok-pool-1-pool:5 vds-ok-pool-1-pool:6 vds-ok-pool-1-pool:7 ] + git.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + Clone Set: cl-libvirt-qpid [libvirt-qpid] + Started: [ v03-a v03-b ] + Stopped: [ libvirt-qpid:2 libvirt-qpid:3 libvirt-qpid:4 libvirt-qpid:5 libvirt-qpid:6 libvirt-qpid:7 ] + vd01-a.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-b + vd01-b.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-b + vd01-c.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-a + vd01-d.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-b + vd02-a.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd02-b.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd02-c.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd02-d.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd03-a.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd03-b.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd03-c.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd03-d.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd04-a.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd04-b.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd04-c.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd04-d.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + f13-x64-devel.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-a + eu2.ca-pages.com-vm (ocf::vds-ok:VirtualDomain): Started v03-b + zakaz.transferrus.ru-vm (ocf::vds-ok:VirtualDomain): Stopped + Clone Set: cl-vlan200-if [vlan200-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan200-if:2 vlan200-if:3 vlan200-if:4 vlan200-if:5 vlan200-if:6 vlan200-if:7 ] + anbriz-gw-vm (ocf::vds-ok:VirtualDomain): Stopped + anbriz-work-vm (ocf::vds-ok:VirtualDomain): Stopped + lenny-x32-devel-vm (ocf::vds-ok:VirtualDomain): Started v03-a + vptest1.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest2.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest3.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest4.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest5.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest6.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest7.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest8.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest9.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest10.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest11.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest12.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest13.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest14.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest15.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest16.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest17.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest18.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest19.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest20.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest21.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest22.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest23.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest24.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest25.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest26.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest27.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest28.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest29.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest30.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest31.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest32.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest33.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest34.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest35.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest36.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest37.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest38.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest39.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest40.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest41.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest42.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest43.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest44.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest45.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest46.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest47.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest48.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest49.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest50.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest51.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest52.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest53.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest54.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest55.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest56.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest57.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest58.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest59.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest60.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + sl6-x64-devel.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-b + dist.express-consult.org-vm (ocf::vds-ok:VirtualDomain): Stopped + eu1.ca-pages.com-vm (ocf::vds-ok:VirtualDomain): Stopped + gotin-bbb-vm (ocf::vds-ok:VirtualDomain): Stopped + maxb-c55-vm (ocf::vds-ok:VirtualDomain): Stopped + metae.ru-vm (ocf::vds-ok:VirtualDomain): Stopped + rodovoepomestie.ru-vm (ocf::vds-ok:VirtualDomain): Stopped + ubuntu9.10-gotin-vm (ocf::vds-ok:VirtualDomain): Stopped + c5-x64-devel.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-a + Clone Set: cl-mcast-test-net [mcast-test-net] + Started: [ v03-a v03-b ] + Stopped: [ mcast-test-net:2 mcast-test-net:3 mcast-test-net:4 mcast-test-net:5 mcast-test-net:6 mcast-test-net:7 ] + dist.fly-uni.org-vm (ocf::vds-ok:VirtualDomain): Stopped + +Transition Summary: + * Reload c5-x64-devel.vds-ok.com-vm (Started v03-a) + +Executing cluster transition: + * Resource action: vd01-b.cdev.ttc.prague.cz.vds-ok.com-vm monitor=10000 on v03-b + * Resource action: vd01-d.cdev.ttc.prague.cz.vds-ok.com-vm monitor=10000 on v03-b + * Pseudo action: load_stopped_mgmt01 + * Pseudo action: load_stopped_v03-b + * Pseudo action: load_stopped_v03-a + * Resource action: c5-x64-devel.vds-ok.com-vm reload on v03-a + * Resource action: c5-x64-devel.vds-ok.com-vm monitor=10000 on v03-a + +Revised cluster status: +Online: [ mgmt01 v03-a v03-b ] + + stonith-v02-a (stonith:fence_ipmilan): Stopped + stonith-v02-b (stonith:fence_ipmilan): Stopped + stonith-v02-c (stonith:fence_ipmilan): Stopped + stonith-v02-d (stonith:fence_ipmilan): Stopped + stonith-mgmt01 (stonith:fence_xvm): Started v03-a + stonith-mgmt02 (stonith:meatware): Started v03-a + stonith-v03-c (stonith:fence_ipmilan): Stopped + stonith-v03-a (stonith:fence_ipmilan): Started v03-b + stonith-v03-b (stonith:fence_ipmilan): Started mgmt01 + stonith-v03-d (stonith:fence_ipmilan): Stopped + Clone Set: cl-clvmd [clvmd] + Started: [ mgmt01 v03-a v03-b ] + Stopped: [ clvmd:3 clvmd:4 clvmd:5 clvmd:6 clvmd:7 clvmd:8 ] + Clone Set: cl-dlm [dlm] + Started: [ v03-a mgmt01 v03-b ] + Stopped: [ dlm:3 dlm:4 dlm:5 dlm:6 dlm:7 dlm:8 ] + Clone Set: cl-iscsid [iscsid] + Started: [ v03-a mgmt01 v03-b ] + Stopped: [ iscsid:3 iscsid:4 iscsid:5 iscsid:6 iscsid:7 iscsid:8 ] + Clone Set: cl-libvirtd [libvirtd] + Started: [ v03-a v03-b ] + Stopped: [ libvirtd:2 libvirtd:3 libvirtd:4 libvirtd:5 libvirtd:6 libvirtd:7 ] + Clone Set: cl-multipathd [multipathd] + Started: [ v03-a mgmt01 v03-b ] + Stopped: [ multipathd:3 multipathd:4 multipathd:5 multipathd:6 multipathd:7 multipathd:8 ] + Clone Set: cl-node-params [node-params] + Started: [ v03-a v03-b ] + Stopped: [ node-params:2 node-params:3 node-params:4 node-params:5 node-params:6 node-params:7 ] + Clone Set: cl-vlan1-if [vlan1-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan1-if:2 vlan1-if:3 vlan1-if:4 vlan1-if:5 vlan1-if:6 vlan1-if:7 ] + Clone Set: cl-vlan101-if [vlan101-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan101-if:2 vlan101-if:3 vlan101-if:4 vlan101-if:5 vlan101-if:6 vlan101-if:7 ] + Clone Set: cl-vlan102-if [vlan102-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan102-if:2 vlan102-if:3 vlan102-if:4 vlan102-if:5 vlan102-if:6 vlan102-if:7 ] + Clone Set: cl-vlan103-if [vlan103-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan103-if:2 vlan103-if:3 vlan103-if:4 vlan103-if:5 vlan103-if:6 vlan103-if:7 ] + Clone Set: cl-vlan104-if [vlan104-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan104-if:2 vlan104-if:3 vlan104-if:4 vlan104-if:5 vlan104-if:6 vlan104-if:7 ] + Clone Set: cl-vlan3-if [vlan3-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan3-if:2 vlan3-if:3 vlan3-if:4 vlan3-if:5 vlan3-if:6 vlan3-if:7 ] + Clone Set: cl-vlan4-if [vlan4-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan4-if:2 vlan4-if:3 vlan4-if:4 vlan4-if:5 vlan4-if:6 vlan4-if:7 ] + Clone Set: cl-vlan5-if [vlan5-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan5-if:2 vlan5-if:3 vlan5-if:4 vlan5-if:5 vlan5-if:6 vlan5-if:7 ] + Clone Set: cl-vlan900-if [vlan900-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan900-if:2 vlan900-if:3 vlan900-if:4 vlan900-if:5 vlan900-if:6 vlan900-if:7 ] + Clone Set: cl-vlan909-if [vlan909-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan909-if:2 vlan909-if:3 vlan909-if:4 vlan909-if:5 vlan909-if:6 vlan909-if:7 ] + Clone Set: cl-libvirt-images-fs [libvirt-images-fs] + Started: [ v03-a mgmt01 v03-b ] + Stopped: [ libvirt-images-fs:3 libvirt-images-fs:4 libvirt-images-fs:5 libvirt-images-fs:6 libvirt-images-fs:7 libvirt-images-fs:8 ] + Clone Set: cl-libvirt-install-fs [libvirt-install-fs] + Started: [ v03-a mgmt01 v03-b ] + Stopped: [ libvirt-install-fs:3 libvirt-install-fs:4 libvirt-install-fs:5 libvirt-install-fs:6 libvirt-install-fs:7 libvirt-install-fs:8 ] + Clone Set: cl-vds-ok-pool-0-iscsi [vds-ok-pool-0-iscsi] + Started: [ v03-a mgmt01 v03-b ] + Stopped: [ vds-ok-pool-0-iscsi:3 vds-ok-pool-0-iscsi:4 vds-ok-pool-0-iscsi:5 vds-ok-pool-0-iscsi:6 vds-ok-pool-0-iscsi:7 vds-ok-pool-0-iscsi:8 ] + Clone Set: cl-vds-ok-pool-0-vg [vds-ok-pool-0-vg] + Started: [ mgmt01 v03-a v03-b ] + Stopped: [ vds-ok-pool-0-vg:3 vds-ok-pool-0-vg:4 vds-ok-pool-0-vg:5 vds-ok-pool-0-vg:6 vds-ok-pool-0-vg:7 vds-ok-pool-0-vg:8 ] + Clone Set: cl-vds-ok-pool-1-iscsi [vds-ok-pool-1-iscsi] + Started: [ mgmt01 v03-a v03-b ] + Stopped: [ vds-ok-pool-1-iscsi:3 vds-ok-pool-1-iscsi:4 vds-ok-pool-1-iscsi:5 vds-ok-pool-1-iscsi:6 vds-ok-pool-1-iscsi:7 vds-ok-pool-1-iscsi:8 ] + Clone Set: cl-vds-ok-pool-1-vg [vds-ok-pool-1-vg] + Started: [ mgmt01 v03-a v03-b ] + Stopped: [ vds-ok-pool-1-vg:3 vds-ok-pool-1-vg:4 vds-ok-pool-1-vg:5 vds-ok-pool-1-vg:6 vds-ok-pool-1-vg:7 vds-ok-pool-1-vg:8 ] + Clone Set: cl-libvirt-images-pool [libvirt-images-pool] + Started: [ v03-a v03-b ] + Stopped: [ libvirt-images-pool:2 libvirt-images-pool:3 libvirt-images-pool:4 libvirt-images-pool:5 libvirt-images-pool:6 libvirt-images-pool:7 ] + Clone Set: cl-vds-ok-pool-0-pool [vds-ok-pool-0-pool] + Started: [ v03-a v03-b ] + Stopped: [ vds-ok-pool-0-pool:2 vds-ok-pool-0-pool:3 vds-ok-pool-0-pool:4 vds-ok-pool-0-pool:5 vds-ok-pool-0-pool:6 vds-ok-pool-0-pool:7 ] + Clone Set: cl-vds-ok-pool-1-pool [vds-ok-pool-1-pool] + Started: [ v03-a v03-b ] + Stopped: [ vds-ok-pool-1-pool:2 vds-ok-pool-1-pool:3 vds-ok-pool-1-pool:4 vds-ok-pool-1-pool:5 vds-ok-pool-1-pool:6 vds-ok-pool-1-pool:7 ] + git.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + Clone Set: cl-libvirt-qpid [libvirt-qpid] + Started: [ v03-a v03-b ] + Stopped: [ libvirt-qpid:2 libvirt-qpid:3 libvirt-qpid:4 libvirt-qpid:5 libvirt-qpid:6 libvirt-qpid:7 ] + vd01-a.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-b + vd01-b.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-b + vd01-c.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-a + vd01-d.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-b + vd02-a.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd02-b.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd02-c.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd02-d.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd03-a.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd03-b.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd03-c.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd03-d.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd04-a.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd04-b.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd04-c.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vd04-d.cdev.ttc.prague.cz.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + f13-x64-devel.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-a + eu2.ca-pages.com-vm (ocf::vds-ok:VirtualDomain): Started v03-b + zakaz.transferrus.ru-vm (ocf::vds-ok:VirtualDomain): Stopped + Clone Set: cl-vlan200-if [vlan200-if] + Started: [ v03-a v03-b ] + Stopped: [ vlan200-if:2 vlan200-if:3 vlan200-if:4 vlan200-if:5 vlan200-if:6 vlan200-if:7 ] + anbriz-gw-vm (ocf::vds-ok:VirtualDomain): Stopped + anbriz-work-vm (ocf::vds-ok:VirtualDomain): Stopped + lenny-x32-devel-vm (ocf::vds-ok:VirtualDomain): Started v03-a + vptest1.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest2.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest3.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest4.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest5.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest6.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest7.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest8.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest9.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest10.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest11.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest12.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest13.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest14.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest15.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest16.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest17.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest18.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest19.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest20.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest21.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest22.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest23.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest24.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest25.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest26.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest27.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest28.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest29.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest30.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest31.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest32.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest33.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest34.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest35.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest36.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest37.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest38.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest39.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest40.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest41.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest42.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest43.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest44.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest45.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest46.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest47.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest48.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest49.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest50.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest51.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest52.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest53.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest54.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest55.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest56.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest57.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest58.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest59.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + vptest60.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Stopped + sl6-x64-devel.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-b + dist.express-consult.org-vm (ocf::vds-ok:VirtualDomain): Stopped + eu1.ca-pages.com-vm (ocf::vds-ok:VirtualDomain): Stopped + gotin-bbb-vm (ocf::vds-ok:VirtualDomain): Stopped + maxb-c55-vm (ocf::vds-ok:VirtualDomain): Stopped + metae.ru-vm (ocf::vds-ok:VirtualDomain): Stopped + rodovoepomestie.ru-vm (ocf::vds-ok:VirtualDomain): Stopped + ubuntu9.10-gotin-vm (ocf::vds-ok:VirtualDomain): Stopped + c5-x64-devel.vds-ok.com-vm (ocf::vds-ok:VirtualDomain): Started v03-a + Clone Set: cl-mcast-test-net [mcast-test-net] + Started: [ v03-a v03-b ] + Stopped: [ mcast-test-net:2 mcast-test-net:3 mcast-test-net:4 mcast-test-net:5 mcast-test-net:6 mcast-test-net:7 ] + dist.fly-uni.org-vm (ocf::vds-ok:VirtualDomain): Stopped + diff --git a/pengine/test10/placement-capacity.summary b/pengine/test10/placement-capacity.summary new file mode 100644 index 0000000000..4d58b57d1f --- /dev/null +++ b/pengine/test10/placement-capacity.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Pseudo action: load_stopped_node2 + * Pseudo action: load_stopped_node1 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/placement-location.summary b/pengine/test10/placement-location.summary new file mode 100644 index 0000000000..7a905332dc --- /dev/null +++ b/pengine/test10/placement-location.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Node node1: standby +Online: [ node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Pseudo action: load_stopped_node2 + * Pseudo action: load_stopped_node1 + * Pseudo action: all_stopped + +Revised cluster status: +Node node1: standby +Online: [ node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/placement-priority.summary b/pengine/test10/placement-priority.summary new file mode 100644 index 0000000000..5781801b00 --- /dev/null +++ b/pengine/test10/placement-priority.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Node node1: standby +Online: [ node2 ] + + rsc2 (ocf::pacemaker:Dummy): Started node2 + rsc1 (ocf::pacemaker:Dummy): Started node1 + +Transition Summary: + * Stop rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Pseudo action: load_stopped_node1 + * Pseudo action: load_stopped_node2 + * Pseudo action: all_stopped + +Revised cluster status: +Node node1: standby +Online: [ node2 ] + + rsc2 (ocf::pacemaker:Dummy): Started node2 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/placement-stickiness.summary b/pengine/test10/placement-stickiness.summary new file mode 100644 index 0000000000..7a905332dc --- /dev/null +++ b/pengine/test10/placement-stickiness.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Node node1: standby +Online: [ node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Pseudo action: load_stopped_node2 + * Pseudo action: load_stopped_node1 + * Pseudo action: all_stopped + +Revised cluster status: +Node node1: standby +Online: [ node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/probe-0.summary b/pengine/test10/probe-0.summary new file mode 100644 index 0000000000..261909134a --- /dev/null +++ b/pengine/test10/probe-0.summary @@ -0,0 +1,40 @@ + +Current cluster status: +Online: [ x32c48 x32c47 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ x32c48 x32c47 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ x32c48 x32c47 ] + Clone Set: configstorecloneset [configstoreclone] + Stopped: [ configstoreclone:0 configstoreclone:1 ] + +Transition Summary: + * Start configstoreclone:0 (x32c47) + * Start configstoreclone:1 (x32c48) + +Executing cluster transition: + * Resource action: configstoreclone:0 monitor on x32c47 + * Resource action: configstoreclone:1 monitor on x32c48 + * Pseudo action: configstorecloneset_pre_notify_start_0 + * Pseudo action: probe_complete + * Pseudo action: configstorecloneset_confirmed-pre_notify_start_0 + * Pseudo action: configstorecloneset_start_0 + * Resource action: configstoreclone:0 start on x32c47 + * Resource action: configstoreclone:1 start on x32c48 + * Pseudo action: configstorecloneset_running_0 + * Pseudo action: configstorecloneset_post_notify_running_0 + * Resource action: configstoreclone:0 notify on x32c47 + * Resource action: configstoreclone:1 notify on x32c48 + * Pseudo action: configstorecloneset_confirmed-post_notify_running_0 + +Revised cluster status: +Online: [ x32c48 x32c47 ] + + Clone Set: stonithcloneset [stonithclone] + Started: [ x32c48 x32c47 ] + Clone Set: imagestorecloneset [imagestoreclone] + Started: [ x32c48 x32c47 ] + Clone Set: configstorecloneset [configstoreclone] + Started: [ x32c47 x32c48 ] + diff --git a/pengine/test10/probe-1.summary b/pengine/test10/probe-1.summary new file mode 100644 index 0000000000..8a4d7adbd0 --- /dev/null +++ b/pengine/test10/probe-1.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ c001n05 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Stopped + +Transition Summary: + * Start DcIPaddr (c001n05) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n05 + * Pseudo action: probe_complete + * Resource action: DcIPaddr start on c001n05 + * Resource action: DcIPaddr monitor=5000 on c001n05 + +Revised cluster status: +Online: [ c001n05 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n05 + diff --git a/pengine/test10/probe-2.summary b/pengine/test10/probe-2.summary new file mode 100644 index 0000000000..bd015e0316 --- /dev/null +++ b/pengine/test10/probe-2.summary @@ -0,0 +1,162 @@ + +Current cluster status: +Node wc02 (f36760d8-d84a-46b2-b452-4c8cac8b3396): standby +Online: [ wc01 ] + + Resource Group: group_www_data + fs_www_data (ocf::heartbeat:Filesystem): Started wc01 + nfs-kernel-server (lsb:nfs-kernel-server): Started wc01 + intip_nfs (ocf::heartbeat:IPaddr2): Started wc01 + Master/Slave Set: ms_drbd_mysql [drbd_mysql] + Masters: [ wc02 ] + Slaves: [ wc01 ] + Resource Group: group_mysql + fs_mysql (ocf::heartbeat:Filesystem): Started wc02 + intip_sql (ocf::heartbeat:IPaddr2): Started wc02 + mysql-server (ocf::heartbeat:mysql): Started wc02 + Master/Slave Set: ms_drbd_www [drbd_www] + Masters: [ wc01 ] + Slaves: [ wc02 ] + Clone Set: clone_nfs-common [group_nfs-common] + Started: [ wc01 wc02 ] + Clone Set: clone_mysql-proxy [group_mysql-proxy] + Started: [ wc01 wc02 ] + Clone Set: clone_webservice [group_webservice] + Started: [ wc01 wc02 ] + Resource Group: group_ftpd + extip_ftp (ocf::heartbeat:IPaddr2): Started wc01 + pure-ftpd (ocf::heartbeat:Pure-FTPd): Started wc01 + Clone Set: DoFencing [stonith_rackpdu] (unique) + stonith_rackpdu:0 (stonith:external/rackpdu): Started wc01 + stonith_rackpdu:1 (stonith:external/rackpdu): Started wc02 + +Transition Summary: + * Promote drbd_mysql:0 (Slave -> Master wc01) + * Demote drbd_mysql:1 (Master -> Stopped wc02) + * Move fs_mysql (Started wc02 -> wc01) + * Move intip_sql (Started wc02 -> wc01) + * Move mysql-server (Started wc02 -> wc01) + * Stop drbd_www:1 (wc02) + * Stop nfs-common:1 (wc02) + * Stop mysql-proxy:1 (wc02) + * Stop fs_www:1 (wc02) + * Stop apache2:1 (wc02) + * Restart stonith_rackpdu:0 (Started wc01) + * Stop stonith_rackpdu:1 (wc02) + +Executing cluster transition: + * Resource action: drbd_mysql:0 cancel=10000 on wc01 + * Pseudo action: ms_drbd_mysql_pre_notify_demote_0 + * Pseudo action: group_mysql_stop_0 + * Resource action: mysql-server stop on wc02 + * Pseudo action: ms_drbd_www_pre_notify_stop_0 + * Pseudo action: clone_mysql-proxy_stop_0 + * Pseudo action: clone_webservice_stop_0 + * Pseudo action: DoFencing_stop_0 + * Resource action: drbd_mysql:0 notify on wc01 + * Resource action: drbd_mysql:1 notify on wc02 + * Pseudo action: ms_drbd_mysql_confirmed-pre_notify_demote_0 + * Resource action: intip_sql stop on wc02 + * Resource action: drbd_www:0 notify on wc01 + * Resource action: drbd_www:1 notify on wc02 + * Pseudo action: ms_drbd_www_confirmed-pre_notify_stop_0 + * Pseudo action: ms_drbd_www_stop_0 + * Pseudo action: group_mysql-proxy:1_stop_0 + * Resource action: mysql-proxy:1 stop on wc02 + * Pseudo action: group_webservice:1_stop_0 + * Resource action: apache2:1 stop on wc02 + * Resource action: stonith_rackpdu:0 stop on wc01 + * Resource action: fs_mysql stop on wc02 + * Resource action: drbd_www:1 stop on wc02 + * Pseudo action: ms_drbd_www_stopped_0 + * Pseudo action: group_mysql-proxy:1_stopped_0 + * Pseudo action: clone_mysql-proxy_stopped_0 + * Resource action: fs_www:1 stop on wc02 + * Pseudo action: group_mysql_stopped_0 + * Pseudo action: ms_drbd_www_post_notify_stopped_0 + * Pseudo action: group_webservice:1_stopped_0 + * Pseudo action: clone_webservice_stopped_0 + * Pseudo action: ms_drbd_mysql_demote_0 + * Resource action: drbd_www:0 notify on wc01 + * Pseudo action: ms_drbd_www_confirmed-post_notify_stopped_0 + * Pseudo action: clone_nfs-common_stop_0 + * Resource action: drbd_mysql:1 demote on wc02 + * Pseudo action: ms_drbd_mysql_demoted_0 + * Pseudo action: group_nfs-common:1_stop_0 + * Resource action: nfs-common:1 stop on wc02 + * Pseudo action: ms_drbd_mysql_post_notify_demoted_0 + * Pseudo action: group_nfs-common:1_stopped_0 + * Pseudo action: clone_nfs-common_stopped_0 + * Resource action: drbd_mysql:0 notify on wc01 + * Resource action: drbd_mysql:1 notify on wc02 + * Pseudo action: ms_drbd_mysql_confirmed-post_notify_demoted_0 + * Pseudo action: ms_drbd_mysql_pre_notify_stop_0 + * Resource action: drbd_mysql:0 notify on wc01 + * Resource action: drbd_mysql:1 notify on wc02 + * Pseudo action: ms_drbd_mysql_confirmed-pre_notify_stop_0 + * Pseudo action: ms_drbd_mysql_stop_0 + * Resource action: drbd_mysql:1 stop on wc02 + * Pseudo action: ms_drbd_mysql_stopped_0 + * Pseudo action: ms_drbd_mysql_post_notify_stopped_0 + * Resource action: drbd_mysql:0 notify on wc01 + * Pseudo action: ms_drbd_mysql_confirmed-post_notify_stopped_0 + * Pseudo action: all_stopped + * Pseudo action: ms_drbd_mysql_pre_notify_promote_0 + * Resource action: stonith_rackpdu:1 stop on wc02 + * Pseudo action: DoFencing_stopped_0 + * Pseudo action: DoFencing_start_0 + * Resource action: drbd_mysql:0 notify on wc01 + * Pseudo action: ms_drbd_mysql_confirmed-pre_notify_promote_0 + * Pseudo action: ms_drbd_mysql_promote_0 + * Resource action: stonith_rackpdu:0 start on wc01 + * Pseudo action: DoFencing_running_0 + * Resource action: drbd_mysql:0 promote on wc01 + * Pseudo action: ms_drbd_mysql_promoted_0 + * Resource action: stonith_rackpdu:0 monitor=5000 on wc01 + * Pseudo action: ms_drbd_mysql_post_notify_promoted_0 + * Resource action: drbd_mysql:0 notify on wc01 + * Pseudo action: ms_drbd_mysql_confirmed-post_notify_promoted_0 + * Pseudo action: group_mysql_start_0 + * Resource action: fs_mysql start on wc01 + * Resource action: intip_sql start on wc01 + * Resource action: mysql-server start on wc01 + * Resource action: drbd_mysql:0 monitor=5000 on wc01 + * Pseudo action: group_mysql_running_0 + * Resource action: fs_mysql monitor=30000 on wc01 + * Resource action: intip_sql monitor=30000 on wc01 + * Resource action: mysql-server monitor=30000 on wc01 + +Revised cluster status: +Node wc02 (f36760d8-d84a-46b2-b452-4c8cac8b3396): standby +Online: [ wc01 ] + + Resource Group: group_www_data + fs_www_data (ocf::heartbeat:Filesystem): Started wc01 + nfs-kernel-server (lsb:nfs-kernel-server): Started wc01 + intip_nfs (ocf::heartbeat:IPaddr2): Started wc01 + Master/Slave Set: ms_drbd_mysql [drbd_mysql] + Masters: [ wc01 ] + Stopped: [ drbd_mysql:1 ] + Resource Group: group_mysql + fs_mysql (ocf::heartbeat:Filesystem): Started wc01 + intip_sql (ocf::heartbeat:IPaddr2): Started wc01 + mysql-server (ocf::heartbeat:mysql): Started wc01 + Master/Slave Set: ms_drbd_www [drbd_www] + Masters: [ wc01 ] + Stopped: [ drbd_www:1 ] + Clone Set: clone_nfs-common [group_nfs-common] + Started: [ wc01 ] + Stopped: [ group_nfs-common:1 ] + Clone Set: clone_mysql-proxy [group_mysql-proxy] + Started: [ wc01 ] + Stopped: [ group_mysql-proxy:1 ] + Clone Set: clone_webservice [group_webservice] + Started: [ wc01 ] + Stopped: [ group_webservice:1 ] + Resource Group: group_ftpd + extip_ftp (ocf::heartbeat:IPaddr2): Started wc01 + pure-ftpd (ocf::heartbeat:Pure-FTPd): Started wc01 + Clone Set: DoFencing [stonith_rackpdu] (unique) + stonith_rackpdu:0 (stonith:external/rackpdu): Started wc01 + stonith_rackpdu:1 (stonith:external/rackpdu): Stopped + diff --git a/pengine/test10/probe-3.summary b/pengine/test10/probe-3.summary new file mode 100644 index 0000000000..2127d456e3 --- /dev/null +++ b/pengine/test10/probe-3.summary @@ -0,0 +1,55 @@ + +Current cluster status: +Node pcmk-4: pending +Online: [ pcmk-1 pcmk-2 pcmk-3 ] + + Resource Group: group-1 + r192.168.101.181 (ocf::heartbeat:IPaddr): Started pcmk-1 + r192.168.101.182 (heartbeat:IPaddr): Started pcmk-1 + r192.168.101.183 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-2 + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Started pcmk-1 + migrator (ocf::pacemaker:Dummy): Started pcmk-3 + Clone Set: Connectivity [ping-1] + Started: [ pcmk-1 pcmk-2 pcmk-3 ] + Stopped: [ ping-1:3 ] + Master/Slave Set: master-1 [stateful-1] + Masters: [ pcmk-1 ] + Slaves: [ pcmk-2 pcmk-3 ] + Stopped: [ stateful-1:3 ] + Clone Set: Fencing [FencingChild] + Started: [ pcmk-3 pcmk-2 pcmk-1 ] + Stopped: [ FencingChild:1 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Node pcmk-4: pending +Online: [ pcmk-1 pcmk-2 pcmk-3 ] + + Resource Group: group-1 + r192.168.101.181 (ocf::heartbeat:IPaddr): Started pcmk-1 + r192.168.101.182 (heartbeat:IPaddr): Started pcmk-1 + r192.168.101.183 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-2 + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Started pcmk-1 + migrator (ocf::pacemaker:Dummy): Started pcmk-3 + Clone Set: Connectivity [ping-1] + Started: [ pcmk-1 pcmk-2 pcmk-3 ] + Stopped: [ ping-1:3 ] + Master/Slave Set: master-1 [stateful-1] + Masters: [ pcmk-1 ] + Slaves: [ pcmk-2 pcmk-3 ] + Stopped: [ stateful-1:3 ] + Clone Set: Fencing [FencingChild] + Started: [ pcmk-3 pcmk-2 pcmk-1 ] + Stopped: [ FencingChild:1 ] + diff --git a/pengine/test10/probe-4.summary b/pengine/test10/probe-4.summary new file mode 100644 index 0000000000..432abddb2e --- /dev/null +++ b/pengine/test10/probe-4.summary @@ -0,0 +1,58 @@ + +Current cluster status: +Node pcmk-4: pending +Online: [ pcmk-1 pcmk-2 pcmk-3 ] + + Resource Group: group-1 + r192.168.101.181 (ocf::heartbeat:IPaddr): Started pcmk-1 + r192.168.101.182 (heartbeat:IPaddr): Started pcmk-1 + r192.168.101.183 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-2 + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Started pcmk-1 + migrator (ocf::pacemaker:Dummy): Stopped + Clone Set: Connectivity [ping-1] + Started: [ pcmk-1 pcmk-2 pcmk-3 ] + Stopped: [ ping-1:3 ] + Master/Slave Set: master-1 [stateful-1] + Masters: [ pcmk-1 ] + Slaves: [ pcmk-2 pcmk-3 ] + Stopped: [ stateful-1:3 ] + Clone Set: Fencing [FencingChild] + Started: [ pcmk-3 pcmk-2 pcmk-1 ] + Stopped: [ FencingChild:1 ] + +Transition Summary: + * Start migrator (pcmk-3) + +Executing cluster transition: +Transition failed: terminated +An invalid transition was produced + +Revised cluster status: +Node pcmk-4: pending +Online: [ pcmk-1 pcmk-2 pcmk-3 ] + + Resource Group: group-1 + r192.168.101.181 (ocf::heartbeat:IPaddr): Started pcmk-1 + r192.168.101.182 (heartbeat:IPaddr): Started pcmk-1 + r192.168.101.183 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-2 + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Started pcmk-1 + migrator (ocf::pacemaker:Dummy): Stopped + Clone Set: Connectivity [ping-1] + Started: [ pcmk-1 pcmk-2 pcmk-3 ] + Stopped: [ ping-1:3 ] + Master/Slave Set: master-1 [stateful-1] + Masters: [ pcmk-1 ] + Slaves: [ pcmk-2 pcmk-3 ] + Stopped: [ stateful-1:3 ] + Clone Set: Fencing [FencingChild] + Started: [ pcmk-3 pcmk-2 pcmk-1 ] + Stopped: [ FencingChild:1 ] + diff --git a/pengine/test10/quorum-1.summary b/pengine/test10/quorum-1.summary new file mode 100644 index 0000000000..94d0ec04bb --- /dev/null +++ b/pengine/test10/quorum-1.summary @@ -0,0 +1,30 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + +Transition Summary: + * Move rsc2 (Started node1 -> node2) + * Start rsc3 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc2 stop on node1 + * Resource action: rsc3 start on node1 + * Pseudo action: all_stopped + * Resource action: rsc2 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/quorum-2.summary b/pengine/test10/quorum-2.summary new file mode 100644 index 0000000000..0a40caac52 --- /dev/null +++ b/pengine/test10/quorum-2.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + +Transition Summary: + * Move rsc2 (Started node1 -> node2) + * Start rsc3 (node1 - blocked) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc2 stop on node1 + * Pseudo action: all_stopped + * Resource action: rsc2 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Stopped + diff --git a/pengine/test10/quorum-3.summary b/pengine/test10/quorum-3.summary new file mode 100644 index 0000000000..0252d7eb0d --- /dev/null +++ b/pengine/test10/quorum-3.summary @@ -0,0 +1,30 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + +Transition Summary: + * Stop rsc1 (Started node1) + * Move rsc2 (Started node1 -> node2) + * Start rsc3 (node1 - blocked) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 stop on node1 + * Resource action: rsc2 stop on node1 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + rsc3 (heartbeat:apache): Stopped + diff --git a/pengine/test10/quorum-4.summary b/pengine/test10/quorum-4.summary new file mode 100644 index 0000000000..bba6998098 --- /dev/null +++ b/pengine/test10/quorum-4.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Node hadev1 (6125a0df-456a-4395-829a-418e9a380d36): UNCLEAN (offline) +Node hadev3 (879e65f8-4b38-4c56-9552-4752ad436669): UNCLEAN (offline) +Online: [ hadev2 ] + + child_DoFencing (stonith:ssh): Stopped + +Transition Summary: + * Start child_DoFencing (hadev2) + +Executing cluster transition: + * Resource action: child_DoFencing monitor on hadev2 + * Pseudo action: probe_complete + * Resource action: child_DoFencing start on hadev2 + * Resource action: child_DoFencing monitor=5000 on hadev2 + +Revised cluster status: +Node hadev1 (6125a0df-456a-4395-829a-418e9a380d36): UNCLEAN (offline) +Node hadev3 (879e65f8-4b38-4c56-9552-4752ad436669): UNCLEAN (offline) +Online: [ hadev2 ] + + child_DoFencing (stonith:ssh): Started hadev2 + diff --git a/pengine/test10/quorum-5.summary b/pengine/test10/quorum-5.summary new file mode 100644 index 0000000000..778d075932 --- /dev/null +++ b/pengine/test10/quorum-5.summary @@ -0,0 +1,34 @@ + +Current cluster status: +Node hadev1 (6125a0df-456a-4395-829a-418e9a380d36): UNCLEAN (offline) +Node hadev3 (879e65f8-4b38-4c56-9552-4752ad436669): UNCLEAN (offline) +Online: [ hadev2 ] + + Resource Group: group1 + child_DoFencing_1 (stonith:ssh): Stopped + child_DoFencing_2 (stonith:ssh): Stopped + +Transition Summary: + * Start child_DoFencing_1 (hadev2) + * Start child_DoFencing_2 (hadev2) + +Executing cluster transition: + * Pseudo action: group1_start_0 + * Resource action: child_DoFencing_1 monitor on hadev2 + * Resource action: child_DoFencing_2 monitor on hadev2 + * Pseudo action: probe_complete + * Resource action: child_DoFencing_1 start on hadev2 + * Resource action: child_DoFencing_2 start on hadev2 + * Pseudo action: group1_running_0 + * Resource action: child_DoFencing_1 monitor=5000 on hadev2 + * Resource action: child_DoFencing_2 monitor=5000 on hadev2 + +Revised cluster status: +Node hadev1 (6125a0df-456a-4395-829a-418e9a380d36): UNCLEAN (offline) +Node hadev3 (879e65f8-4b38-4c56-9552-4752ad436669): UNCLEAN (offline) +Online: [ hadev2 ] + + Resource Group: group1 + child_DoFencing_1 (stonith:ssh): Started hadev2 + child_DoFencing_2 (stonith:ssh): Started hadev2 + diff --git a/pengine/test10/quorum-6.summary b/pengine/test10/quorum-6.summary new file mode 100644 index 0000000000..bc8b7a9e0b --- /dev/null +++ b/pengine/test10/quorum-6.summary @@ -0,0 +1,49 @@ + +Current cluster status: +Node hadev1 (6125a0df-456a-4395-829a-418e9a380d36): UNCLEAN (offline) +Node hadev3 (879e65f8-4b38-4c56-9552-4752ad436669): UNCLEAN (offline) +Online: [ hadev2 ] + + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Stopped + child_DoFencing:1 (stonith:ssh): Stopped + child_DoFencing:2 (stonith:ssh): Stopped + child_DoFencing:3 (stonith:ssh): Stopped + child_DoFencing:4 (stonith:ssh): Stopped + child_DoFencing:5 (stonith:ssh): Stopped + child_DoFencing:6 (stonith:ssh): Stopped + child_DoFencing:7 (stonith:ssh): Stopped + +Transition Summary: + * Start child_DoFencing:0 (hadev2) + +Executing cluster transition: + * Resource action: child_DoFencing:0 monitor on hadev2 + * Resource action: child_DoFencing:1 monitor on hadev2 + * Resource action: child_DoFencing:2 monitor on hadev2 + * Resource action: child_DoFencing:3 monitor on hadev2 + * Resource action: child_DoFencing:4 monitor on hadev2 + * Resource action: child_DoFencing:5 monitor on hadev2 + * Resource action: child_DoFencing:6 monitor on hadev2 + * Resource action: child_DoFencing:7 monitor on hadev2 + * Pseudo action: DoFencing_start_0 + * Pseudo action: probe_complete + * Resource action: child_DoFencing:0 start on hadev2 + * Pseudo action: DoFencing_running_0 + * Resource action: child_DoFencing:0 monitor=5000 on hadev2 + +Revised cluster status: +Node hadev1 (6125a0df-456a-4395-829a-418e9a380d36): UNCLEAN (offline) +Node hadev3 (879e65f8-4b38-4c56-9552-4752ad436669): UNCLEAN (offline) +Online: [ hadev2 ] + + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started hadev2 + child_DoFencing:1 (stonith:ssh): Stopped + child_DoFencing:2 (stonith:ssh): Stopped + child_DoFencing:3 (stonith:ssh): Stopped + child_DoFencing:4 (stonith:ssh): Stopped + child_DoFencing:5 (stonith:ssh): Stopped + child_DoFencing:6 (stonith:ssh): Stopped + child_DoFencing:7 (stonith:ssh): Stopped + diff --git a/pengine/test10/rec-node-1.summary b/pengine/test10/rec-node-1.summary new file mode 100644 index 0000000000..41db7fc829 --- /dev/null +++ b/pengine/test10/rec-node-1.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node2) + * Start rsc2 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + +Revised cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + rsc1 (heartbeat:apache): Started node2 + rsc2 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/rec-node-10.summary b/pengine/test10/rec-node-10.summary new file mode 100644 index 0000000000..e6fed5b64d --- /dev/null +++ b/pengine/test10/rec-node-10.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Node node1 (uuid1): UNCLEAN (offline) +Online: [ node2 ] + + stonith-1 (stonith:dummy): Stopped + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + +Transition Summary: + * Start stonith-1 (node2) + * Move rsc1 (Started node1 -> node2) + * Move rsc2 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: stonith-1 monitor on node2 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Pseudo action: probe_complete + * Resource action: stonith-1 start on node2 + +Revised cluster status: +Node node1 (uuid1): UNCLEAN (offline) +Online: [ node2 ] + + stonith-1 (stonith:dummy): Started node2 + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/rec-node-11.summary b/pengine/test10/rec-node-11.summary new file mode 100644 index 0000000000..aa63bea07e --- /dev/null +++ b/pengine/test10/rec-node-11.summary @@ -0,0 +1,48 @@ + +Current cluster status: +Node node1 (uuid1): UNCLEAN (online) +Online: [ node2 ] + + stonith-1 (stonith:dummy): Stopped + Resource Group: group1 + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Started node2 + +Transition Summary: + * Start stonith-1 (node2) + * Move rsc1 (Started node1 -> node2) + * Move rsc2 (Started node1 -> node2) + * Restart rsc3 (Started node2) + +Executing cluster transition: + * Resource action: stonith-1 monitor on node2 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Pseudo action: probe_complete + * Resource action: stonith-1 start on node2 + * Pseudo action: stonith_up + * Fencing node1 + * Pseudo action: stonith_complete + * Pseudo action: group1_stop_0 + * Pseudo action: rsc2_stop_0 + * Pseudo action: rsc1_stop_0 + * Pseudo action: group1_stopped_0 + * Resource action: rsc3 stop on node2 + * Pseudo action: all_stopped + * Resource action: rsc3 start on node2 + * Pseudo action: group1_start_0 + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + * Pseudo action: group1_running_0 + +Revised cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + stonith-1 (stonith:dummy): Started node2 + Resource Group: group1 + rsc1 (heartbeat:apache): Started node2 + rsc2 (heartbeat:apache): Started node2 + rsc3 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/rec-node-12.summary b/pengine/test10/rec-node-12.summary new file mode 100644 index 0000000000..4be832aaed --- /dev/null +++ b/pengine/test10/rec-node-12.summary @@ -0,0 +1,93 @@ + +Current cluster status: +Node c001n02 (e9bdfde9-01b0-421f-acd8-8a65a53e775f): UNCLEAN (offline) +Online: [ c001n08 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Stopped + rsc_c001n08 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n02 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n03 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n01 (ocf::heartbeat:IPaddr): Stopped + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Stopped + child_DoFencing:1 (stonith:ssh): Stopped + child_DoFencing:2 (stonith:ssh): Stopped + child_DoFencing:3 (stonith:ssh): Stopped + +Transition Summary: + * Start DcIPaddr (c001n08) + * Start rsc_c001n08 (c001n08) + * Start rsc_c001n02 (c001n01) + * Start rsc_c001n03 (c001n03) + * Start rsc_c001n01 (c001n01) + * Start child_DoFencing:0 (c001n03) + * Start child_DoFencing:1 (c001n01) + * Start child_DoFencing:2 (c001n08) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n01 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: rsc_c001n08 monitor on c001n01 + * Resource action: rsc_c001n08 monitor on c001n03 + * Resource action: rsc_c001n08 monitor on c001n08 + * Resource action: rsc_c001n02 monitor on c001n01 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n03 monitor on c001n01 + * Resource action: rsc_c001n03 monitor on c001n03 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n01 monitor on c001n01 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: rsc_c001n01 monitor on c001n08 + * Resource action: child_DoFencing:0 monitor on c001n01 + * Resource action: child_DoFencing:0 monitor on c001n03 + * Resource action: child_DoFencing:0 monitor on c001n08 + * Resource action: child_DoFencing:1 monitor on c001n01 + * Resource action: child_DoFencing:1 monitor on c001n03 + * Resource action: child_DoFencing:1 monitor on c001n08 + * Resource action: child_DoFencing:2 monitor on c001n01 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n08 + * Resource action: child_DoFencing:3 monitor on c001n01 + * Resource action: child_DoFencing:3 monitor on c001n03 + * Resource action: child_DoFencing:3 monitor on c001n08 + * Pseudo action: DoFencing_start_0 + * Pseudo action: probe_complete + * Resource action: child_DoFencing:0 start on c001n03 + * Resource action: child_DoFencing:1 start on c001n01 + * Resource action: child_DoFencing:2 start on c001n08 + * Pseudo action: DoFencing_running_0 + * Pseudo action: stonith_up + * Resource action: child_DoFencing:0 monitor=5000 on c001n03 + * Resource action: child_DoFencing:1 monitor=5000 on c001n01 + * Resource action: child_DoFencing:2 monitor=5000 on c001n08 + * Fencing c001n02 + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + * Resource action: DcIPaddr start on c001n08 + * Resource action: rsc_c001n08 start on c001n08 + * Resource action: rsc_c001n02 start on c001n01 + * Resource action: rsc_c001n03 start on c001n03 + * Resource action: rsc_c001n01 start on c001n01 + * Resource action: DcIPaddr monitor=5000 on c001n08 + * Resource action: rsc_c001n08 monitor=5000 on c001n08 + * Resource action: rsc_c001n02 monitor=5000 on c001n01 + * Resource action: rsc_c001n03 monitor=5000 on c001n03 + * Resource action: rsc_c001n01 monitor=5000 on c001n01 + +Revised cluster status: +Online: [ c001n08 c001n03 c001n01 ] +OFFLINE: [ c001n02 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n01 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n03 + child_DoFencing:1 (stonith:ssh): Started c001n01 + child_DoFencing:2 (stonith:ssh): Started c001n08 + child_DoFencing:3 (stonith:ssh): Stopped + diff --git a/pengine/test10/rec-node-13.summary b/pengine/test10/rec-node-13.summary new file mode 100644 index 0000000000..ff2d62fe67 --- /dev/null +++ b/pengine/test10/rec-node-13.summary @@ -0,0 +1,80 @@ + +Current cluster status: +Node c001n04 (9e080e6d-7a25-4dac-be89-f6f4f128623d): UNCLEAN (online) +Online: [ c001n02 c001n06 c001n07 ] +OFFLINE: [ c001n03 c001n05 ] + + Clone Set: DoFencing [child_DoFencing] + Started: [ c001n02 c001n06 c001n07 ] + Stopped: [ child_DoFencing:0 child_DoFencing:1 child_DoFencing:2 ] + DcIPaddr (ocf::heartbeat:IPaddr): Stopped + Resource Group: group-1 + ocf_192.168.100.181 (ocf::heartbeat:IPaddr): Started c001n02 + heartbeat_192.168.100.182 (heartbeat:IPaddr): Started c001n02 + ocf_192.168.100.183 (ocf::heartbeat:IPaddr): Started c001n02 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n06 + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n06 + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Master c001n02 + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n04 FAILED + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:8 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n06 + ocf_msdummy:9 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n07 + ocf_msdummy:10 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n06 + ocf_msdummy:11 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n07 + +Transition Summary: + * Stop ocf_msdummy:6 (c001n04) + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing c001n04 + * Pseudo action: stonith_complete + * Pseudo action: master_rsc_1_stop_0 + * Pseudo action: ocf_msdummy:6_stop_0 + * Pseudo action: master_rsc_1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ c001n02 c001n06 c001n07 ] +OFFLINE: [ c001n03 c001n04 c001n05 ] + + Clone Set: DoFencing [child_DoFencing] + Started: [ c001n02 c001n06 c001n07 ] + Stopped: [ child_DoFencing:0 child_DoFencing:1 child_DoFencing:2 ] + DcIPaddr (ocf::heartbeat:IPaddr): Stopped + Resource Group: group-1 + ocf_192.168.100.181 (ocf::heartbeat:IPaddr): Started c001n02 + heartbeat_192.168.100.182 (heartbeat:IPaddr): Started c001n02 + ocf_192.168.100.183 (ocf::heartbeat:IPaddr): Started c001n02 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n06 + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n06 + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Master c001n02 + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:8 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n06 + ocf_msdummy:9 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n07 + ocf_msdummy:10 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n06 + ocf_msdummy:11 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n07 + diff --git a/pengine/test10/rec-node-14.summary b/pengine/test10/rec-node-14.summary new file mode 100644 index 0000000000..2fcee986f5 --- /dev/null +++ b/pengine/test10/rec-node-14.summary @@ -0,0 +1,25 @@ + +Current cluster status: +Node node1 (uuid1): UNCLEAN (offline) +Node node2 (uuid2): UNCLEAN (offline) +Node node3 (uuid3): UNCLEAN (offline) + + stonith-1 (stonith:dummy): Stopped + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Stopped + +Transition Summary: + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing node1 + * Fencing node3 + * Fencing node2 + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + +Revised cluster status: +OFFLINE: [ node1 node2 node3 ] + + stonith-1 (stonith:dummy): Stopped + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Stopped + diff --git a/pengine/test10/rec-node-15.summary b/pengine/test10/rec-node-15.summary new file mode 100644 index 0000000000..b98e95d910 --- /dev/null +++ b/pengine/test10/rec-node-15.summary @@ -0,0 +1,89 @@ + +Current cluster status: +Node sapcl03 (0bfb78a2-fcd2-4f52-8a06-2d17437a6750): UNCLEAN (offline) +Node sapcl02 (09fa194c-d7e1-41fa-a0d0-afd79a139181): standby +Online: [ sapcl01 ] + + stonith-1 (stonith:dummy): Stopped + Resource Group: app01 + IPaddr_192_168_1_101 (ocf::heartbeat:IPaddr): Started sapcl01 + LVM_2 (ocf::heartbeat:LVM): Started sapcl01 + Filesystem_3 (ocf::heartbeat:Filesystem): Started sapcl01 + Resource Group: app02 + IPaddr_192_168_1_102 (ocf::heartbeat:IPaddr): Started sapcl02 + LVM_12 (ocf::heartbeat:LVM): Started sapcl02 + Filesystem_13 (ocf::heartbeat:Filesystem): Started sapcl02 + Resource Group: oracle + IPaddr_192_168_1_104 (ocf::heartbeat:IPaddr): Stopped + LVM_22 (ocf::heartbeat:LVM): Stopped + Filesystem_23 (ocf::heartbeat:Filesystem): Stopped + oracle_24 (ocf::heartbeat:oracle): Stopped + oralsnr_25 (ocf::heartbeat:oralsnr): Stopped + +Transition Summary: + * Start stonith-1 (sapcl01) + * Move IPaddr_192_168_1_102 (Started sapcl02 -> sapcl01) + * Move LVM_12 (Started sapcl02 -> sapcl01) + * Move Filesystem_13 (Started sapcl02 -> sapcl01) + * Start IPaddr_192_168_1_104 (sapcl01) + * Start LVM_22 (sapcl01) + * Start Filesystem_23 (sapcl01) + * Start oracle_24 (sapcl01) + * Start oralsnr_25 (sapcl01) + +Executing cluster transition: + * Resource action: stonith-1 monitor on sapcl01 + * Resource action: stonith-1 monitor on sapcl02 + * Pseudo action: app02_stop_0 + * Pseudo action: oracle_start_0 + * Pseudo action: probe_complete + * Resource action: stonith-1 start on sapcl01 + * Resource action: Filesystem_13 stop on sapcl02 + * Pseudo action: stonith_up + * Resource action: LVM_12 stop on sapcl02 + * Fencing sapcl03 + * Pseudo action: stonith_complete + * Resource action: IPaddr_192_168_1_102 stop on sapcl02 + * Resource action: IPaddr_192_168_1_104 start on sapcl01 + * Resource action: LVM_22 start on sapcl01 + * Resource action: Filesystem_23 start on sapcl01 + * Resource action: oracle_24 start on sapcl01 + * Resource action: oralsnr_25 start on sapcl01 + * Pseudo action: all_stopped + * Pseudo action: app02_stopped_0 + * Pseudo action: app02_start_0 + * Resource action: IPaddr_192_168_1_102 start on sapcl01 + * Resource action: LVM_12 start on sapcl01 + * Resource action: Filesystem_13 start on sapcl01 + * Pseudo action: oracle_running_0 + * Resource action: IPaddr_192_168_1_104 monitor=5000 on sapcl01 + * Resource action: LVM_22 monitor=120000 on sapcl01 + * Resource action: Filesystem_23 monitor=120000 on sapcl01 + * Resource action: oracle_24 monitor=120000 on sapcl01 + * Resource action: oralsnr_25 monitor=120000 on sapcl01 + * Pseudo action: app02_running_0 + * Resource action: IPaddr_192_168_1_102 monitor=5000 on sapcl01 + * Resource action: LVM_12 monitor=120000 on sapcl01 + * Resource action: Filesystem_13 monitor=120000 on sapcl01 + +Revised cluster status: +Node sapcl02 (09fa194c-d7e1-41fa-a0d0-afd79a139181): standby +Online: [ sapcl01 ] +OFFLINE: [ sapcl03 ] + + stonith-1 (stonith:dummy): Started sapcl01 + Resource Group: app01 + IPaddr_192_168_1_101 (ocf::heartbeat:IPaddr): Started sapcl01 + LVM_2 (ocf::heartbeat:LVM): Started sapcl01 + Filesystem_3 (ocf::heartbeat:Filesystem): Started sapcl01 + Resource Group: app02 + IPaddr_192_168_1_102 (ocf::heartbeat:IPaddr): Started sapcl01 + LVM_12 (ocf::heartbeat:LVM): Started sapcl01 + Filesystem_13 (ocf::heartbeat:Filesystem): Started sapcl01 + Resource Group: oracle + IPaddr_192_168_1_104 (ocf::heartbeat:IPaddr): Started sapcl01 + LVM_22 (ocf::heartbeat:LVM): Started sapcl01 + Filesystem_23 (ocf::heartbeat:Filesystem): Started sapcl01 + oracle_24 (ocf::heartbeat:oracle): Started sapcl01 + oralsnr_25 (ocf::heartbeat:oralsnr): Started sapcl01 + diff --git a/pengine/test10/rec-node-2.summary b/pengine/test10/rec-node-2.summary new file mode 100644 index 0000000000..1117302847 --- /dev/null +++ b/pengine/test10/rec-node-2.summary @@ -0,0 +1,63 @@ + +Current cluster status: +Node node1 (uuid1): UNCLEAN (offline) +Online: [ node2 ] + + stonith-1 (stonith:dummy): Stopped + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + Resource Group: group1 + rsc3 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Stopped + Resource Group: group2 + rsc5 (heartbeat:apache): Stopped + rsc6 (heartbeat:apache): Stopped + +Transition Summary: + * Start stonith-1 (node2) + * Start rsc1 (node2) + * Start rsc2 (node2) + * Start rsc3 (node2) + * Start rsc4 (node2) + * Start rsc5 (node2) + * Start rsc6 (node2) + +Executing cluster transition: + * Resource action: stonith-1 monitor on node2 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Pseudo action: group1_start_0 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc4 monitor on node2 + * Pseudo action: group2_start_0 + * Resource action: rsc5 monitor on node2 + * Resource action: rsc6 monitor on node2 + * Pseudo action: probe_complete + * Resource action: stonith-1 start on node2 + * Pseudo action: stonith_up + * Fencing node1 + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + * Resource action: rsc3 start on node2 + * Resource action: rsc4 start on node2 + * Resource action: rsc5 start on node2 + * Resource action: rsc6 start on node2 + * Pseudo action: group1_running_0 + * Pseudo action: group2_running_0 + +Revised cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + stonith-1 (stonith:dummy): Started node2 + rsc1 (heartbeat:apache): Started node2 + rsc2 (heartbeat:apache): Started node2 + Resource Group: group1 + rsc3 (heartbeat:apache): Started node2 + rsc4 (heartbeat:apache): Started node2 + Resource Group: group2 + rsc5 (heartbeat:apache): Started node2 + rsc6 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/rec-node-3.summary b/pengine/test10/rec-node-3.summary new file mode 100644 index 0000000000..41db7fc829 --- /dev/null +++ b/pengine/test10/rec-node-3.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node2) + * Start rsc2 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + +Revised cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + rsc1 (heartbeat:apache): Started node2 + rsc2 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/rec-node-4.summary b/pengine/test10/rec-node-4.summary new file mode 100644 index 0000000000..1745f9d0fe --- /dev/null +++ b/pengine/test10/rec-node-4.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Node node1 (uuid1): UNCLEAN (offline) +Online: [ node2 ] + + stonith-1 (stonith:dummy): Stopped + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + +Transition Summary: + * Start stonith-1 (node2) + * Move rsc1 (Started node1 -> node2) + * Move rsc2 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: stonith-1 monitor on node2 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Pseudo action: probe_complete + * Resource action: stonith-1 start on node2 + * Pseudo action: stonith_up + * Fencing node1 + * Pseudo action: stonith_complete + * Pseudo action: rsc1_stop_0 + * Pseudo action: rsc2_stop_0 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + +Revised cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + stonith-1 (stonith:dummy): Started node2 + rsc1 (heartbeat:apache): Started node2 + rsc2 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/rec-node-5.summary b/pengine/test10/rec-node-5.summary new file mode 100644 index 0000000000..8db22b0a6d --- /dev/null +++ b/pengine/test10/rec-node-5.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Node node1 (uuid1): UNCLEAN (offline) +Online: [ node2 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node2) + * Start rsc2 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + +Revised cluster status: +Node node1 (uuid1): UNCLEAN (offline) +Online: [ node2 ] + + rsc1 (heartbeat:apache): Started node2 + rsc2 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/rec-node-6.summary b/pengine/test10/rec-node-6.summary new file mode 100644 index 0000000000..8e3d447bb9 --- /dev/null +++ b/pengine/test10/rec-node-6.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Node node1 (uuid1): UNCLEAN (online) +Online: [ node2 ] + + stonith-1 (stonith:dummy): Stopped + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + +Transition Summary: + * Start stonith-1 (node2) + * Move rsc1 (Started node1 -> node2) + * Move rsc2 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: stonith-1 monitor on node2 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Pseudo action: probe_complete + * Resource action: stonith-1 start on node2 + * Pseudo action: stonith_up + * Fencing node1 + * Pseudo action: stonith_complete + * Pseudo action: rsc1_stop_0 + * Pseudo action: rsc2_stop_0 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + +Revised cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + stonith-1 (stonith:dummy): Started node2 + rsc1 (heartbeat:apache): Started node2 + rsc2 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/rec-node-7.summary b/pengine/test10/rec-node-7.summary new file mode 100644 index 0000000000..1745f9d0fe --- /dev/null +++ b/pengine/test10/rec-node-7.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Node node1 (uuid1): UNCLEAN (offline) +Online: [ node2 ] + + stonith-1 (stonith:dummy): Stopped + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + +Transition Summary: + * Start stonith-1 (node2) + * Move rsc1 (Started node1 -> node2) + * Move rsc2 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: stonith-1 monitor on node2 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Pseudo action: probe_complete + * Resource action: stonith-1 start on node2 + * Pseudo action: stonith_up + * Fencing node1 + * Pseudo action: stonith_complete + * Pseudo action: rsc1_stop_0 + * Pseudo action: rsc2_stop_0 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + +Revised cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + stonith-1 (stonith:dummy): Started node2 + rsc1 (heartbeat:apache): Started node2 + rsc2 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/rec-node-8.summary b/pengine/test10/rec-node-8.summary new file mode 100644 index 0000000000..9eeb124ac5 --- /dev/null +++ b/pengine/test10/rec-node-8.summary @@ -0,0 +1,33 @@ + +Current cluster status: +Node node1 (uuid1): UNCLEAN (offline) +Online: [ node2 ] + + stonith-1 (stonith:dummy): Stopped + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + +Transition Summary: + * Start stonith-1 (node2) + * Move rsc1 (Started node1 -> node2) + * Move rsc2 (Started node1 -> node2) + * Start rsc3 (node2 - blocked) + +Executing cluster transition: + * Resource action: stonith-1 monitor on node2 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc3 monitor on node2 + * Pseudo action: probe_complete + * Resource action: stonith-1 start on node2 + +Revised cluster status: +Node node1 (uuid1): UNCLEAN (offline) +Online: [ node2 ] + + stonith-1 (stonith:dummy): Started node2 + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + diff --git a/pengine/test10/rec-node-9.summary b/pengine/test10/rec-node-9.summary new file mode 100644 index 0000000000..8e7742c552 --- /dev/null +++ b/pengine/test10/rec-node-9.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node2 - blocked) + * Start rsc2 (node2 - blocked) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + diff --git a/pengine/test10/rec-rsc-0.summary b/pengine/test10/rec-rsc-0.summary new file mode 100644 index 0000000000..6c49b376fb --- /dev/null +++ b/pengine/test10/rec-rsc-0.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache) Started FAILED[ node1 node2 ] + +Transition Summary: + * Stop rsc1 (node1) + * Stop rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Resource action: rsc1 stop on node1 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + diff --git a/pengine/test10/rec-rsc-1.summary b/pengine/test10/rec-rsc-1.summary new file mode 100644 index 0000000000..04f5fa2ddf --- /dev/null +++ b/pengine/test10/rec-rsc-1.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 FAILED + +Transition Summary: + * Move rsc1 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Pseudo action: probe_complete + * Resource action: rsc1 stop on node1 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/rec-rsc-2.summary b/pengine/test10/rec-rsc-2.summary new file mode 100644 index 0000000000..45ac5bac25 --- /dev/null +++ b/pengine/test10/rec-rsc-2.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 FAILED + +Transition Summary: + * Recover rsc1 (Started node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Pseudo action: probe_complete + * Resource action: rsc1 stop on node1 + * Resource action: rsc1 cancel=1 on node1 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/rec-rsc-3.summary b/pengine/test10/rec-rsc-3.summary new file mode 100644 index 0000000000..7604f7d8ca --- /dev/null +++ b/pengine/test10/rec-rsc-3.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped (failure ignored) + +Transition Summary: + * Start rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 (failure ignored) + diff --git a/pengine/test10/rec-rsc-4.summary b/pengine/test10/rec-rsc-4.summary new file mode 100644 index 0000000000..fc0b8bf4ef --- /dev/null +++ b/pengine/test10/rec-rsc-4.summary @@ -0,0 +1,17 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node2 (unmanaged) FAILED + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node2 (unmanaged) FAILED + diff --git a/pengine/test10/rec-rsc-5.summary b/pengine/test10/rec-rsc-5.summary new file mode 100644 index 0000000000..2d74c8fb6a --- /dev/null +++ b/pengine/test10/rec-rsc-5.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Node node2 (uuid2): UNCLEAN (online) +Online: [ node1 ] + + stonith-1 (stonith:dummy): Stopped + rsc1 (heartbeat:apache): Started node2 FAILED + rsc2 (heartbeat:apache): Started node2 + +Transition Summary: + * Start stonith-1 (node1) + * Move rsc1 (Started node2 -> node1) + * Move rsc2 (Started node2 -> node1) + +Executing cluster transition: + * Resource action: stonith-1 monitor on node1 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node1 + * Pseudo action: probe_complete + * Resource action: stonith-1 start on node1 + * Pseudo action: stonith_up + * Fencing node2 + * Pseudo action: stonith_complete + * Pseudo action: rsc1_stop_0 + * Pseudo action: rsc2_stop_0 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node1 + +Revised cluster status: +Online: [ node1 ] +OFFLINE: [ node2 ] + + stonith-1 (stonith:dummy): Started node1 + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/rec-rsc-6.summary b/pengine/test10/rec-rsc-6.summary new file mode 100644 index 0000000000..f5d5a10ebe --- /dev/null +++ b/pengine/test10/rec-rsc-6.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache) Started [ node1 node2 ] + +Transition Summary: + * Restart rsc1 (Started node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Resource action: rsc1 stop on node1 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/rec-rsc-7.summary b/pengine/test10/rec-rsc-7.summary new file mode 100644 index 0000000000..f600367536 --- /dev/null +++ b/pengine/test10/rec-rsc-7.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache) Started [ node1 node2 ] + +Transition Summary: + * Stop rsc1 (node1) + * Stop rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Resource action: rsc1 stop on node1 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + diff --git a/pengine/test10/rec-rsc-8.summary b/pengine/test10/rec-rsc-8.summary new file mode 100644 index 0000000000..1ab08bb364 --- /dev/null +++ b/pengine/test10/rec-rsc-8.summary @@ -0,0 +1,15 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache) Started (unmanaged)[ node1 node2 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache) Started (unmanaged)[ node1 node2 ] + diff --git a/pengine/test10/rec-rsc-9.summary b/pengine/test10/rec-rsc-9.summary new file mode 100644 index 0000000000..3184afb7c1 --- /dev/null +++ b/pengine/test10/rec-rsc-9.summary @@ -0,0 +1,41 @@ + +Current cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node1 + Resource Group: foo + rsc2 (heartbeat:apache): Started node1 + Resource Group: bar + rsc3 (heartbeat:apache): Started node1 FAILED + +Transition Summary: + * Restart rsc1 (Started node1) + * Restart rsc2 (Started node1) + * Recover rsc3 (Started node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Pseudo action: foo_stop_0 + * Resource action: rsc2 stop on node1 + * Pseudo action: foo_stopped_0 + * Pseudo action: bar_stop_0 + * Resource action: rsc3 stop on node1 + * Pseudo action: all_stopped + * Pseudo action: bar_stopped_0 + * Pseudo action: bar_start_0 + * Resource action: rsc3 start on node1 + * Pseudo action: bar_running_0 + * Resource action: rsc1 start on node1 + * Pseudo action: foo_start_0 + * Resource action: rsc2 start on node1 + * Pseudo action: foo_running_0 + +Revised cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node1 + Resource Group: foo + rsc2 (heartbeat:apache): Started node1 + Resource Group: bar + rsc3 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/reprobe-target_rc.summary b/pengine/test10/reprobe-target_rc.summary new file mode 100644 index 0000000000..e0672bd530 --- /dev/null +++ b/pengine/test10/reprobe-target_rc.summary @@ -0,0 +1,53 @@ + +Current cluster status: +Online: [ node-0 node-1 ] + + d00 (ocf::pacemaker:Dummy): Started node-0 + d01 (ocf::pacemaker:Dummy): Started node-1 + d02 (ocf::pacemaker:Dummy): Started node-0 + d03 (ocf::pacemaker:Dummy): Started node-1 + d04 (ocf::pacemaker:Dummy): Started node-0 + d05 (ocf::pacemaker:Dummy): Started node-1 + d06 (ocf::pacemaker:Dummy): Started node-0 + d07 (ocf::pacemaker:Dummy): Started node-1 + d08 (ocf::pacemaker:Dummy): Started node-0 + d09 (ocf::pacemaker:Dummy): Started node-1 + d10 (ocf::pacemaker:Dummy): Started node-0 + d11 (ocf::pacemaker:Dummy): Started node-1 + d12 (ocf::pacemaker:Dummy): Started node-0 + d13 (ocf::pacemaker:Dummy): Started node-1 + d14 (ocf::pacemaker:Dummy): Started node-0 + d15 (ocf::pacemaker:Dummy): Started node-1 + d16 (ocf::pacemaker:Dummy): Started node-0 + d17 (ocf::pacemaker:Dummy): Started node-1 + d18 (ocf::pacemaker:Dummy): Started node-0 + d19 (ocf::pacemaker:Dummy): Started node-1 + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node-0 node-1 ] + + d00 (ocf::pacemaker:Dummy): Started node-0 + d01 (ocf::pacemaker:Dummy): Started node-1 + d02 (ocf::pacemaker:Dummy): Started node-0 + d03 (ocf::pacemaker:Dummy): Started node-1 + d04 (ocf::pacemaker:Dummy): Started node-0 + d05 (ocf::pacemaker:Dummy): Started node-1 + d06 (ocf::pacemaker:Dummy): Started node-0 + d07 (ocf::pacemaker:Dummy): Started node-1 + d08 (ocf::pacemaker:Dummy): Started node-0 + d09 (ocf::pacemaker:Dummy): Started node-1 + d10 (ocf::pacemaker:Dummy): Started node-0 + d11 (ocf::pacemaker:Dummy): Started node-1 + d12 (ocf::pacemaker:Dummy): Started node-0 + d13 (ocf::pacemaker:Dummy): Started node-1 + d14 (ocf::pacemaker:Dummy): Started node-0 + d15 (ocf::pacemaker:Dummy): Started node-1 + d16 (ocf::pacemaker:Dummy): Started node-0 + d17 (ocf::pacemaker:Dummy): Started node-1 + d18 (ocf::pacemaker:Dummy): Started node-0 + d19 (ocf::pacemaker:Dummy): Started node-1 + diff --git a/pengine/test10/rsc-sets-clone-1.summary b/pengine/test10/rsc-sets-clone-1.summary new file mode 100644 index 0000000000..29d1d4f5af --- /dev/null +++ b/pengine/test10/rsc-sets-clone-1.summary @@ -0,0 +1,83 @@ + +Current cluster status: +Online: [ sys2 sys3 ] + + vm1 (ocf::heartbeat:Xen): Started sys2 + vm2 (ocf::heartbeat:Xen): Stopped + vm3 (ocf::heartbeat:Xen): Stopped + vm4 (ocf::heartbeat:Xen): Stopped + stonithsys2 (stonith:external/ipmi): Stopped + stonithsys3 (stonith:external/ipmi): Started sys2 + Clone Set: baseclone [basegrp] + Started: [ sys2 ] + Stopped: [ basegrp:1 ] + Clone Set: fs1 [nfs1] + Stopped: [ nfs1:0 nfs1:1 ] + +Transition Summary: + * Restart stonithsys3 (Started sys2) + * Start controld:1 (sys3) + * Start clvmd:1 (sys3) + * Start o2cb:1 (sys3) + * Start iscsi1:1 (sys3) + * Start iscsi2:1 (sys3) + * Start vg1:1 (sys3) + * Start vg2:1 (sys3) + * Start fs2:1 (sys3) + * Start stonithsys2 (sys3) + +Executing cluster transition: + * Resource action: vm1 monitor on sys3 + * Resource action: vm2 monitor on sys3 + * Resource action: vm3 monitor on sys3 + * Resource action: vm4 monitor on sys3 + * Resource action: stonithsys3 monitor on sys3 + * Resource action: controld:1 monitor on sys3 + * Resource action: clvmd:1 monitor on sys3 + * Resource action: o2cb:1 monitor on sys3 + * Resource action: iscsi1:1 monitor on sys3 + * Resource action: iscsi2:1 monitor on sys3 + * Resource action: vg1:1 monitor on sys3 + * Resource action: vg2:1 monitor on sys3 + * Resource action: fs2:1 monitor on sys3 + * Pseudo action: baseclone_start_0 + * Resource action: nfs1:0 monitor on sys3 + * Resource action: stonithsys2 monitor on sys3 + * Pseudo action: probe_complete + * Pseudo action: load_stopped_sys3 + * Pseudo action: load_stopped_sys2 + * Resource action: stonithsys3 stop on sys2 + * Resource action: stonithsys3 start on sys2 + * Resource action: stonithsys3 monitor=15000 on sys2 + * Pseudo action: basegrp:1_start_0 + * Resource action: controld:1 start on sys3 + * Resource action: clvmd:1 start on sys3 + * Resource action: o2cb:1 start on sys3 + * Resource action: iscsi1:1 start on sys3 + * Resource action: iscsi2:1 start on sys3 + * Resource action: vg1:1 start on sys3 + * Resource action: vg2:1 start on sys3 + * Resource action: fs2:1 start on sys3 + * Resource action: stonithsys2 start on sys3 + * Pseudo action: basegrp:1_running_0 + * Resource action: controld:1 monitor=10000 on sys3 + * Resource action: iscsi1:1 monitor=120000 on sys3 + * Resource action: iscsi2:1 monitor=120000 on sys3 + * Resource action: fs2:1 monitor=20000 on sys3 + * Pseudo action: baseclone_running_0 + * Resource action: stonithsys2 monitor=15000 on sys3 + +Revised cluster status: +Online: [ sys2 sys3 ] + + vm1 (ocf::heartbeat:Xen): Started sys2 + vm2 (ocf::heartbeat:Xen): Stopped + vm3 (ocf::heartbeat:Xen): Stopped + vm4 (ocf::heartbeat:Xen): Stopped + stonithsys2 (stonith:external/ipmi): Started sys3 + stonithsys3 (stonith:external/ipmi): Started sys2 + Clone Set: baseclone [basegrp] + Started: [ sys2 sys3 ] + Clone Set: fs1 [nfs1] + Stopped: [ nfs1:0 nfs1:1 ] + diff --git a/pengine/test10/rsc-sets-clone.summary b/pengine/test10/rsc-sets-clone.summary new file mode 100644 index 0000000000..b924bbee17 --- /dev/null +++ b/pengine/test10/rsc-sets-clone.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Node node1: standby +Online: [ node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node2 + rsc3 (ocf::pacemaker:Dummy): Started node1 + Clone Set: clone-rsc [rsc] + Started: [ node1 node2 ] + +Transition Summary: + * Move rsc1 (Started node1 -> node2) + * Move rsc3 (Started node1 -> node2) + * Stop rsc:0 (node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Resource action: rsc3 stop on node1 + * Pseudo action: clone-rsc_stop_0 + * Resource action: rsc1 start on node2 + * Resource action: rsc3 start on node2 + * Resource action: rsc:0 stop on node1 + * Pseudo action: clone-rsc_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Node node1: standby +Online: [ node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + rsc3 (ocf::pacemaker:Dummy): Started node2 + Clone Set: clone-rsc [rsc] + Started: [ node2 ] + Stopped: [ rsc:0 ] + diff --git a/pengine/test10/rsc-sets-master.summary b/pengine/test10/rsc-sets-master.summary new file mode 100644 index 0000000000..78f652bc3e --- /dev/null +++ b/pengine/test10/rsc-sets-master.summary @@ -0,0 +1,48 @@ + +Current cluster status: +Node node1: standby +Online: [ node2 ] + + Master/Slave Set: ms-rsc [rsc] + Masters: [ node1 ] + Slaves: [ node2 ] + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + +Transition Summary: + * Demote rsc:0 (Master -> Stopped node1) + * Promote rsc:1 (Slave -> Master node2) + * Move rsc1 (Started node1 -> node2) + * Move rsc2 (Started node1 -> node2) + * Move rsc3 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Resource action: rsc2 stop on node1 + * Resource action: rsc3 stop on node1 + * Pseudo action: ms-rsc_demote_0 + * Resource action: rsc:0 demote on node1 + * Pseudo action: ms-rsc_demoted_0 + * Pseudo action: ms-rsc_stop_0 + * Resource action: rsc:0 stop on node1 + * Pseudo action: ms-rsc_stopped_0 + * Pseudo action: all_stopped + * Pseudo action: ms-rsc_promote_0 + * Resource action: rsc:1 promote on node2 + * Pseudo action: ms-rsc_promoted_0 + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + * Resource action: rsc3 start on node2 + +Revised cluster status: +Node node1: standby +Online: [ node2 ] + + Master/Slave Set: ms-rsc [rsc] + Masters: [ node2 ] + Stopped: [ rsc:0 ] + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + rsc3 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/rsc-sets-seq-false.summary b/pengine/test10/rsc-sets-seq-false.summary new file mode 100644 index 0000000000..2d6dccffdd --- /dev/null +++ b/pengine/test10/rsc-sets-seq-false.summary @@ -0,0 +1,46 @@ + +Current cluster status: +Node node1: standby +Online: [ node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + rsc4 (ocf::pacemaker:Dummy): Started node1 + rsc5 (ocf::pacemaker:Dummy): Started node1 + rsc6 (ocf::pacemaker:Dummy): Started node1 + +Transition Summary: + * Move rsc1 (Started node1 -> node2) + * Move rsc2 (Started node1 -> node2) + * Move rsc3 (Started node1 -> node2) + * Move rsc4 (Started node1 -> node2) + * Move rsc5 (Started node1 -> node2) + * Move rsc6 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: rsc4 stop on node1 + * Resource action: rsc5 stop on node1 + * Resource action: rsc6 stop on node1 + * Resource action: rsc3 stop on node1 + * Resource action: rsc2 stop on node1 + * Resource action: rsc1 stop on node1 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + * Resource action: rsc3 start on node2 + * Resource action: rsc4 start on node2 + * Resource action: rsc5 start on node2 + * Resource action: rsc6 start on node2 + +Revised cluster status: +Node node1: standby +Online: [ node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + rsc3 (ocf::pacemaker:Dummy): Started node2 + rsc4 (ocf::pacemaker:Dummy): Started node2 + rsc5 (ocf::pacemaker:Dummy): Started node2 + rsc6 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/rsc-sets-seq-true.summary b/pengine/test10/rsc-sets-seq-true.summary new file mode 100644 index 0000000000..e4fca51a2e --- /dev/null +++ b/pengine/test10/rsc-sets-seq-true.summary @@ -0,0 +1,46 @@ + +Current cluster status: +Node node1: standby +Online: [ node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + rsc4 (ocf::pacemaker:Dummy): Started node1 + rsc5 (ocf::pacemaker:Dummy): Started node1 + rsc6 (ocf::pacemaker:Dummy): Started node1 + +Transition Summary: + * Move rsc1 (Started node1 -> node2) + * Move rsc2 (Started node1 -> node2) + * Move rsc3 (Started node1 -> node2) + * Move rsc4 (Started node1 -> node2) + * Move rsc5 (Started node1 -> node2) + * Move rsc6 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: rsc6 stop on node1 + * Resource action: rsc5 stop on node1 + * Resource action: rsc4 stop on node1 + * Resource action: rsc3 stop on node1 + * Resource action: rsc2 stop on node1 + * Resource action: rsc1 stop on node1 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + * Resource action: rsc3 start on node2 + * Resource action: rsc4 start on node2 + * Resource action: rsc5 start on node2 + * Resource action: rsc6 start on node2 + +Revised cluster status: +Node node1: standby +Online: [ node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + rsc3 (ocf::pacemaker:Dummy): Started node2 + rsc4 (ocf::pacemaker:Dummy): Started node2 + rsc5 (ocf::pacemaker:Dummy): Started node2 + rsc6 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/rsc_dep1.summary b/pengine/test10/rsc_dep1.summary new file mode 100644 index 0000000000..9d024a4199 --- /dev/null +++ b/pengine/test10/rsc_dep1.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc2 (heartbeat:apache): Stopped + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc2 (node1) + * Start rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc2 start on node1 + * Resource action: rsc1 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc2 (heartbeat:apache): Started node1 + rsc1 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/rsc_dep10.summary b/pengine/test10/rsc_dep10.summary new file mode 100644 index 0000000000..576f7c7cd2 --- /dev/null +++ b/pengine/test10/rsc_dep10.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc2 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc2 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/rsc_dep2.summary b/pengine/test10/rsc_dep2.summary new file mode 100644 index 0000000000..652366039f --- /dev/null +++ b/pengine/test10/rsc_dep2.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc2 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Started node2 + rsc1 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc2 (node1) + * Start rsc3 (node2) + +Executing cluster transition: + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc4 monitor on node1 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc2 start on node1 + * Resource action: rsc3 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc2 (heartbeat:apache): Started node1 + rsc4 (heartbeat:apache): Started node2 + rsc1 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/rsc_dep3.summary b/pengine/test10/rsc_dep3.summary new file mode 100644 index 0000000000..552c1f2660 --- /dev/null +++ b/pengine/test10/rsc_dep3.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc2 (heartbeat:apache): Stopped + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc2 (node1) + * Start rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc2 start on node1 + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc2 (heartbeat:apache): Started node1 + rsc1 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/rsc_dep4.summary b/pengine/test10/rsc_dep4.summary new file mode 100644 index 0000000000..3b4366dd9d --- /dev/null +++ b/pengine/test10/rsc_dep4.summary @@ -0,0 +1,36 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc2 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Started node1 + rsc1 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc2 (node1) + * Move rsc4 (Started node1 -> node2) + * Start rsc3 (node2) + +Executing cluster transition: + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc2 start on node1 + * Resource action: rsc4 stop on node1 + * Resource action: rsc3 start on node2 + * Pseudo action: all_stopped + * Resource action: rsc4 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc2 (heartbeat:apache): Started node1 + rsc4 (heartbeat:apache): Started node2 + rsc1 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/rsc_dep5.summary b/pengine/test10/rsc_dep5.summary new file mode 100644 index 0000000000..55c295068d --- /dev/null +++ b/pengine/test10/rsc_dep5.summary @@ -0,0 +1,30 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc3 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc3 (node1) + * Start rsc2 (node2) + +Executing cluster transition: + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc3 start on node1 + * Resource action: rsc2 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc3 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node2 + rsc1 (heartbeat:apache): Stopped + diff --git a/pengine/test10/rsc_dep7.summary b/pengine/test10/rsc_dep7.summary new file mode 100644 index 0000000000..2332489686 --- /dev/null +++ b/pengine/test10/rsc_dep7.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc3 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc3 (node1) + * Start rsc2 (node1) + * Start rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc3 start on node1 + * Resource action: rsc2 start on node1 + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc3 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + rsc1 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/rsc_dep8.summary b/pengine/test10/rsc_dep8.summary new file mode 100644 index 0000000000..652366039f --- /dev/null +++ b/pengine/test10/rsc_dep8.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc2 (heartbeat:apache): Stopped + rsc4 (heartbeat:apache): Started node2 + rsc1 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc2 (node1) + * Start rsc3 (node2) + +Executing cluster transition: + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc4 monitor on node1 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc2 start on node1 + * Resource action: rsc3 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc2 (heartbeat:apache): Started node1 + rsc4 (heartbeat:apache): Started node2 + rsc1 (heartbeat:apache): Started node1 + rsc3 (heartbeat:apache): Started node2 + diff --git a/pengine/test10/simple1.summary b/pengine/test10/simple1.summary new file mode 100644 index 0000000000..01bab1a3ca --- /dev/null +++ b/pengine/test10/simple1.summary @@ -0,0 +1,15 @@ + +Current cluster status: +OFFLINE: [ node1 ] + + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +OFFLINE: [ node1 ] + + rsc1 (heartbeat:apache): Stopped + diff --git a/pengine/test10/simple11.summary b/pengine/test10/simple11.summary new file mode 100644 index 0000000000..b5d9a539f4 --- /dev/null +++ b/pengine/test10/simple11.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + rsc2 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/simple12.summary b/pengine/test10/simple12.summary new file mode 100644 index 0000000000..e0c16f72d7 --- /dev/null +++ b/pengine/test10/simple12.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + rsc2 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node2) + * Start rsc2 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node2 + rsc2 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/simple2.summary b/pengine/test10/simple2.summary new file mode 100644 index 0000000000..e190bd2542 --- /dev/null +++ b/pengine/test10/simple2.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/simple3.summary b/pengine/test10/simple3.summary new file mode 100644 index 0000000000..4d1d2ed083 --- /dev/null +++ b/pengine/test10/simple3.summary @@ -0,0 +1,17 @@ + +Current cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Stopped + +Transition Summary: + * Start rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/simple4.summary b/pengine/test10/simple4.summary new file mode 100644 index 0000000000..c0966b6eb0 --- /dev/null +++ b/pengine/test10/simple4.summary @@ -0,0 +1,18 @@ + +Current cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node1 FAILED + +Transition Summary: + * Stop rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Stopped + diff --git a/pengine/test10/simple6.summary b/pengine/test10/simple6.summary new file mode 100644 index 0000000000..2c4079b3ac --- /dev/null +++ b/pengine/test10/simple6.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node1 ] + + rsc2 (heartbeat:apache): Stopped + rsc1 (heartbeat:apache): Started node1 + +Transition Summary: + * Start rsc2 (node1) + * Stop rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc2 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc2 start on node1 + * Resource action: rsc1 stop on node1 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 ] + + rsc2 (heartbeat:apache): Started node1 + rsc1 (heartbeat:apache): Stopped + diff --git a/pengine/test10/simple7.summary b/pengine/test10/simple7.summary new file mode 100644 index 0000000000..2c2818fffb --- /dev/null +++ b/pengine/test10/simple7.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Started node1 + +Transition Summary: + * Stop rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Cluster action: do_shutdown on node1 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 ] + + rsc1 (heartbeat:apache): Stopped + diff --git a/pengine/test10/simple8.summary b/pengine/test10/simple8.summary new file mode 100644 index 0000000000..974b11b7eb --- /dev/null +++ b/pengine/test10/simple8.summary @@ -0,0 +1,30 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc3 (heartbeat:apache): Started node1 + rsc4 (heartbeat:apache): Started node1 + Resource Group: foo + rsc1 (heartbeat:apache): Started node1 + Resource Group: bar + rsc2 (heartbeat:apache): Started node1 + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc3 monitor on node2 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc1 monitor on node2 + * Resource action: rsc2 monitor on node2 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc3 (heartbeat:apache): Started node1 + rsc4 (heartbeat:apache): Started node1 + Resource Group: foo + rsc1 (heartbeat:apache): Started node1 + Resource Group: bar + rsc2 (heartbeat:apache): Started node1 + diff --git a/pengine/test10/standby.summary b/pengine/test10/standby.summary new file mode 100644 index 0000000000..79fbb6c075 --- /dev/null +++ b/pengine/test10/standby.summary @@ -0,0 +1,86 @@ + +Current cluster status: +Node sapcl03 (0bfb78a2-fcd2-4f52-8a06-2d17437a6750): standby +Node sapcl02 (09fa194c-d7e1-41fa-a0d0-afd79a139181): standby +Online: [ sapcl01 ] + + Resource Group: app01 + IPaddr_192_168_1_101 (ocf::heartbeat:IPaddr): Started sapcl01 + LVM_2 (ocf::heartbeat:LVM): Started sapcl01 + Filesystem_3 (ocf::heartbeat:Filesystem): Started sapcl01 + Resource Group: app02 + IPaddr_192_168_1_102 (ocf::heartbeat:IPaddr): Started sapcl02 + LVM_12 (ocf::heartbeat:LVM): Started sapcl02 + Filesystem_13 (ocf::heartbeat:Filesystem): Started sapcl02 + Resource Group: oracle + IPaddr_192_168_1_104 (ocf::heartbeat:IPaddr): Started sapcl03 + LVM_22 (ocf::heartbeat:LVM): Started sapcl03 + Filesystem_23 (ocf::heartbeat:Filesystem): Started sapcl03 + oracle_24 (ocf::heartbeat:oracle): Started sapcl03 + oralsnr_25 (ocf::heartbeat:oralsnr): Started sapcl03 + +Transition Summary: + * Move IPaddr_192_168_1_102 (Started sapcl02 -> sapcl01) + * Move LVM_12 (Started sapcl02 -> sapcl01) + * Move Filesystem_13 (Started sapcl02 -> sapcl01) + * Move IPaddr_192_168_1_104 (Started sapcl03 -> sapcl01) + * Move LVM_22 (Started sapcl03 -> sapcl01) + * Move Filesystem_23 (Started sapcl03 -> sapcl01) + * Move oracle_24 (Started sapcl03 -> sapcl01) + * Move oralsnr_25 (Started sapcl03 -> sapcl01) + +Executing cluster transition: + * Pseudo action: app02_stop_0 + * Resource action: Filesystem_13 stop on sapcl02 + * Pseudo action: oracle_stop_0 + * Resource action: oralsnr_25 stop on sapcl03 + * Resource action: LVM_12 stop on sapcl02 + * Resource action: oracle_24 stop on sapcl03 + * Resource action: IPaddr_192_168_1_102 stop on sapcl02 + * Resource action: Filesystem_23 stop on sapcl03 + * Pseudo action: app02_stopped_0 + * Pseudo action: app02_start_0 + * Resource action: IPaddr_192_168_1_102 start on sapcl01 + * Resource action: LVM_12 start on sapcl01 + * Resource action: Filesystem_13 start on sapcl01 + * Resource action: LVM_22 stop on sapcl03 + * Pseudo action: app02_running_0 + * Resource action: IPaddr_192_168_1_102 monitor=5000 on sapcl01 + * Resource action: LVM_12 monitor=120000 on sapcl01 + * Resource action: Filesystem_13 monitor=120000 on sapcl01 + * Resource action: IPaddr_192_168_1_104 stop on sapcl03 + * Pseudo action: all_stopped + * Pseudo action: oracle_stopped_0 + * Pseudo action: oracle_start_0 + * Resource action: IPaddr_192_168_1_104 start on sapcl01 + * Resource action: LVM_22 start on sapcl01 + * Resource action: Filesystem_23 start on sapcl01 + * Resource action: oracle_24 start on sapcl01 + * Resource action: oralsnr_25 start on sapcl01 + * Pseudo action: oracle_running_0 + * Resource action: IPaddr_192_168_1_104 monitor=5000 on sapcl01 + * Resource action: LVM_22 monitor=120000 on sapcl01 + * Resource action: Filesystem_23 monitor=120000 on sapcl01 + * Resource action: oracle_24 monitor=120000 on sapcl01 + * Resource action: oralsnr_25 monitor=120000 on sapcl01 + +Revised cluster status: +Node sapcl03 (0bfb78a2-fcd2-4f52-8a06-2d17437a6750): standby +Node sapcl02 (09fa194c-d7e1-41fa-a0d0-afd79a139181): standby +Online: [ sapcl01 ] + + Resource Group: app01 + IPaddr_192_168_1_101 (ocf::heartbeat:IPaddr): Started sapcl01 + LVM_2 (ocf::heartbeat:LVM): Started sapcl01 + Filesystem_3 (ocf::heartbeat:Filesystem): Started sapcl01 + Resource Group: app02 + IPaddr_192_168_1_102 (ocf::heartbeat:IPaddr): Started sapcl01 + LVM_12 (ocf::heartbeat:LVM): Started sapcl01 + Filesystem_13 (ocf::heartbeat:Filesystem): Started sapcl01 + Resource Group: oracle + IPaddr_192_168_1_104 (ocf::heartbeat:IPaddr): Started sapcl01 + LVM_22 (ocf::heartbeat:LVM): Started sapcl01 + Filesystem_23 (ocf::heartbeat:Filesystem): Started sapcl01 + oracle_24 (ocf::heartbeat:oracle): Started sapcl01 + oralsnr_25 (ocf::heartbeat:oralsnr): Started sapcl01 + diff --git a/pengine/test10/stonith-0.summary b/pengine/test10/stonith-0.summary new file mode 100644 index 0000000000..427adff4ac --- /dev/null +++ b/pengine/test10/stonith-0.summary @@ -0,0 +1,110 @@ + +Current cluster status: +Node c001n03 (f5e1d2de-73da-432a-9d5c-37472253c2ee): UNCLEAN (online) +Node c001n05 (52a5ea5e-86ee-442c-b251-0bc9825c517e): UNCLEAN (online) +Online: [ c001n02 c001n04 c001n06 c001n07 c001n08 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Stopped + Resource Group: group-1 + ocf_192.168.100.181 (ocf::heartbeat:IPaddr) Started [ c001n03 c001n05 ] + heartbeat_192.168.100.182 (heartbeat:IPaddr): Started c001n03 + ocf_192.168.100.183 (ocf::heartbeat:IPaddr) Started FAILED[ c001n03 c001n05 ] + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n04 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n06 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n05 + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + Clone Set: DoFencing [child_DoFencing] + Started: [ c001n02 c001n04 c001n06 c001n07 c001n08 ] + Stopped: [ child_DoFencing:5 child_DoFencing:6 ] + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Master c001n02 + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n07 + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n07 + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Slave c001n08 + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Slave c001n08 + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:8 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:9 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:10 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n04 + ocf_msdummy:11 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n04 + ocf_msdummy:12 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n06 + ocf_msdummy:13 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n06 + +Transition Summary: + * Move ocf_192.168.100.181 (Started c001n03 -> c001n02) + * Move heartbeat_192.168.100.182 (Started c001n03 -> c001n02) + * Move ocf_192.168.100.183 (Started c001n03 -> c001n02) + * Move rsc_c001n05 (Started c001n05 -> c001n07) + * Move rsc_c001n07 (Started c001n03 -> c001n07) + +Executing cluster transition: + * Resource action: child_DoFencing:4 monitor=20000 on c001n08 + * Pseudo action: stonith_up + * Fencing c001n05 + * Fencing c001n03 + * Pseudo action: stonith_complete + * Pseudo action: group-1_stop_0 + * Pseudo action: ocf_192.168.100.183_stop_0 + * Pseudo action: ocf_192.168.100.183_stop_0 + * Pseudo action: rsc_c001n05_stop_0 + * Pseudo action: rsc_c001n07_stop_0 + * Pseudo action: heartbeat_192.168.100.182_stop_0 + * Resource action: rsc_c001n05 start on c001n07 + * Resource action: rsc_c001n07 start on c001n07 + * Pseudo action: ocf_192.168.100.181_stop_0 + * Pseudo action: ocf_192.168.100.181_stop_0 + * Resource action: rsc_c001n05 monitor=5000 on c001n07 + * Resource action: rsc_c001n07 monitor=5000 on c001n07 + * Pseudo action: all_stopped + * Pseudo action: group-1_stopped_0 + * Pseudo action: group-1_start_0 + * Resource action: ocf_192.168.100.181 start on c001n02 + * Resource action: heartbeat_192.168.100.182 start on c001n02 + * Resource action: ocf_192.168.100.183 start on c001n02 + * Pseudo action: group-1_running_0 + * Resource action: ocf_192.168.100.181 monitor=5000 on c001n02 + * Resource action: heartbeat_192.168.100.182 monitor=5000 on c001n02 + * Resource action: ocf_192.168.100.183 monitor=5000 on c001n02 + +Revised cluster status: +Online: [ c001n02 c001n04 c001n06 c001n07 c001n08 ] +OFFLINE: [ c001n03 c001n05 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Stopped + Resource Group: group-1 + ocf_192.168.100.181 (ocf::heartbeat:IPaddr): Started c001n02 + heartbeat_192.168.100.182 (heartbeat:IPaddr): Started c001n02 + ocf_192.168.100.183 (ocf::heartbeat:IPaddr): Started c001n02 + lsb_dummy (lsb:/usr/lib/heartbeat/cts/LSBDummy): Started c001n04 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n06 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n04 (ocf::heartbeat:IPaddr): Started c001n04 + rsc_c001n05 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n06 (ocf::heartbeat:IPaddr): Started c001n06 + rsc_c001n07 (ocf::heartbeat:IPaddr): Started c001n07 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + Clone Set: DoFencing [child_DoFencing] + Started: [ c001n02 c001n04 c001n06 c001n07 c001n08 ] + Stopped: [ child_DoFencing:5 child_DoFencing:6 ] + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Master c001n02 + ocf_msdummy:1 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n02 + ocf_msdummy:2 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n07 + ocf_msdummy:3 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n07 + ocf_msdummy:4 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Slave c001n08 + ocf_msdummy:5 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Slave c001n08 + ocf_msdummy:6 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:7 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:8 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:9 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Stopped + ocf_msdummy:10 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n04 + ocf_msdummy:11 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n04 + ocf_msdummy:12 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n06 + ocf_msdummy:13 (ocf::heartbeat:/usr/lib/heartbeat/cts/OCFMSDummy): Started c001n06 + diff --git a/pengine/test10/stonith-1.summary b/pengine/test10/stonith-1.summary new file mode 100644 index 0000000000..028649d8e0 --- /dev/null +++ b/pengine/test10/stonith-1.summary @@ -0,0 +1,112 @@ + +Current cluster status: +Node sles-3 (2298606a-6a8c-499a-9d25-76242f7006ec): UNCLEAN (offline) +Online: [ sles-1 sles-2 sles-4 ] + + Resource Group: group-1 + r192.168.100.181 (ocf::heartbeat:IPaddr): Started sles-1 + r192.168.100.182 (heartbeat:IPaddr): Started sles-1 + r192.168.100.183 (ocf::heartbeat:IPaddr): Stopped + lsb_dummy (lsb:/usr/lib64/heartbeat/cts/LSBDummy): Started sles-2 + migrator (ocf::heartbeat:Dummy): Started sles-3 + rsc_sles-1 (ocf::heartbeat:IPaddr): Started sles-1 + rsc_sles-2 (ocf::heartbeat:IPaddr): Started sles-2 + rsc_sles-3 (ocf::heartbeat:IPaddr): Started sles-3 + rsc_sles-4 (ocf::heartbeat:IPaddr): Started sles-4 + Clone Set: DoFencing [child_DoFencing] + Started: [ sles-2 sles-3 sles-1 ] + Stopped: [ child_DoFencing:0 ] + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:1 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:2 (ocf::heartbeat:Stateful): Started sles-3 + ocf_msdummy:3 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:4 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:5 (ocf::heartbeat:Stateful): Started sles-3 + ocf_msdummy:6 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:7 (ocf::heartbeat:Stateful): Stopped + +Transition Summary: + * Start r192.168.100.183 (sles-1) + * Move migrator (Started sles-3 -> sles-4) + * Move rsc_sles-3 (Started sles-3 -> sles-4) + * Move child_DoFencing:2 (Started sles-3 -> sles-4) + * Start ocf_msdummy:0 (sles-4) + * Start ocf_msdummy:1 (sles-1) + * Move ocf_msdummy:2 (Slave sles-3 -> sles-2) + * Start ocf_msdummy:3 (sles-4) + * Start ocf_msdummy:4 (sles-1) + * Move ocf_msdummy:5 (Slave sles-3 -> sles-2) + +Executing cluster transition: + * Pseudo action: group-1_start_0 + * Resource action: r192.168.100.182 monitor=5000 on sles-1 + * Resource action: lsb_dummy monitor=5000 on sles-2 + * Resource action: rsc_sles-2 monitor=5000 on sles-2 + * Resource action: rsc_sles-4 monitor=5000 on sles-4 + * Pseudo action: DoFencing_stop_0 + * Pseudo action: child_DoFencing:2_stop_0 + * Pseudo action: DoFencing_stopped_0 + * Pseudo action: DoFencing_start_0 + * Resource action: child_DoFencing:2 start on sles-4 + * Pseudo action: DoFencing_running_0 + * Pseudo action: stonith_up + * Resource action: child_DoFencing:2 monitor=60000 on sles-4 + * Fencing sles-3 + * Pseudo action: stonith_complete + * Resource action: r192.168.100.183 start on sles-1 + * Pseudo action: migrator_stop_0 + * Pseudo action: rsc_sles-3_stop_0 + * Pseudo action: master_rsc_1_stop_0 + * Pseudo action: group-1_running_0 + * Resource action: r192.168.100.183 monitor=5000 on sles-1 + * Resource action: migrator start on sles-4 + * Resource action: rsc_sles-3 start on sles-4 + * Pseudo action: ocf_msdummy:2_stop_0 + * Pseudo action: ocf_msdummy:5_stop_0 + * Pseudo action: master_rsc_1_stopped_0 + * Pseudo action: master_rsc_1_start_0 + * Pseudo action: all_stopped + * Resource action: migrator monitor=10000 on sles-4 + * Resource action: rsc_sles-3 monitor=5000 on sles-4 + * Resource action: ocf_msdummy:0 start on sles-4 + * Resource action: ocf_msdummy:1 start on sles-1 + * Resource action: ocf_msdummy:2 start on sles-2 + * Resource action: ocf_msdummy:3 start on sles-4 + * Resource action: ocf_msdummy:4 start on sles-1 + * Resource action: ocf_msdummy:5 start on sles-2 + * Pseudo action: master_rsc_1_running_0 + * Resource action: ocf_msdummy:0 monitor=5000 on sles-4 + * Resource action: ocf_msdummy:1 monitor=5000 on sles-1 + * Resource action: ocf_msdummy:2 monitor=5000 on sles-2 + * Resource action: ocf_msdummy:3 monitor=5000 on sles-4 + * Resource action: ocf_msdummy:4 monitor=5000 on sles-1 + * Resource action: ocf_msdummy:5 monitor=5000 on sles-2 + +Revised cluster status: +Online: [ sles-1 sles-2 sles-4 ] +OFFLINE: [ sles-3 ] + + Resource Group: group-1 + r192.168.100.181 (ocf::heartbeat:IPaddr): Started sles-1 + r192.168.100.182 (heartbeat:IPaddr): Started sles-1 + r192.168.100.183 (ocf::heartbeat:IPaddr): Started sles-1 + lsb_dummy (lsb:/usr/lib64/heartbeat/cts/LSBDummy): Started sles-2 + migrator (ocf::heartbeat:Dummy): Started sles-4 + rsc_sles-1 (ocf::heartbeat:IPaddr): Started sles-1 + rsc_sles-2 (ocf::heartbeat:IPaddr): Started sles-2 + rsc_sles-3 (ocf::heartbeat:IPaddr): Started sles-4 + rsc_sles-4 (ocf::heartbeat:IPaddr): Started sles-4 + Clone Set: DoFencing [child_DoFencing] + Started: [ sles-2 sles-4 sles-1 ] + Stopped: [ child_DoFencing:0 ] + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:Stateful): Started sles-4 + ocf_msdummy:1 (ocf::heartbeat:Stateful): Started sles-1 + ocf_msdummy:2 (ocf::heartbeat:Stateful): Started sles-2 + ocf_msdummy:3 (ocf::heartbeat:Stateful): Started sles-4 + ocf_msdummy:4 (ocf::heartbeat:Stateful): Started sles-1 + ocf_msdummy:5 (ocf::heartbeat:Stateful): Started sles-2 + ocf_msdummy:6 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:7 (ocf::heartbeat:Stateful): Stopped + diff --git a/pengine/test10/stonith-2.summary b/pengine/test10/stonith-2.summary new file mode 100644 index 0000000000..f180a50051 --- /dev/null +++ b/pengine/test10/stonith-2.summary @@ -0,0 +1,78 @@ + +Current cluster status: +Node sles-5 (434915c6-7b40-4d30-95ff-dc0ff3dc005a): UNCLEAN (offline) +Online: [ sles-1 sles-2 sles-3 sles-4 sles-6 ] + + Resource Group: group-1 + r192.168.100.181 (ocf::heartbeat:IPaddr): Started sles-1 + r192.168.100.182 (heartbeat:IPaddr): Started sles-1 + r192.168.100.183 (ocf::heartbeat:IPaddr): Started sles-1 + lsb_dummy (lsb:/usr/share/heartbeat/cts/LSBDummy): Started sles-2 + migrator (ocf::heartbeat:Dummy): Started sles-3 + rsc_sles-1 (ocf::heartbeat:IPaddr): Started sles-1 + rsc_sles-2 (ocf::heartbeat:IPaddr): Started sles-2 + rsc_sles-3 (ocf::heartbeat:IPaddr): Started sles-3 + rsc_sles-4 (ocf::heartbeat:IPaddr): Started sles-4 + rsc_sles-5 (ocf::heartbeat:IPaddr): Stopped + rsc_sles-6 (ocf::heartbeat:IPaddr): Started sles-6 + Clone Set: DoFencing [child_DoFencing] + Started: [ sles-1 sles-2 sles-3 sles-4 sles-6 ] + Stopped: [ child_DoFencing:4 ] + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:Stateful): Started sles-3 + ocf_msdummy:1 (ocf::heartbeat:Stateful): Started sles-4 + ocf_msdummy:2 (ocf::heartbeat:Stateful): Started sles-4 + ocf_msdummy:3 (ocf::heartbeat:Stateful): Started sles-1 + ocf_msdummy:4 (ocf::heartbeat:Stateful): Started sles-2 + ocf_msdummy:5 (ocf::heartbeat:Stateful): Started sles-1 + ocf_msdummy:6 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:7 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:8 (ocf::heartbeat:Stateful): Started sles-6 + ocf_msdummy:9 (ocf::heartbeat:Stateful): Started sles-6 + ocf_msdummy:10 (ocf::heartbeat:Stateful): Started sles-2 + ocf_msdummy:11 (ocf::heartbeat:Stateful): Started sles-3 + +Transition Summary: + * Start rsc_sles-5 (sles-6) + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing sles-5 + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + * Resource action: rsc_sles-5 start on sles-6 + * Resource action: rsc_sles-5 monitor=5000 on sles-6 + +Revised cluster status: +Online: [ sles-1 sles-2 sles-3 sles-4 sles-6 ] +OFFLINE: [ sles-5 ] + + Resource Group: group-1 + r192.168.100.181 (ocf::heartbeat:IPaddr): Started sles-1 + r192.168.100.182 (heartbeat:IPaddr): Started sles-1 + r192.168.100.183 (ocf::heartbeat:IPaddr): Started sles-1 + lsb_dummy (lsb:/usr/share/heartbeat/cts/LSBDummy): Started sles-2 + migrator (ocf::heartbeat:Dummy): Started sles-3 + rsc_sles-1 (ocf::heartbeat:IPaddr): Started sles-1 + rsc_sles-2 (ocf::heartbeat:IPaddr): Started sles-2 + rsc_sles-3 (ocf::heartbeat:IPaddr): Started sles-3 + rsc_sles-4 (ocf::heartbeat:IPaddr): Started sles-4 + rsc_sles-5 (ocf::heartbeat:IPaddr): Started sles-6 + rsc_sles-6 (ocf::heartbeat:IPaddr): Started sles-6 + Clone Set: DoFencing [child_DoFencing] + Started: [ sles-1 sles-2 sles-3 sles-4 sles-6 ] + Stopped: [ child_DoFencing:4 ] + Master/Slave Set: master_rsc_1 [ocf_msdummy] (unique) + ocf_msdummy:0 (ocf::heartbeat:Stateful): Started sles-3 + ocf_msdummy:1 (ocf::heartbeat:Stateful): Started sles-4 + ocf_msdummy:2 (ocf::heartbeat:Stateful): Started sles-4 + ocf_msdummy:3 (ocf::heartbeat:Stateful): Started sles-1 + ocf_msdummy:4 (ocf::heartbeat:Stateful): Started sles-2 + ocf_msdummy:5 (ocf::heartbeat:Stateful): Started sles-1 + ocf_msdummy:6 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:7 (ocf::heartbeat:Stateful): Stopped + ocf_msdummy:8 (ocf::heartbeat:Stateful): Started sles-6 + ocf_msdummy:9 (ocf::heartbeat:Stateful): Started sles-6 + ocf_msdummy:10 (ocf::heartbeat:Stateful): Started sles-2 + ocf_msdummy:11 (ocf::heartbeat:Stateful): Started sles-3 + diff --git a/pengine/test10/stonith-3.summary b/pengine/test10/stonith-3.summary new file mode 100644 index 0000000000..11f6a5f4d2 --- /dev/null +++ b/pengine/test10/stonith-3.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Node rh5node1 (286f4fcb-519e-4a23-b39f-9ab0017d0442): UNCLEAN (offline) +Online: [ rh5node2 ] + + prmIpPostgreSQLDB (ocf::heartbeat:IPaddr): Stopped + Clone Set: clnStonith [grpStonith] + Stopped: [ grpStonith:0 grpStonith:1 ] + +Transition Summary: + * Start prmIpPostgreSQLDB (rh5node2) + * Start prmStonith:0 (rh5node2) + +Executing cluster transition: + * Resource action: prmIpPostgreSQLDB monitor on rh5node2 + * Resource action: prmStonith:0 monitor on rh5node2 + * Pseudo action: clnStonith_start_0 + * Pseudo action: probe_complete + * Pseudo action: grpStonith:0_start_0 + * Resource action: prmStonith:0 start on rh5node2 + * Pseudo action: stonith_up + * Pseudo action: grpStonith:0_running_0 + * Pseudo action: clnStonith_running_0 + * Fencing rh5node1 + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + * Resource action: prmIpPostgreSQLDB start on rh5node2 + * Resource action: prmIpPostgreSQLDB monitor=30000 on rh5node2 + +Revised cluster status: +Online: [ rh5node2 ] +OFFLINE: [ rh5node1 ] + + prmIpPostgreSQLDB (ocf::heartbeat:IPaddr): Started rh5node2 + Clone Set: clnStonith [grpStonith] + Started: [ rh5node2 ] + Stopped: [ grpStonith:1 ] + diff --git a/pengine/test10/stopped-monitor-00.summary b/pengine/test10/stopped-monitor-00.summary new file mode 100644 index 0000000000..33392cf24b --- /dev/null +++ b/pengine/test10/stopped-monitor-00.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 monitor=20000 on node2 + * Resource action: rsc1 start on node1 + * Resource action: rsc1 monitor=10000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + diff --git a/pengine/test10/stopped-monitor-01.summary b/pengine/test10/stopped-monitor-01.summary new file mode 100644 index 0000000000..e633ef16dc --- /dev/null +++ b/pengine/test10/stopped-monitor-01.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 FAILED + +Transition Summary: + * Recover rsc1 (Started node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node1 + * Resource action: rsc1 monitor=10000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + diff --git a/pengine/test10/stopped-monitor-02.summary b/pengine/test10/stopped-monitor-02.summary new file mode 100644 index 0000000000..5728cf525b --- /dev/null +++ b/pengine/test10/stopped-monitor-02.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started FAILED[ node1 node2 ] + +Transition Summary: + * Recover rsc1 (Started node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Resource action: rsc1 stop on node2 + * Resource action: rsc1 monitor=20000 on node2 + * Pseudo action: all_stopped + * Resource action: rsc1 start on node1 + * Resource action: rsc1 monitor=10000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + diff --git a/pengine/test10/stopped-monitor-03.summary b/pengine/test10/stopped-monitor-03.summary new file mode 100644 index 0000000000..3bb1756cee --- /dev/null +++ b/pengine/test10/stopped-monitor-03.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + +Transition Summary: + * Stop rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Pseudo action: all_stopped + * Resource action: rsc1 monitor=20000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/stopped-monitor-04.summary b/pengine/test10/stopped-monitor-04.summary new file mode 100644 index 0000000000..2c28752e07 --- /dev/null +++ b/pengine/test10/stopped-monitor-04.summary @@ -0,0 +1,15 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 (unmanaged) FAILED + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 (unmanaged) FAILED + diff --git a/pengine/test10/stopped-monitor-05.summary b/pengine/test10/stopped-monitor-05.summary new file mode 100644 index 0000000000..2c28752e07 --- /dev/null +++ b/pengine/test10/stopped-monitor-05.summary @@ -0,0 +1,15 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 (unmanaged) FAILED + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 (unmanaged) FAILED + diff --git a/pengine/test10/stopped-monitor-06.summary b/pengine/test10/stopped-monitor-06.summary new file mode 100644 index 0000000000..78278ffbce --- /dev/null +++ b/pengine/test10/stopped-monitor-06.summary @@ -0,0 +1,15 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started (unmanaged) FAILED[ node1 node2 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started (unmanaged) FAILED[ node1 node2 ] + diff --git a/pengine/test10/stopped-monitor-07.summary b/pengine/test10/stopped-monitor-07.summary new file mode 100644 index 0000000000..78278ffbce --- /dev/null +++ b/pengine/test10/stopped-monitor-07.summary @@ -0,0 +1,15 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started (unmanaged) FAILED[ node1 node2 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started (unmanaged) FAILED[ node1 node2 ] + diff --git a/pengine/test10/stopped-monitor-08.summary b/pengine/test10/stopped-monitor-08.summary new file mode 100644 index 0000000000..6646859fb3 --- /dev/null +++ b/pengine/test10/stopped-monitor-08.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Node node1: standby +Online: [ node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + +Transition Summary: + * Move rsc1 (Started node1 -> node2) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Resource action: rsc1 cancel=20000 on node2 + * Pseudo action: all_stopped + * Resource action: rsc1 monitor=20000 on node1 + * Resource action: rsc1 start on node2 + * Resource action: rsc1 monitor=10000 on node2 + +Revised cluster status: +Node node1: standby +Online: [ node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/stopped-monitor-09.summary b/pengine/test10/stopped-monitor-09.summary new file mode 100644 index 0000000000..1a38ae753c --- /dev/null +++ b/pengine/test10/stopped-monitor-09.summary @@ -0,0 +1,15 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 (unmanaged) + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 (unmanaged) + diff --git a/pengine/test10/stopped-monitor-10.summary b/pengine/test10/stopped-monitor-10.summary new file mode 100644 index 0000000000..78278ffbce --- /dev/null +++ b/pengine/test10/stopped-monitor-10.summary @@ -0,0 +1,15 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started (unmanaged) FAILED[ node1 node2 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started (unmanaged) FAILED[ node1 node2 ] + diff --git a/pengine/test10/stopped-monitor-11.summary b/pengine/test10/stopped-monitor-11.summary new file mode 100644 index 0000000000..1a38ae753c --- /dev/null +++ b/pengine/test10/stopped-monitor-11.summary @@ -0,0 +1,15 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 (unmanaged) + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 (unmanaged) + diff --git a/pengine/test10/stopped-monitor-12.summary b/pengine/test10/stopped-monitor-12.summary new file mode 100644 index 0000000000..78278ffbce --- /dev/null +++ b/pengine/test10/stopped-monitor-12.summary @@ -0,0 +1,15 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started (unmanaged) FAILED[ node1 node2 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started (unmanaged) FAILED[ node1 node2 ] + diff --git a/pengine/test10/stopped-monitor-20.summary b/pengine/test10/stopped-monitor-20.summary new file mode 100644 index 0000000000..03b4c5b81d --- /dev/null +++ b/pengine/test10/stopped-monitor-20.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 monitor=20000 on node2 + * Resource action: rsc1 monitor=20000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/stopped-monitor-21.summary b/pengine/test10/stopped-monitor-21.summary new file mode 100644 index 0000000000..22ccf8dc93 --- /dev/null +++ b/pengine/test10/stopped-monitor-21.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 FAILED + +Transition Summary: + * Stop rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Resource action: rsc1 monitor=20000 on node1 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/stopped-monitor-22.summary b/pengine/test10/stopped-monitor-22.summary new file mode 100644 index 0000000000..1e0935b781 --- /dev/null +++ b/pengine/test10/stopped-monitor-22.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started FAILED[ node1 node2 ] + +Transition Summary: + * Stop rsc1 (node1) + * Stop rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Resource action: rsc1 monitor=20000 on node2 + * Resource action: rsc1 stop on node1 + * Resource action: rsc1 monitor=20000 on node1 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/stopped-monitor-23.summary b/pengine/test10/stopped-monitor-23.summary new file mode 100644 index 0000000000..187fa0b1bf --- /dev/null +++ b/pengine/test10/stopped-monitor-23.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 cancel=20000 on node1 + * Resource action: rsc1 start on node1 + * Resource action: rsc1 monitor=10000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + diff --git a/pengine/test10/stopped-monitor-24.summary b/pengine/test10/stopped-monitor-24.summary new file mode 100644 index 0000000000..67b1d43f01 --- /dev/null +++ b/pengine/test10/stopped-monitor-24.summary @@ -0,0 +1,15 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped (unmanaged) + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped (unmanaged) + diff --git a/pengine/test10/stopped-monitor-25.summary b/pengine/test10/stopped-monitor-25.summary new file mode 100644 index 0000000000..78278ffbce --- /dev/null +++ b/pengine/test10/stopped-monitor-25.summary @@ -0,0 +1,15 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started (unmanaged) FAILED[ node1 node2 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started (unmanaged) FAILED[ node1 node2 ] + diff --git a/pengine/test10/stopped-monitor-26.summary b/pengine/test10/stopped-monitor-26.summary new file mode 100644 index 0000000000..67b1d43f01 --- /dev/null +++ b/pengine/test10/stopped-monitor-26.summary @@ -0,0 +1,15 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped (unmanaged) + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped (unmanaged) + diff --git a/pengine/test10/stopped-monitor-27.summary b/pengine/test10/stopped-monitor-27.summary new file mode 100644 index 0000000000..78278ffbce --- /dev/null +++ b/pengine/test10/stopped-monitor-27.summary @@ -0,0 +1,15 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started (unmanaged) FAILED[ node1 node2 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy) Started (unmanaged) FAILED[ node1 node2 ] + diff --git a/pengine/test10/stopped-monitor-30.summary b/pengine/test10/stopped-monitor-30.summary new file mode 100644 index 0000000000..d8fe6cd771 --- /dev/null +++ b/pengine/test10/stopped-monitor-30.summary @@ -0,0 +1,18 @@ + +Current cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node3 + * Pseudo action: probe_complete + * Resource action: rsc1 monitor=20000 on node3 + +Revised cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + diff --git a/pengine/test10/stopped-monitor-31.summary b/pengine/test10/stopped-monitor-31.summary new file mode 100644 index 0000000000..4b08044395 --- /dev/null +++ b/pengine/test10/stopped-monitor-31.summary @@ -0,0 +1,18 @@ + +Current cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node3 + * Pseudo action: probe_complete + * Resource action: rsc1 monitor=20000 on node3 + +Revised cluster status: +Online: [ node1 node2 node3 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/systemhealth1.summary b/pengine/test10/systemhealth1.summary new file mode 100644 index 0000000000..c88bbf14e2 --- /dev/null +++ b/pengine/test10/systemhealth1.summary @@ -0,0 +1,25 @@ + +Current cluster status: +Node hs21c (c97a3ee5-02d8-4fad-a9fb-a79ae2b35549): UNCLEAN (offline) +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing hs21d + * Fencing hs21c + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + +Revised cluster status: +OFFLINE: [ hs21c hs21d ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + diff --git a/pengine/test10/systemhealth2.summary b/pengine/test10/systemhealth2.summary new file mode 100644 index 0000000000..d0384c3c1c --- /dev/null +++ b/pengine/test10/systemhealth2.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) +Online: [ hs21c ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + * Start stonith-1 (hs21c) + * Start apache_1 (hs21c) + * Start nfs_1 (hs21c) + +Executing cluster transition: + * Resource action: stonith-1 monitor on hs21c + * Resource action: apache_1 monitor on hs21c + * Resource action: nfs_1 monitor on hs21c + * Pseudo action: probe_complete + * Resource action: stonith-1 start on hs21c + * Pseudo action: stonith_up + * Fencing hs21d + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + * Resource action: apache_1 start on hs21c + * Resource action: nfs_1 start on hs21c + * Resource action: apache_1 monitor=10000 on hs21c + * Resource action: nfs_1 monitor=20000 on hs21c + +Revised cluster status: +Online: [ hs21c ] +OFFLINE: [ hs21d ] + + stonith-1 (stonith:dummy): Started hs21c + apache_1 (ocf::heartbeat:apache): Started hs21c + nfs_1 (ocf::heartbeat:Filesystem): Started hs21c + diff --git a/pengine/test10/systemhealth3.summary b/pengine/test10/systemhealth3.summary new file mode 100644 index 0000000000..d0384c3c1c --- /dev/null +++ b/pengine/test10/systemhealth3.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) +Online: [ hs21c ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + * Start stonith-1 (hs21c) + * Start apache_1 (hs21c) + * Start nfs_1 (hs21c) + +Executing cluster transition: + * Resource action: stonith-1 monitor on hs21c + * Resource action: apache_1 monitor on hs21c + * Resource action: nfs_1 monitor on hs21c + * Pseudo action: probe_complete + * Resource action: stonith-1 start on hs21c + * Pseudo action: stonith_up + * Fencing hs21d + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + * Resource action: apache_1 start on hs21c + * Resource action: nfs_1 start on hs21c + * Resource action: apache_1 monitor=10000 on hs21c + * Resource action: nfs_1 monitor=20000 on hs21c + +Revised cluster status: +Online: [ hs21c ] +OFFLINE: [ hs21d ] + + stonith-1 (stonith:dummy): Started hs21c + apache_1 (ocf::heartbeat:apache): Started hs21c + nfs_1 (ocf::heartbeat:Filesystem): Started hs21c + diff --git a/pengine/test10/systemhealthm1.summary b/pengine/test10/systemhealthm1.summary new file mode 100644 index 0000000000..c88bbf14e2 --- /dev/null +++ b/pengine/test10/systemhealthm1.summary @@ -0,0 +1,25 @@ + +Current cluster status: +Node hs21c (c97a3ee5-02d8-4fad-a9fb-a79ae2b35549): UNCLEAN (offline) +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing hs21d + * Fencing hs21c + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + +Revised cluster status: +OFFLINE: [ hs21c hs21d ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + diff --git a/pengine/test10/systemhealthm2.summary b/pengine/test10/systemhealthm2.summary new file mode 100644 index 0000000000..d0384c3c1c --- /dev/null +++ b/pengine/test10/systemhealthm2.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) +Online: [ hs21c ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + * Start stonith-1 (hs21c) + * Start apache_1 (hs21c) + * Start nfs_1 (hs21c) + +Executing cluster transition: + * Resource action: stonith-1 monitor on hs21c + * Resource action: apache_1 monitor on hs21c + * Resource action: nfs_1 monitor on hs21c + * Pseudo action: probe_complete + * Resource action: stonith-1 start on hs21c + * Pseudo action: stonith_up + * Fencing hs21d + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + * Resource action: apache_1 start on hs21c + * Resource action: nfs_1 start on hs21c + * Resource action: apache_1 monitor=10000 on hs21c + * Resource action: nfs_1 monitor=20000 on hs21c + +Revised cluster status: +Online: [ hs21c ] +OFFLINE: [ hs21d ] + + stonith-1 (stonith:dummy): Started hs21c + apache_1 (ocf::heartbeat:apache): Started hs21c + nfs_1 (ocf::heartbeat:Filesystem): Started hs21c + diff --git a/pengine/test10/systemhealthm3.summary b/pengine/test10/systemhealthm3.summary new file mode 100644 index 0000000000..5edc3e8545 --- /dev/null +++ b/pengine/test10/systemhealthm3.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) +Online: [ hs21c ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: stonith-1 monitor on hs21c + * Resource action: apache_1 monitor on hs21c + * Resource action: nfs_1 monitor on hs21c + * Pseudo action: stonith_up + * Pseudo action: probe_complete + * Fencing hs21d + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ hs21c ] +OFFLINE: [ hs21d ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + diff --git a/pengine/test10/systemhealthn1.summary b/pengine/test10/systemhealthn1.summary new file mode 100644 index 0000000000..c88bbf14e2 --- /dev/null +++ b/pengine/test10/systemhealthn1.summary @@ -0,0 +1,25 @@ + +Current cluster status: +Node hs21c (c97a3ee5-02d8-4fad-a9fb-a79ae2b35549): UNCLEAN (offline) +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing hs21d + * Fencing hs21c + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + +Revised cluster status: +OFFLINE: [ hs21c hs21d ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + diff --git a/pengine/test10/systemhealthn2.summary b/pengine/test10/systemhealthn2.summary new file mode 100644 index 0000000000..d0384c3c1c --- /dev/null +++ b/pengine/test10/systemhealthn2.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) +Online: [ hs21c ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + * Start stonith-1 (hs21c) + * Start apache_1 (hs21c) + * Start nfs_1 (hs21c) + +Executing cluster transition: + * Resource action: stonith-1 monitor on hs21c + * Resource action: apache_1 monitor on hs21c + * Resource action: nfs_1 monitor on hs21c + * Pseudo action: probe_complete + * Resource action: stonith-1 start on hs21c + * Pseudo action: stonith_up + * Fencing hs21d + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + * Resource action: apache_1 start on hs21c + * Resource action: nfs_1 start on hs21c + * Resource action: apache_1 monitor=10000 on hs21c + * Resource action: nfs_1 monitor=20000 on hs21c + +Revised cluster status: +Online: [ hs21c ] +OFFLINE: [ hs21d ] + + stonith-1 (stonith:dummy): Started hs21c + apache_1 (ocf::heartbeat:apache): Started hs21c + nfs_1 (ocf::heartbeat:Filesystem): Started hs21c + diff --git a/pengine/test10/systemhealthn3.summary b/pengine/test10/systemhealthn3.summary new file mode 100644 index 0000000000..d0384c3c1c --- /dev/null +++ b/pengine/test10/systemhealthn3.summary @@ -0,0 +1,37 @@ + +Current cluster status: +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) +Online: [ hs21c ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + * Start stonith-1 (hs21c) + * Start apache_1 (hs21c) + * Start nfs_1 (hs21c) + +Executing cluster transition: + * Resource action: stonith-1 monitor on hs21c + * Resource action: apache_1 monitor on hs21c + * Resource action: nfs_1 monitor on hs21c + * Pseudo action: probe_complete + * Resource action: stonith-1 start on hs21c + * Pseudo action: stonith_up + * Fencing hs21d + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + * Resource action: apache_1 start on hs21c + * Resource action: nfs_1 start on hs21c + * Resource action: apache_1 monitor=10000 on hs21c + * Resource action: nfs_1 monitor=20000 on hs21c + +Revised cluster status: +Online: [ hs21c ] +OFFLINE: [ hs21d ] + + stonith-1 (stonith:dummy): Started hs21c + apache_1 (ocf::heartbeat:apache): Started hs21c + nfs_1 (ocf::heartbeat:Filesystem): Started hs21c + diff --git a/pengine/test10/systemhealtho1.summary b/pengine/test10/systemhealtho1.summary new file mode 100644 index 0000000000..c88bbf14e2 --- /dev/null +++ b/pengine/test10/systemhealtho1.summary @@ -0,0 +1,25 @@ + +Current cluster status: +Node hs21c (c97a3ee5-02d8-4fad-a9fb-a79ae2b35549): UNCLEAN (offline) +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing hs21d + * Fencing hs21c + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + +Revised cluster status: +OFFLINE: [ hs21c hs21d ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + diff --git a/pengine/test10/systemhealtho2.summary b/pengine/test10/systemhealtho2.summary new file mode 100644 index 0000000000..5edc3e8545 --- /dev/null +++ b/pengine/test10/systemhealtho2.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) +Online: [ hs21c ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: stonith-1 monitor on hs21c + * Resource action: apache_1 monitor on hs21c + * Resource action: nfs_1 monitor on hs21c + * Pseudo action: stonith_up + * Pseudo action: probe_complete + * Fencing hs21d + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ hs21c ] +OFFLINE: [ hs21d ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + diff --git a/pengine/test10/systemhealtho3.summary b/pengine/test10/systemhealtho3.summary new file mode 100644 index 0000000000..5edc3e8545 --- /dev/null +++ b/pengine/test10/systemhealtho3.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) +Online: [ hs21c ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: stonith-1 monitor on hs21c + * Resource action: apache_1 monitor on hs21c + * Resource action: nfs_1 monitor on hs21c + * Pseudo action: stonith_up + * Pseudo action: probe_complete + * Fencing hs21d + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ hs21c ] +OFFLINE: [ hs21d ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + diff --git a/pengine/test10/systemhealthp1.summary b/pengine/test10/systemhealthp1.summary new file mode 100644 index 0000000000..c88bbf14e2 --- /dev/null +++ b/pengine/test10/systemhealthp1.summary @@ -0,0 +1,25 @@ + +Current cluster status: +Node hs21c (c97a3ee5-02d8-4fad-a9fb-a79ae2b35549): UNCLEAN (offline) +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing hs21d + * Fencing hs21c + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + +Revised cluster status: +OFFLINE: [ hs21c hs21d ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + diff --git a/pengine/test10/systemhealthp2.summary b/pengine/test10/systemhealthp2.summary new file mode 100644 index 0000000000..6e0e4b6ce3 --- /dev/null +++ b/pengine/test10/systemhealthp2.summary @@ -0,0 +1,35 @@ + +Current cluster status: +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) +Online: [ hs21c ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + * Start apache_1 (hs21c) + * Start nfs_1 (hs21c) + +Executing cluster transition: + * Resource action: stonith-1 monitor on hs21c + * Resource action: apache_1 monitor on hs21c + * Resource action: nfs_1 monitor on hs21c + * Pseudo action: stonith_up + * Pseudo action: probe_complete + * Fencing hs21d + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + * Resource action: apache_1 start on hs21c + * Resource action: nfs_1 start on hs21c + * Resource action: apache_1 monitor=10000 on hs21c + * Resource action: nfs_1 monitor=20000 on hs21c + +Revised cluster status: +Online: [ hs21c ] +OFFLINE: [ hs21d ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Started hs21c + nfs_1 (ocf::heartbeat:Filesystem): Started hs21c + diff --git a/pengine/test10/systemhealthp3.summary b/pengine/test10/systemhealthp3.summary new file mode 100644 index 0000000000..5edc3e8545 --- /dev/null +++ b/pengine/test10/systemhealthp3.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Node hs21d (737318c6-0f92-4592-9754-45967d45aff7): UNCLEAN (offline) +Online: [ hs21c ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: stonith-1 monitor on hs21c + * Resource action: apache_1 monitor on hs21c + * Resource action: nfs_1 monitor on hs21c + * Pseudo action: stonith_up + * Pseudo action: probe_complete + * Fencing hs21d + * Pseudo action: stonith_complete + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ hs21c ] +OFFLINE: [ hs21d ] + + stonith-1 (stonith:dummy): Stopped + apache_1 (ocf::heartbeat:apache): Stopped + nfs_1 (ocf::heartbeat:Filesystem): Stopped + diff --git a/pengine/test10/target-0.summary b/pengine/test10/target-0.summary new file mode 100644 index 0000000000..84f397ee9c --- /dev/null +++ b/pengine/test10/target-0.summary @@ -0,0 +1,39 @@ + +Current cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + +Transition Summary: + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n01 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: rsc_c001n08 monitor on c001n01 + * Resource action: rsc_c001n08 monitor on c001n03 + * Resource action: rsc_c001n08 monitor on c001n02 + * Resource action: rsc_c001n02 monitor on c001n01 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n03 monitor on c001n01 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: rsc_c001n01 monitor on c001n02 + * Resource action: rsc_c001n01 monitor on c001n08 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + diff --git a/pengine/test10/target-1.summary b/pengine/test10/target-1.summary new file mode 100644 index 0000000000..7a625538d9 --- /dev/null +++ b/pengine/test10/target-1.summary @@ -0,0 +1,41 @@ + +Current cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + Master/Slave Set: promoteme [rsc_c001n03] + Slaves: [ c001n03 ] + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + +Transition Summary: + * Stop rsc_c001n08 (c001n08) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n01 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: rsc_c001n08 monitor on c001n01 + * Resource action: rsc_c001n08 monitor on c001n03 + * Resource action: rsc_c001n08 monitor on c001n02 + * Resource action: rsc_c001n02 monitor on c001n01 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: rsc_c001n01 monitor on c001n02 + * Resource action: rsc_c001n01 monitor on c001n08 + * Pseudo action: probe_complete + * Resource action: rsc_c001n08 stop on c001n08 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + Master/Slave Set: promoteme [rsc_c001n03] + Slaves: [ c001n03 ] + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + diff --git a/pengine/test10/target-2.summary b/pengine/test10/target-2.summary new file mode 100644 index 0000000000..2f5b805b78 --- /dev/null +++ b/pengine/test10/target-2.summary @@ -0,0 +1,42 @@ + +Current cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Started c001n08 + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + +Transition Summary: + * Stop rsc_c001n08 (c001n08) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n01 + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: DcIPaddr monitor on c001n08 + * Resource action: rsc_c001n08 monitor on c001n01 + * Resource action: rsc_c001n08 monitor on c001n03 + * Resource action: rsc_c001n08 monitor on c001n02 + * Resource action: rsc_c001n02 monitor on c001n01 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n08 + * Resource action: rsc_c001n03 monitor on c001n01 + * Resource action: rsc_c001n03 monitor on c001n02 + * Resource action: rsc_c001n03 monitor on c001n08 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: rsc_c001n01 monitor on c001n02 + * Resource action: rsc_c001n01 monitor on c001n08 + * Pseudo action: probe_complete + * Resource action: rsc_c001n08 stop on c001n08 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ c001n08 c001n02 c001n03 c001n01 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n08 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n02 (ocf::heartbeat:IPaddr): Started c001n02 + rsc_c001n03 (ocf::heartbeat:IPaddr): Started c001n03 + rsc_c001n01 (ocf::heartbeat:IPaddr): Started c001n01 + diff --git a/pengine/test10/template-1.summary b/pengine/test10/template-1.summary new file mode 100644 index 0000000000..c1229be7e9 --- /dev/null +++ b/pengine/test10/template-1.summary @@ -0,0 +1,27 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc2 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Pseudo action: probe_complete + * Pseudo action: load_stopped_node1 + * Pseudo action: load_stopped_node2 + * Resource action: rsc2 start on node1 + * Resource action: rsc2 monitor=10000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Started node1 + diff --git a/pengine/test10/template-2.summary b/pengine/test10/template-2.summary new file mode 100644 index 0000000000..29d1fb846c --- /dev/null +++ b/pengine/test10/template-2.summary @@ -0,0 +1,27 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc2 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Pseudo action: probe_complete + * Pseudo action: load_stopped_node1 + * Pseudo action: load_stopped_node2 + * Resource action: rsc2 start on node1 + * Resource action: rsc2 monitor=20000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Started node1 + diff --git a/pengine/test10/template-3.summary b/pengine/test10/template-3.summary new file mode 100644 index 0000000000..822a78e58b --- /dev/null +++ b/pengine/test10/template-3.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Pseudo action: probe_complete + * Pseudo action: load_stopped_node1 + * Pseudo action: load_stopped_node2 + * Resource action: rsc1 start on node1 + * Resource action: rsc2 monitor=30000 on node1 + * Resource action: rsc2 start on node2 + * Resource action: rsc1 monitor=20000 on node1 + * Resource action: rsc1 monitor=10000 on node1 + * Resource action: rsc2 monitor=5000 on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/template-coloc-1.summary b/pengine/test10/template-coloc-1.summary new file mode 100644 index 0000000000..d743af7ea3 --- /dev/null +++ b/pengine/test10/template-coloc-1.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + rsc4 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node1) + * Start rsc3 (node1) + * Start rsc4 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node1 + * Resource action: rsc3 start on node1 + * Resource action: rsc4 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + rsc4 (ocf::pacemaker:Dummy): Started node1 + diff --git a/pengine/test10/template-coloc-2.summary b/pengine/test10/template-coloc-2.summary new file mode 100644 index 0000000000..d743af7ea3 --- /dev/null +++ b/pengine/test10/template-coloc-2.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + rsc4 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node1) + * Start rsc3 (node1) + * Start rsc4 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node1 + * Resource action: rsc3 start on node1 + * Resource action: rsc4 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + rsc4 (ocf::pacemaker:Dummy): Started node1 + diff --git a/pengine/test10/template-coloc-3.summary b/pengine/test10/template-coloc-3.summary new file mode 100644 index 0000000000..6ccf52d9b5 --- /dev/null +++ b/pengine/test10/template-coloc-3.summary @@ -0,0 +1,50 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + rsc4 (ocf::pacemaker:Dummy): Stopped + rsc5 (ocf::pacemaker:Dummy): Stopped + rsc6 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node2) + * Start rsc3 (node1) + * Start rsc4 (node2) + * Start rsc5 (node1) + * Start rsc6 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Resource action: rsc5 monitor on node2 + * Resource action: rsc5 monitor on node1 + * Resource action: rsc6 monitor on node2 + * Resource action: rsc6 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node2 + * Resource action: rsc3 start on node1 + * Resource action: rsc4 start on node2 + * Resource action: rsc5 start on node1 + * Resource action: rsc6 start on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node2 + rsc3 (ocf::pacemaker:Dummy): Started node1 + rsc4 (ocf::pacemaker:Dummy): Started node2 + rsc5 (ocf::pacemaker:Dummy): Started node1 + rsc6 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/template-order-1.summary b/pengine/test10/template-order-1.summary new file mode 100644 index 0000000000..1bb775a556 --- /dev/null +++ b/pengine/test10/template-order-1.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + rsc4 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node2) + * Start rsc3 (node1) + * Start rsc4 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc4 start on node2 + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node2 + * Resource action: rsc3 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node2 + rsc3 (ocf::pacemaker:Dummy): Started node1 + rsc4 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/template-order-2.summary b/pengine/test10/template-order-2.summary new file mode 100644 index 0000000000..28db8be497 --- /dev/null +++ b/pengine/test10/template-order-2.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + rsc4 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node2) + * Start rsc3 (node1) + * Start rsc4 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc2 start on node2 + * Resource action: rsc3 start on node1 + * Resource action: rsc4 start on node2 + * Resource action: rsc1 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node2 + rsc3 (ocf::pacemaker:Dummy): Started node1 + rsc4 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/template-order-3.summary b/pengine/test10/template-order-3.summary new file mode 100644 index 0000000000..464e183fd3 --- /dev/null +++ b/pengine/test10/template-order-3.summary @@ -0,0 +1,50 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + rsc4 (ocf::pacemaker:Dummy): Stopped + rsc5 (ocf::pacemaker:Dummy): Stopped + rsc6 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node2) + * Start rsc3 (node1) + * Start rsc4 (node2) + * Start rsc5 (node1) + * Start rsc6 (node2) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Resource action: rsc5 monitor on node2 + * Resource action: rsc5 monitor on node1 + * Resource action: rsc6 monitor on node2 + * Resource action: rsc6 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc4 start on node2 + * Resource action: rsc5 start on node1 + * Resource action: rsc6 start on node2 + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node2 + * Resource action: rsc3 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node2 + rsc3 (ocf::pacemaker:Dummy): Started node1 + rsc4 (ocf::pacemaker:Dummy): Started node2 + rsc5 (ocf::pacemaker:Dummy): Started node1 + rsc6 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/template-rsc-sets-1.summary b/pengine/test10/template-rsc-sets-1.summary new file mode 100644 index 0000000000..b7d941504f --- /dev/null +++ b/pengine/test10/template-rsc-sets-1.summary @@ -0,0 +1,44 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + rsc4 (ocf::pacemaker:Dummy): Stopped + rsc5 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node1) + * Start rsc3 (node1) + * Start rsc4 (node1) + * Start rsc5 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Resource action: rsc5 monitor on node2 + * Resource action: rsc5 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc4 start on node1 + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node1 + * Resource action: rsc3 start on node1 + * Resource action: rsc5 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + rsc4 (ocf::pacemaker:Dummy): Started node1 + rsc5 (ocf::pacemaker:Dummy): Started node1 + diff --git a/pengine/test10/template-rsc-sets-2.summary b/pengine/test10/template-rsc-sets-2.summary new file mode 100644 index 0000000000..b7d941504f --- /dev/null +++ b/pengine/test10/template-rsc-sets-2.summary @@ -0,0 +1,44 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + rsc4 (ocf::pacemaker:Dummy): Stopped + rsc5 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node1) + * Start rsc3 (node1) + * Start rsc4 (node1) + * Start rsc5 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Resource action: rsc5 monitor on node2 + * Resource action: rsc5 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc4 start on node1 + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node1 + * Resource action: rsc3 start on node1 + * Resource action: rsc5 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + rsc4 (ocf::pacemaker:Dummy): Started node1 + rsc5 (ocf::pacemaker:Dummy): Started node1 + diff --git a/pengine/test10/template-rsc-sets-3.summary b/pengine/test10/template-rsc-sets-3.summary new file mode 100644 index 0000000000..b7d941504f --- /dev/null +++ b/pengine/test10/template-rsc-sets-3.summary @@ -0,0 +1,44 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + rsc4 (ocf::pacemaker:Dummy): Stopped + rsc5 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node1) + * Start rsc2 (node1) + * Start rsc3 (node1) + * Start rsc4 (node1) + * Start rsc5 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4 monitor on node2 + * Resource action: rsc4 monitor on node1 + * Resource action: rsc5 monitor on node2 + * Resource action: rsc5 monitor on node1 + * Pseudo action: probe_complete + * Resource action: rsc4 start on node1 + * Resource action: rsc1 start on node1 + * Resource action: rsc2 start on node1 + * Resource action: rsc3 start on node1 + * Resource action: rsc5 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Started node1 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + rsc4 (ocf::pacemaker:Dummy): Started node1 + rsc5 (ocf::pacemaker:Dummy): Started node1 + diff --git a/pengine/test10/template-rsc-sets-4.summary b/pengine/test10/template-rsc-sets-4.summary new file mode 100644 index 0000000000..2ef1d1c01c --- /dev/null +++ b/pengine/test10/template-rsc-sets-4.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/template-ticket.summary b/pengine/test10/template-ticket.summary new file mode 100644 index 0000000000..2ef1d1c01c --- /dev/null +++ b/pengine/test10/template-ticket.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-clone-1.summary b/pengine/test10/ticket-clone-1.summary new file mode 100644 index 0000000000..c6087ad9ce --- /dev/null +++ b/pengine/test10/ticket-clone-1.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1:0 monitor on node2 + * Resource action: rsc1:0 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-10.summary b/pengine/test10/ticket-clone-10.summary new file mode 100644 index 0000000000..c6087ad9ce --- /dev/null +++ b/pengine/test10/ticket-clone-10.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1:0 monitor on node2 + * Resource action: rsc1:0 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-11.summary b/pengine/test10/ticket-clone-11.summary new file mode 100644 index 0000000000..dad6efc7e6 --- /dev/null +++ b/pengine/test10/ticket-clone-11.summary @@ -0,0 +1,27 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + * Start rsc1:0 (node2) + * Start rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: clone1_start_0 + * Resource action: rsc1:0 start on node2 + * Resource action: rsc1:1 start on node1 + * Pseudo action: clone1_running_0 + * Resource action: rsc1:0 monitor=5000 on node2 + * Resource action: rsc1:1 monitor=5000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + diff --git a/pengine/test10/ticket-clone-12.summary b/pengine/test10/ticket-clone-12.summary new file mode 100644 index 0000000000..4324e0c7db --- /dev/null +++ b/pengine/test10/ticket-clone-12.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + diff --git a/pengine/test10/ticket-clone-13.summary b/pengine/test10/ticket-clone-13.summary new file mode 100644 index 0000000000..5ba88ce4d3 --- /dev/null +++ b/pengine/test10/ticket-clone-13.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-14.summary b/pengine/test10/ticket-clone-14.summary new file mode 100644 index 0000000000..e97314cf04 --- /dev/null +++ b/pengine/test10/ticket-clone-14.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + +Transition Summary: + * Stop rsc1:0 (node2) + * Stop rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: clone1_stop_0 + * Resource action: rsc1:0 stop on node2 + * Resource action: rsc1:1 stop on node1 + * Pseudo action: clone1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-15.summary b/pengine/test10/ticket-clone-15.summary new file mode 100644 index 0000000000..e97314cf04 --- /dev/null +++ b/pengine/test10/ticket-clone-15.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + +Transition Summary: + * Stop rsc1:0 (node2) + * Stop rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: clone1_stop_0 + * Resource action: rsc1:0 stop on node2 + * Resource action: rsc1:1 stop on node1 + * Pseudo action: clone1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-16.summary b/pengine/test10/ticket-clone-16.summary new file mode 100644 index 0000000000..5ba88ce4d3 --- /dev/null +++ b/pengine/test10/ticket-clone-16.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-17.summary b/pengine/test10/ticket-clone-17.summary new file mode 100644 index 0000000000..e97314cf04 --- /dev/null +++ b/pengine/test10/ticket-clone-17.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + +Transition Summary: + * Stop rsc1:0 (node2) + * Stop rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: clone1_stop_0 + * Resource action: rsc1:0 stop on node2 + * Resource action: rsc1:1 stop on node1 + * Pseudo action: clone1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-18.summary b/pengine/test10/ticket-clone-18.summary new file mode 100644 index 0000000000..e97314cf04 --- /dev/null +++ b/pengine/test10/ticket-clone-18.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + +Transition Summary: + * Stop rsc1:0 (node2) + * Stop rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: clone1_stop_0 + * Resource action: rsc1:0 stop on node2 + * Resource action: rsc1:1 stop on node1 + * Pseudo action: clone1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-19.summary b/pengine/test10/ticket-clone-19.summary new file mode 100644 index 0000000000..5ba88ce4d3 --- /dev/null +++ b/pengine/test10/ticket-clone-19.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-2.summary b/pengine/test10/ticket-clone-2.summary new file mode 100644 index 0000000000..dad6efc7e6 --- /dev/null +++ b/pengine/test10/ticket-clone-2.summary @@ -0,0 +1,27 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + * Start rsc1:0 (node2) + * Start rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: clone1_start_0 + * Resource action: rsc1:0 start on node2 + * Resource action: rsc1:1 start on node1 + * Pseudo action: clone1_running_0 + * Resource action: rsc1:0 monitor=5000 on node2 + * Resource action: rsc1:1 monitor=5000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + diff --git a/pengine/test10/ticket-clone-20.summary b/pengine/test10/ticket-clone-20.summary new file mode 100644 index 0000000000..e97314cf04 --- /dev/null +++ b/pengine/test10/ticket-clone-20.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + +Transition Summary: + * Stop rsc1:0 (node2) + * Stop rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: clone1_stop_0 + * Resource action: rsc1:0 stop on node2 + * Resource action: rsc1:1 stop on node1 + * Pseudo action: clone1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-21.summary b/pengine/test10/ticket-clone-21.summary new file mode 100644 index 0000000000..c4b996b066 --- /dev/null +++ b/pengine/test10/ticket-clone-21.summary @@ -0,0 +1,30 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + +Transition Summary: + * Stop rsc1:0 (node2) + * Stop rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing node1 + * Fencing node2 + * Pseudo action: stonith_complete + * Pseudo action: clone1_stop_0 + * Pseudo action: rsc1:0_stop_0 + * Pseudo action: rsc1:1_stop_0 + * Pseudo action: clone1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +OFFLINE: [ node1 node2 ] + + rsc_stonith (stonith:null): Stopped + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-22.summary b/pengine/test10/ticket-clone-22.summary new file mode 100644 index 0000000000..5ba88ce4d3 --- /dev/null +++ b/pengine/test10/ticket-clone-22.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-23.summary b/pengine/test10/ticket-clone-23.summary new file mode 100644 index 0000000000..e97314cf04 --- /dev/null +++ b/pengine/test10/ticket-clone-23.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + +Transition Summary: + * Stop rsc1:0 (node2) + * Stop rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: clone1_stop_0 + * Resource action: rsc1:0 stop on node2 + * Resource action: rsc1:1 stop on node1 + * Pseudo action: clone1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-24.summary b/pengine/test10/ticket-clone-24.summary new file mode 100644 index 0000000000..4324e0c7db --- /dev/null +++ b/pengine/test10/ticket-clone-24.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + diff --git a/pengine/test10/ticket-clone-3.summary b/pengine/test10/ticket-clone-3.summary new file mode 100644 index 0000000000..e97314cf04 --- /dev/null +++ b/pengine/test10/ticket-clone-3.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + +Transition Summary: + * Stop rsc1:0 (node2) + * Stop rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: clone1_stop_0 + * Resource action: rsc1:0 stop on node2 + * Resource action: rsc1:1 stop on node1 + * Pseudo action: clone1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-4.summary b/pengine/test10/ticket-clone-4.summary new file mode 100644 index 0000000000..c6087ad9ce --- /dev/null +++ b/pengine/test10/ticket-clone-4.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1:0 monitor on node2 + * Resource action: rsc1:0 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-5.summary b/pengine/test10/ticket-clone-5.summary new file mode 100644 index 0000000000..dad6efc7e6 --- /dev/null +++ b/pengine/test10/ticket-clone-5.summary @@ -0,0 +1,27 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + * Start rsc1:0 (node2) + * Start rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: clone1_start_0 + * Resource action: rsc1:0 start on node2 + * Resource action: rsc1:1 start on node1 + * Pseudo action: clone1_running_0 + * Resource action: rsc1:0 monitor=5000 on node2 + * Resource action: rsc1:1 monitor=5000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + diff --git a/pengine/test10/ticket-clone-6.summary b/pengine/test10/ticket-clone-6.summary new file mode 100644 index 0000000000..e97314cf04 --- /dev/null +++ b/pengine/test10/ticket-clone-6.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + +Transition Summary: + * Stop rsc1:0 (node2) + * Stop rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: clone1_stop_0 + * Resource action: rsc1:0 stop on node2 + * Resource action: rsc1:1 stop on node1 + * Pseudo action: clone1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-7.summary b/pengine/test10/ticket-clone-7.summary new file mode 100644 index 0000000000..c6087ad9ce --- /dev/null +++ b/pengine/test10/ticket-clone-7.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1:0 monitor on node2 + * Resource action: rsc1:0 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-clone-8.summary b/pengine/test10/ticket-clone-8.summary new file mode 100644 index 0000000000..dad6efc7e6 --- /dev/null +++ b/pengine/test10/ticket-clone-8.summary @@ -0,0 +1,27 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + * Start rsc1:0 (node2) + * Start rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: clone1_start_0 + * Resource action: rsc1:0 start on node2 + * Resource action: rsc1:1 start on node1 + * Pseudo action: clone1_running_0 + * Resource action: rsc1:0 monitor=5000 on node2 + * Resource action: rsc1:1 monitor=5000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + diff --git a/pengine/test10/ticket-clone-9.summary b/pengine/test10/ticket-clone-9.summary new file mode 100644 index 0000000000..c4b996b066 --- /dev/null +++ b/pengine/test10/ticket-clone-9.summary @@ -0,0 +1,30 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Clone Set: clone1 [rsc1] + Started: [ node2 node1 ] + +Transition Summary: + * Stop rsc1:0 (node2) + * Stop rsc1:1 (node1) + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing node1 + * Fencing node2 + * Pseudo action: stonith_complete + * Pseudo action: clone1_stop_0 + * Pseudo action: rsc1:0_stop_0 + * Pseudo action: rsc1:1_stop_0 + * Pseudo action: clone1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +OFFLINE: [ node1 node2 ] + + rsc_stonith (stonith:null): Stopped + Clone Set: clone1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-group-1.summary b/pengine/test10/ticket-group-1.summary new file mode 100644 index 0000000000..e7e1410be4 --- /dev/null +++ b/pengine/test10/ticket-group-1.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-10.summary b/pengine/test10/ticket-group-10.summary new file mode 100644 index 0000000000..e7e1410be4 --- /dev/null +++ b/pengine/test10/ticket-group-10.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-11.summary b/pengine/test10/ticket-group-11.summary new file mode 100644 index 0000000000..d6adc2bb72 --- /dev/null +++ b/pengine/test10/ticket-group-11.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node2) + * Start rsc2 (node2) + +Executing cluster transition: + * Pseudo action: group1_start_0 + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + * Pseudo action: group1_running_0 + * Resource action: rsc1 monitor=5000 on node2 + * Resource action: rsc2 monitor=5000 on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/ticket-group-12.summary b/pengine/test10/ticket-group-12.summary new file mode 100644 index 0000000000..a325525b60 --- /dev/null +++ b/pengine/test10/ticket-group-12.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/ticket-group-13.summary b/pengine/test10/ticket-group-13.summary new file mode 100644 index 0000000000..a9e46636d1 --- /dev/null +++ b/pengine/test10/ticket-group-13.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-14.summary b/pengine/test10/ticket-group-14.summary new file mode 100644 index 0000000000..c0aaf74ddc --- /dev/null +++ b/pengine/test10/ticket-group-14.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node2) + +Executing cluster transition: + * Pseudo action: group1_stop_0 + * Resource action: rsc2 stop on node2 + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + * Pseudo action: group1_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-15.summary b/pengine/test10/ticket-group-15.summary new file mode 100644 index 0000000000..c0aaf74ddc --- /dev/null +++ b/pengine/test10/ticket-group-15.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node2) + +Executing cluster transition: + * Pseudo action: group1_stop_0 + * Resource action: rsc2 stop on node2 + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + * Pseudo action: group1_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-16.summary b/pengine/test10/ticket-group-16.summary new file mode 100644 index 0000000000..a9e46636d1 --- /dev/null +++ b/pengine/test10/ticket-group-16.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-17.summary b/pengine/test10/ticket-group-17.summary new file mode 100644 index 0000000000..c0aaf74ddc --- /dev/null +++ b/pengine/test10/ticket-group-17.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node2) + +Executing cluster transition: + * Pseudo action: group1_stop_0 + * Resource action: rsc2 stop on node2 + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + * Pseudo action: group1_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-18.summary b/pengine/test10/ticket-group-18.summary new file mode 100644 index 0000000000..c0aaf74ddc --- /dev/null +++ b/pengine/test10/ticket-group-18.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node2) + +Executing cluster transition: + * Pseudo action: group1_stop_0 + * Resource action: rsc2 stop on node2 + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + * Pseudo action: group1_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-19.summary b/pengine/test10/ticket-group-19.summary new file mode 100644 index 0000000000..a9e46636d1 --- /dev/null +++ b/pengine/test10/ticket-group-19.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-2.summary b/pengine/test10/ticket-group-2.summary new file mode 100644 index 0000000000..d6adc2bb72 --- /dev/null +++ b/pengine/test10/ticket-group-2.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node2) + * Start rsc2 (node2) + +Executing cluster transition: + * Pseudo action: group1_start_0 + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + * Pseudo action: group1_running_0 + * Resource action: rsc1 monitor=5000 on node2 + * Resource action: rsc2 monitor=5000 on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/ticket-group-20.summary b/pengine/test10/ticket-group-20.summary new file mode 100644 index 0000000000..c0aaf74ddc --- /dev/null +++ b/pengine/test10/ticket-group-20.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node2) + +Executing cluster transition: + * Pseudo action: group1_stop_0 + * Resource action: rsc2 stop on node2 + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + * Pseudo action: group1_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-21.summary b/pengine/test10/ticket-group-21.summary new file mode 100644 index 0000000000..1fe59642a6 --- /dev/null +++ b/pengine/test10/ticket-group-21.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node2) + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing node2 + * Pseudo action: stonith_complete + * Pseudo action: group1_stop_0 + * Pseudo action: rsc2_stop_0 + * Pseudo action: rsc1_stop_0 + * Pseudo action: all_stopped + * Pseudo action: group1_stopped_0 + +Revised cluster status: +Online: [ node1 ] +OFFLINE: [ node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-22.summary b/pengine/test10/ticket-group-22.summary new file mode 100644 index 0000000000..a9e46636d1 --- /dev/null +++ b/pengine/test10/ticket-group-22.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-23.summary b/pengine/test10/ticket-group-23.summary new file mode 100644 index 0000000000..c0aaf74ddc --- /dev/null +++ b/pengine/test10/ticket-group-23.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node2) + +Executing cluster transition: + * Pseudo action: group1_stop_0 + * Resource action: rsc2 stop on node2 + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + * Pseudo action: group1_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-24.summary b/pengine/test10/ticket-group-24.summary new file mode 100644 index 0000000000..a325525b60 --- /dev/null +++ b/pengine/test10/ticket-group-24.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/ticket-group-3.summary b/pengine/test10/ticket-group-3.summary new file mode 100644 index 0000000000..c0aaf74ddc --- /dev/null +++ b/pengine/test10/ticket-group-3.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node2) + +Executing cluster transition: + * Pseudo action: group1_stop_0 + * Resource action: rsc2 stop on node2 + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + * Pseudo action: group1_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-4.summary b/pengine/test10/ticket-group-4.summary new file mode 100644 index 0000000000..e7e1410be4 --- /dev/null +++ b/pengine/test10/ticket-group-4.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-5.summary b/pengine/test10/ticket-group-5.summary new file mode 100644 index 0000000000..d6adc2bb72 --- /dev/null +++ b/pengine/test10/ticket-group-5.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node2) + * Start rsc2 (node2) + +Executing cluster transition: + * Pseudo action: group1_start_0 + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + * Pseudo action: group1_running_0 + * Resource action: rsc1 monitor=5000 on node2 + * Resource action: rsc2 monitor=5000 on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/ticket-group-6.summary b/pengine/test10/ticket-group-6.summary new file mode 100644 index 0000000000..c0aaf74ddc --- /dev/null +++ b/pengine/test10/ticket-group-6.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node2) + +Executing cluster transition: + * Pseudo action: group1_stop_0 + * Resource action: rsc2 stop on node2 + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + * Pseudo action: group1_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-7.summary b/pengine/test10/ticket-group-7.summary new file mode 100644 index 0000000000..e7e1410be4 --- /dev/null +++ b/pengine/test10/ticket-group-7.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-group-8.summary b/pengine/test10/ticket-group-8.summary new file mode 100644 index 0000000000..d6adc2bb72 --- /dev/null +++ b/pengine/test10/ticket-group-8.summary @@ -0,0 +1,29 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node2) + * Start rsc2 (node2) + +Executing cluster transition: + * Pseudo action: group1_start_0 + * Resource action: rsc1 start on node2 + * Resource action: rsc2 start on node2 + * Pseudo action: group1_running_0 + * Resource action: rsc1 monitor=5000 on node2 + * Resource action: rsc2 monitor=5000 on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/ticket-group-9.summary b/pengine/test10/ticket-group-9.summary new file mode 100644 index 0000000000..1fe59642a6 --- /dev/null +++ b/pengine/test10/ticket-group-9.summary @@ -0,0 +1,32 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + rsc2 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node2) + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing node2 + * Pseudo action: stonith_complete + * Pseudo action: group1_stop_0 + * Pseudo action: rsc2_stop_0 + * Pseudo action: rsc1_stop_0 + * Pseudo action: all_stopped + * Pseudo action: group1_stopped_0 + +Revised cluster status: +Online: [ node1 ] +OFFLINE: [ node2 ] + + rsc_stonith (stonith:null): Started node1 + Resource Group: group1 + rsc1 (ocf::pacemaker:Dummy): Stopped + rsc2 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-master-1.summary b/pengine/test10/ticket-master-1.summary new file mode 100644 index 0000000000..a28786fb55 --- /dev/null +++ b/pengine/test10/ticket-master-1.summary @@ -0,0 +1,22 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1:0 monitor on node2 + * Resource action: rsc1:0 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-master-10.summary b/pengine/test10/ticket-master-10.summary new file mode 100644 index 0000000000..36bda65b7c --- /dev/null +++ b/pengine/test10/ticket-master-10.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + * Start rsc1:0 (node2) + * Start rsc1:1 (node1) + +Executing cluster transition: + * Resource action: rsc1:0 monitor on node2 + * Resource action: rsc1:1 monitor on node1 + * Pseudo action: ms1_start_0 + * Pseudo action: probe_complete + * Resource action: rsc1:0 start on node2 + * Resource action: rsc1:1 start on node1 + * Pseudo action: ms1_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-master-11.summary b/pengine/test10/ticket-master-11.summary new file mode 100644 index 0000000000..a66a9c1f5d --- /dev/null +++ b/pengine/test10/ticket-master-11.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + +Transition Summary: + * Promote rsc1:1 (Slave -> Master node1) + +Executing cluster transition: + * Pseudo action: ms1_promote_0 + * Resource action: rsc1:1 promote on node1 + * Pseudo action: ms1_promoted_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + diff --git a/pengine/test10/ticket-master-12.summary b/pengine/test10/ticket-master-12.summary new file mode 100644 index 0000000000..b7a3115314 --- /dev/null +++ b/pengine/test10/ticket-master-12.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + diff --git a/pengine/test10/ticket-master-13.summary b/pengine/test10/ticket-master-13.summary new file mode 100644 index 0000000000..1f201d379c --- /dev/null +++ b/pengine/test10/ticket-master-13.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-master-14.summary b/pengine/test10/ticket-master-14.summary new file mode 100644 index 0000000000..62005de31b --- /dev/null +++ b/pengine/test10/ticket-master-14.summary @@ -0,0 +1,30 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Stop rsc1:0 (node2) + * Demote rsc1:1 (Master -> Stopped node1) + +Executing cluster transition: + * Pseudo action: ms1_demote_0 + * Resource action: rsc1:1 demote on node1 + * Pseudo action: ms1_demoted_0 + * Pseudo action: ms1_stop_0 + * Resource action: rsc1:0 stop on node2 + * Resource action: rsc1:1 stop on node1 + * Pseudo action: ms1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-master-15.summary b/pengine/test10/ticket-master-15.summary new file mode 100644 index 0000000000..62005de31b --- /dev/null +++ b/pengine/test10/ticket-master-15.summary @@ -0,0 +1,30 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Stop rsc1:0 (node2) + * Demote rsc1:1 (Master -> Stopped node1) + +Executing cluster transition: + * Pseudo action: ms1_demote_0 + * Resource action: rsc1:1 demote on node1 + * Pseudo action: ms1_demoted_0 + * Pseudo action: ms1_stop_0 + * Resource action: rsc1:0 stop on node2 + * Resource action: rsc1:1 stop on node1 + * Pseudo action: ms1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-master-16.summary b/pengine/test10/ticket-master-16.summary new file mode 100644 index 0000000000..355aca3028 --- /dev/null +++ b/pengine/test10/ticket-master-16.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-master-17.summary b/pengine/test10/ticket-master-17.summary new file mode 100644 index 0000000000..206e54bc77 --- /dev/null +++ b/pengine/test10/ticket-master-17.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Demote rsc1:1 (Master -> Slave node1) + +Executing cluster transition: + * Pseudo action: ms1_demote_0 + * Resource action: rsc1:1 demote on node1 + * Pseudo action: ms1_demoted_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-master-18.summary b/pengine/test10/ticket-master-18.summary new file mode 100644 index 0000000000..206e54bc77 --- /dev/null +++ b/pengine/test10/ticket-master-18.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Demote rsc1:1 (Master -> Slave node1) + +Executing cluster transition: + * Pseudo action: ms1_demote_0 + * Resource action: rsc1:1 demote on node1 + * Pseudo action: ms1_demoted_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-master-19.summary b/pengine/test10/ticket-master-19.summary new file mode 100644 index 0000000000..355aca3028 --- /dev/null +++ b/pengine/test10/ticket-master-19.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-master-2.summary b/pengine/test10/ticket-master-2.summary new file mode 100644 index 0000000000..3ba0728543 --- /dev/null +++ b/pengine/test10/ticket-master-2.summary @@ -0,0 +1,30 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + * Start rsc1:0 (node2) + * Start rsc1:1 (node1) + * Promote rsc1:1 (Stopped -> Master node1) + +Executing cluster transition: + * Pseudo action: ms1_start_0 + * Resource action: rsc1:0 start on node2 + * Resource action: rsc1:1 start on node1 + * Pseudo action: ms1_running_0 + * Pseudo action: ms1_promote_0 + * Resource action: rsc1:1 promote on node1 + * Pseudo action: ms1_promoted_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + diff --git a/pengine/test10/ticket-master-20.summary b/pengine/test10/ticket-master-20.summary new file mode 100644 index 0000000000..206e54bc77 --- /dev/null +++ b/pengine/test10/ticket-master-20.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Demote rsc1:1 (Master -> Slave node1) + +Executing cluster transition: + * Pseudo action: ms1_demote_0 + * Resource action: rsc1:1 demote on node1 + * Pseudo action: ms1_demoted_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-master-21.summary b/pengine/test10/ticket-master-21.summary new file mode 100644 index 0000000000..0d0f107ceb --- /dev/null +++ b/pengine/test10/ticket-master-21.summary @@ -0,0 +1,33 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Demote rsc1:1 (Master -> Stopped node1) + +Executing cluster transition: + * Pseudo action: ms1_demote_0 + * Pseudo action: stonith_up + * Fencing node1 + * Pseudo action: stonith_complete + * Pseudo action: rsc1:1_demote_0 + * Pseudo action: ms1_demoted_0 + * Pseudo action: ms1_stop_0 + * Pseudo action: rsc1:1_stop_0 + * Pseudo action: ms1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + rsc_stonith (stonith:null): Stopped + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 ] + Stopped: [ rsc1:1 ] + diff --git a/pengine/test10/ticket-master-22.summary b/pengine/test10/ticket-master-22.summary new file mode 100644 index 0000000000..355aca3028 --- /dev/null +++ b/pengine/test10/ticket-master-22.summary @@ -0,0 +1,19 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-master-23.summary b/pengine/test10/ticket-master-23.summary new file mode 100644 index 0000000000..206e54bc77 --- /dev/null +++ b/pengine/test10/ticket-master-23.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Demote rsc1:1 (Master -> Slave node1) + +Executing cluster transition: + * Pseudo action: ms1_demote_0 + * Resource action: rsc1:1 demote on node1 + * Pseudo action: ms1_demoted_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-master-24.summary b/pengine/test10/ticket-master-24.summary new file mode 100644 index 0000000000..b7a3115314 --- /dev/null +++ b/pengine/test10/ticket-master-24.summary @@ -0,0 +1,21 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + diff --git a/pengine/test10/ticket-master-3.summary b/pengine/test10/ticket-master-3.summary new file mode 100644 index 0000000000..62005de31b --- /dev/null +++ b/pengine/test10/ticket-master-3.summary @@ -0,0 +1,30 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Stop rsc1:0 (node2) + * Demote rsc1:1 (Master -> Stopped node1) + +Executing cluster transition: + * Pseudo action: ms1_demote_0 + * Resource action: rsc1:1 demote on node1 + * Pseudo action: ms1_demoted_0 + * Pseudo action: ms1_stop_0 + * Resource action: rsc1:0 stop on node2 + * Resource action: rsc1:1 stop on node1 + * Pseudo action: ms1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + diff --git a/pengine/test10/ticket-master-4.summary b/pengine/test10/ticket-master-4.summary new file mode 100644 index 0000000000..36bda65b7c --- /dev/null +++ b/pengine/test10/ticket-master-4.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + * Start rsc1:0 (node2) + * Start rsc1:1 (node1) + +Executing cluster transition: + * Resource action: rsc1:0 monitor on node2 + * Resource action: rsc1:1 monitor on node1 + * Pseudo action: ms1_start_0 + * Pseudo action: probe_complete + * Resource action: rsc1:0 start on node2 + * Resource action: rsc1:1 start on node1 + * Pseudo action: ms1_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-master-5.summary b/pengine/test10/ticket-master-5.summary new file mode 100644 index 0000000000..a66a9c1f5d --- /dev/null +++ b/pengine/test10/ticket-master-5.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + +Transition Summary: + * Promote rsc1:1 (Slave -> Master node1) + +Executing cluster transition: + * Pseudo action: ms1_promote_0 + * Resource action: rsc1:1 promote on node1 + * Pseudo action: ms1_promoted_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + diff --git a/pengine/test10/ticket-master-6.summary b/pengine/test10/ticket-master-6.summary new file mode 100644 index 0000000000..206e54bc77 --- /dev/null +++ b/pengine/test10/ticket-master-6.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Demote rsc1:1 (Master -> Slave node1) + +Executing cluster transition: + * Pseudo action: ms1_demote_0 + * Resource action: rsc1:1 demote on node1 + * Pseudo action: ms1_demoted_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-master-7.summary b/pengine/test10/ticket-master-7.summary new file mode 100644 index 0000000000..36bda65b7c --- /dev/null +++ b/pengine/test10/ticket-master-7.summary @@ -0,0 +1,28 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Stopped: [ rsc1:0 rsc1:1 ] + +Transition Summary: + * Start rsc1:0 (node2) + * Start rsc1:1 (node1) + +Executing cluster transition: + * Resource action: rsc1:0 monitor on node2 + * Resource action: rsc1:1 monitor on node1 + * Pseudo action: ms1_start_0 + * Pseudo action: probe_complete + * Resource action: rsc1:0 start on node2 + * Resource action: rsc1:1 start on node1 + * Pseudo action: ms1_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-master-8.summary b/pengine/test10/ticket-master-8.summary new file mode 100644 index 0000000000..a66a9c1f5d --- /dev/null +++ b/pengine/test10/ticket-master-8.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 node1 ] + +Transition Summary: + * Promote rsc1:1 (Slave -> Master node1) + +Executing cluster transition: + * Pseudo action: ms1_promote_0 + * Resource action: rsc1:1 promote on node1 + * Pseudo action: ms1_promoted_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + diff --git a/pengine/test10/ticket-master-9.summary b/pengine/test10/ticket-master-9.summary new file mode 100644 index 0000000000..0d0f107ceb --- /dev/null +++ b/pengine/test10/ticket-master-9.summary @@ -0,0 +1,33 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + Master/Slave Set: ms1 [rsc1] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Demote rsc1:1 (Master -> Stopped node1) + +Executing cluster transition: + * Pseudo action: ms1_demote_0 + * Pseudo action: stonith_up + * Fencing node1 + * Pseudo action: stonith_complete + * Pseudo action: rsc1:1_demote_0 + * Pseudo action: ms1_demoted_0 + * Pseudo action: ms1_stop_0 + * Pseudo action: rsc1:1_stop_0 + * Pseudo action: ms1_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node2 ] +OFFLINE: [ node1 ] + + rsc_stonith (stonith:null): Stopped + Master/Slave Set: ms1 [rsc1] + Slaves: [ node2 ] + Stopped: [ rsc1:1 ] + diff --git a/pengine/test10/ticket-primitive-1.summary b/pengine/test10/ticket-primitive-1.summary new file mode 100644 index 0000000000..066b25185d --- /dev/null +++ b/pengine/test10/ticket-primitive-1.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-10.summary b/pengine/test10/ticket-primitive-10.summary new file mode 100644 index 0000000000..066b25185d --- /dev/null +++ b/pengine/test10/ticket-primitive-10.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-11.summary b/pengine/test10/ticket-primitive-11.summary new file mode 100644 index 0000000000..2877ef96e0 --- /dev/null +++ b/pengine/test10/ticket-primitive-11.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 start on node2 + * Resource action: rsc1 monitor=10000 on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/ticket-primitive-12.summary b/pengine/test10/ticket-primitive-12.summary new file mode 100644 index 0000000000..c00c808228 --- /dev/null +++ b/pengine/test10/ticket-primitive-12.summary @@ -0,0 +1,17 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/ticket-primitive-13.summary b/pengine/test10/ticket-primitive-13.summary new file mode 100644 index 0000000000..c8232d72c7 --- /dev/null +++ b/pengine/test10/ticket-primitive-13.summary @@ -0,0 +1,17 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-14.summary b/pengine/test10/ticket-primitive-14.summary new file mode 100644 index 0000000000..fa7558aabc --- /dev/null +++ b/pengine/test10/ticket-primitive-14.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-15.summary b/pengine/test10/ticket-primitive-15.summary new file mode 100644 index 0000000000..fa7558aabc --- /dev/null +++ b/pengine/test10/ticket-primitive-15.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-16.summary b/pengine/test10/ticket-primitive-16.summary new file mode 100644 index 0000000000..c8232d72c7 --- /dev/null +++ b/pengine/test10/ticket-primitive-16.summary @@ -0,0 +1,17 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-17.summary b/pengine/test10/ticket-primitive-17.summary new file mode 100644 index 0000000000..fa7558aabc --- /dev/null +++ b/pengine/test10/ticket-primitive-17.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-18.summary b/pengine/test10/ticket-primitive-18.summary new file mode 100644 index 0000000000..fa7558aabc --- /dev/null +++ b/pengine/test10/ticket-primitive-18.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-19.summary b/pengine/test10/ticket-primitive-19.summary new file mode 100644 index 0000000000..c8232d72c7 --- /dev/null +++ b/pengine/test10/ticket-primitive-19.summary @@ -0,0 +1,17 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-2.summary b/pengine/test10/ticket-primitive-2.summary new file mode 100644 index 0000000000..2877ef96e0 --- /dev/null +++ b/pengine/test10/ticket-primitive-2.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 start on node2 + * Resource action: rsc1 monitor=10000 on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/ticket-primitive-20.summary b/pengine/test10/ticket-primitive-20.summary new file mode 100644 index 0000000000..fa7558aabc --- /dev/null +++ b/pengine/test10/ticket-primitive-20.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-21.summary b/pengine/test10/ticket-primitive-21.summary new file mode 100644 index 0000000000..c3cf0990aa --- /dev/null +++ b/pengine/test10/ticket-primitive-21.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing node2 + * Pseudo action: stonith_complete + * Pseudo action: rsc1_stop_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 ] +OFFLINE: [ node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-22.summary b/pengine/test10/ticket-primitive-22.summary new file mode 100644 index 0000000000..c8232d72c7 --- /dev/null +++ b/pengine/test10/ticket-primitive-22.summary @@ -0,0 +1,17 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-23.summary b/pengine/test10/ticket-primitive-23.summary new file mode 100644 index 0000000000..fa7558aabc --- /dev/null +++ b/pengine/test10/ticket-primitive-23.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-24.summary b/pengine/test10/ticket-primitive-24.summary new file mode 100644 index 0000000000..c00c808228 --- /dev/null +++ b/pengine/test10/ticket-primitive-24.summary @@ -0,0 +1,17 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/ticket-primitive-3.summary b/pengine/test10/ticket-primitive-3.summary new file mode 100644 index 0000000000..fa7558aabc --- /dev/null +++ b/pengine/test10/ticket-primitive-3.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-4.summary b/pengine/test10/ticket-primitive-4.summary new file mode 100644 index 0000000000..066b25185d --- /dev/null +++ b/pengine/test10/ticket-primitive-4.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-5.summary b/pengine/test10/ticket-primitive-5.summary new file mode 100644 index 0000000000..2877ef96e0 --- /dev/null +++ b/pengine/test10/ticket-primitive-5.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 start on node2 + * Resource action: rsc1 monitor=10000 on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/ticket-primitive-6.summary b/pengine/test10/ticket-primitive-6.summary new file mode 100644 index 0000000000..fa7558aabc --- /dev/null +++ b/pengine/test10/ticket-primitive-6.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-7.summary b/pengine/test10/ticket-primitive-7.summary new file mode 100644 index 0000000000..066b25185d --- /dev/null +++ b/pengine/test10/ticket-primitive-7.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Pseudo action: probe_complete + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-primitive-8.summary b/pengine/test10/ticket-primitive-8.summary new file mode 100644 index 0000000000..2877ef96e0 --- /dev/null +++ b/pengine/test10/ticket-primitive-8.summary @@ -0,0 +1,20 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc1 start on node2 + * Resource action: rsc1 monitor=10000 on node2 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/ticket-primitive-9.summary b/pengine/test10/ticket-primitive-9.summary new file mode 100644 index 0000000000..c3cf0990aa --- /dev/null +++ b/pengine/test10/ticket-primitive-9.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Stop rsc1 (node2) + +Executing cluster transition: + * Pseudo action: stonith_up + * Fencing node2 + * Pseudo action: stonith_complete + * Pseudo action: rsc1_stop_0 + * Pseudo action: all_stopped + +Revised cluster status: +Online: [ node1 ] +OFFLINE: [ node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/ticket-rsc-sets-1.summary b/pengine/test10/ticket-rsc-sets-1.summary new file mode 100644 index 0000000000..c392e89e50 --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-1.summary @@ -0,0 +1,48 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Stopped: [ rsc5:0 rsc5:1 ] + +Transition Summary: + * Start rsc5:0 (node2) + * Start rsc5:1 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4:0 monitor on node2 + * Resource action: rsc4:0 monitor on node1 + * Resource action: rsc5:0 monitor on node2 + * Resource action: rsc5:1 monitor on node1 + * Pseudo action: ms5_start_0 + * Pseudo action: probe_complete + * Resource action: rsc5:0 start on node2 + * Resource action: rsc5:1 start on node1 + * Pseudo action: ms5_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-rsc-sets-10.summary b/pengine/test10/ticket-rsc-sets-10.summary new file mode 100644 index 0000000000..4ab7a7a926 --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-10.summary @@ -0,0 +1,51 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + Clone Set: clone4 [rsc4] + Started: [ node2 node1 ] + Master/Slave Set: ms5 [rsc5] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node1) + * Stop rsc3 (node1) + * Stop rsc4:0 (node2) + * Stop rsc4:1 (node1) + * Demote rsc5:1 (Master -> Slave node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: group2_stop_0 + * Resource action: rsc3 stop on node1 + * Pseudo action: clone4_stop_0 + * Pseudo action: ms5_demote_0 + * Resource action: rsc2 stop on node1 + * Resource action: rsc4:0 stop on node2 + * Resource action: rsc4:1 stop on node1 + * Pseudo action: clone4_stopped_0 + * Resource action: rsc5:1 demote on node1 + * Pseudo action: ms5_demoted_0 + * Pseudo action: all_stopped + * Pseudo action: group2_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-rsc-sets-11.summary b/pengine/test10/ticket-rsc-sets-11.summary new file mode 100644 index 0000000000..88b598660f --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-11.summary @@ -0,0 +1,31 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-rsc-sets-12.summary b/pengine/test10/ticket-rsc-sets-12.summary new file mode 100644 index 0000000000..2aa393ae4f --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-12.summary @@ -0,0 +1,40 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node1) + * Stop rsc3 (node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: group2_stop_0 + * Resource action: rsc3 stop on node1 + * Resource action: rsc2 stop on node1 + * Pseudo action: all_stopped + * Pseudo action: group2_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-rsc-sets-13.summary b/pengine/test10/ticket-rsc-sets-13.summary new file mode 100644 index 0000000000..4ab7a7a926 --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-13.summary @@ -0,0 +1,51 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + Clone Set: clone4 [rsc4] + Started: [ node2 node1 ] + Master/Slave Set: ms5 [rsc5] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node1) + * Stop rsc3 (node1) + * Stop rsc4:0 (node2) + * Stop rsc4:1 (node1) + * Demote rsc5:1 (Master -> Slave node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: group2_stop_0 + * Resource action: rsc3 stop on node1 + * Pseudo action: clone4_stop_0 + * Pseudo action: ms5_demote_0 + * Resource action: rsc2 stop on node1 + * Resource action: rsc4:0 stop on node2 + * Resource action: rsc4:1 stop on node1 + * Pseudo action: clone4_stopped_0 + * Resource action: rsc5:1 demote on node1 + * Pseudo action: ms5_demoted_0 + * Pseudo action: all_stopped + * Pseudo action: group2_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-rsc-sets-14.summary b/pengine/test10/ticket-rsc-sets-14.summary new file mode 100644 index 0000000000..4ab7a7a926 --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-14.summary @@ -0,0 +1,51 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + Clone Set: clone4 [rsc4] + Started: [ node2 node1 ] + Master/Slave Set: ms5 [rsc5] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node1) + * Stop rsc3 (node1) + * Stop rsc4:0 (node2) + * Stop rsc4:1 (node1) + * Demote rsc5:1 (Master -> Slave node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: group2_stop_0 + * Resource action: rsc3 stop on node1 + * Pseudo action: clone4_stop_0 + * Pseudo action: ms5_demote_0 + * Resource action: rsc2 stop on node1 + * Resource action: rsc4:0 stop on node2 + * Resource action: rsc4:1 stop on node1 + * Pseudo action: clone4_stopped_0 + * Resource action: rsc5:1 demote on node1 + * Pseudo action: ms5_demoted_0 + * Pseudo action: all_stopped + * Pseudo action: group2_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-rsc-sets-2.summary b/pengine/test10/ticket-rsc-sets-2.summary new file mode 100644 index 0000000000..8e08b5e39b --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-2.summary @@ -0,0 +1,55 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + +Transition Summary: + * Start rsc1 (node2) + * Start rsc2 (node1) + * Start rsc3 (node1) + * Start rsc4:0 (node2) + * Start rsc4:1 (node1) + * Promote rsc5:1 (Slave -> Master node1) + +Executing cluster transition: + * Resource action: rsc1 start on node2 + * Pseudo action: group2_start_0 + * Resource action: rsc2 start on node1 + * Resource action: rsc3 start on node1 + * Pseudo action: clone4_start_0 + * Pseudo action: ms5_promote_0 + * Resource action: rsc1 monitor=10000 on node2 + * Pseudo action: group2_running_0 + * Resource action: rsc2 monitor=5000 on node1 + * Resource action: rsc3 monitor=5000 on node1 + * Resource action: rsc4:0 start on node2 + * Resource action: rsc4:1 start on node1 + * Pseudo action: clone4_running_0 + * Resource action: rsc5:1 promote on node1 + * Pseudo action: ms5_promoted_0 + * Resource action: rsc4:0 monitor=5000 on node2 + * Resource action: rsc4:1 monitor=5000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + Clone Set: clone4 [rsc4] + Started: [ node2 node1 ] + Master/Slave Set: ms5 [rsc5] + Masters: [ node1 ] + Slaves: [ node2 ] + diff --git a/pengine/test10/ticket-rsc-sets-3.summary b/pengine/test10/ticket-rsc-sets-3.summary new file mode 100644 index 0000000000..4ab7a7a926 --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-3.summary @@ -0,0 +1,51 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + Clone Set: clone4 [rsc4] + Started: [ node2 node1 ] + Master/Slave Set: ms5 [rsc5] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node1) + * Stop rsc3 (node1) + * Stop rsc4:0 (node2) + * Stop rsc4:1 (node1) + * Demote rsc5:1 (Master -> Slave node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: group2_stop_0 + * Resource action: rsc3 stop on node1 + * Pseudo action: clone4_stop_0 + * Pseudo action: ms5_demote_0 + * Resource action: rsc2 stop on node1 + * Resource action: rsc4:0 stop on node2 + * Resource action: rsc4:1 stop on node1 + * Pseudo action: clone4_stopped_0 + * Resource action: rsc5:1 demote on node1 + * Pseudo action: ms5_demoted_0 + * Pseudo action: all_stopped + * Pseudo action: group2_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-rsc-sets-4.summary b/pengine/test10/ticket-rsc-sets-4.summary new file mode 100644 index 0000000000..c392e89e50 --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-4.summary @@ -0,0 +1,48 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Stopped: [ rsc5:0 rsc5:1 ] + +Transition Summary: + * Start rsc5:0 (node2) + * Start rsc5:1 (node1) + +Executing cluster transition: + * Resource action: rsc1 monitor on node2 + * Resource action: rsc1 monitor on node1 + * Resource action: rsc2 monitor on node2 + * Resource action: rsc2 monitor on node1 + * Resource action: rsc3 monitor on node2 + * Resource action: rsc3 monitor on node1 + * Resource action: rsc4:0 monitor on node2 + * Resource action: rsc4:0 monitor on node1 + * Resource action: rsc5:0 monitor on node2 + * Resource action: rsc5:1 monitor on node1 + * Pseudo action: ms5_start_0 + * Pseudo action: probe_complete + * Resource action: rsc5:0 start on node2 + * Resource action: rsc5:1 start on node1 + * Pseudo action: ms5_running_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-rsc-sets-5.summary b/pengine/test10/ticket-rsc-sets-5.summary new file mode 100644 index 0000000000..2c607c8635 --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-5.summary @@ -0,0 +1,42 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + +Transition Summary: + * Start rsc1 (node2) + * Start rsc2 (node1) + * Start rsc3 (node1) + +Executing cluster transition: + * Resource action: rsc1 start on node2 + * Pseudo action: group2_start_0 + * Resource action: rsc2 start on node1 + * Resource action: rsc3 start on node1 + * Resource action: rsc1 monitor=10000 on node2 + * Pseudo action: group2_running_0 + * Resource action: rsc2 monitor=5000 on node1 + * Resource action: rsc3 monitor=5000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-rsc-sets-6.summary b/pengine/test10/ticket-rsc-sets-6.summary new file mode 100644 index 0000000000..a1d5773c4c --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-6.summary @@ -0,0 +1,44 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + +Transition Summary: + * Start rsc4:0 (node2) + * Start rsc4:1 (node1) + * Promote rsc5:1 (Slave -> Master node1) + +Executing cluster transition: + * Pseudo action: clone4_start_0 + * Pseudo action: ms5_promote_0 + * Resource action: rsc4:0 start on node2 + * Resource action: rsc4:1 start on node1 + * Pseudo action: clone4_running_0 + * Resource action: rsc5:1 promote on node1 + * Pseudo action: ms5_promoted_0 + * Resource action: rsc4:0 monitor=5000 on node2 + * Resource action: rsc4:1 monitor=5000 on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + Clone Set: clone4 [rsc4] + Started: [ node2 node1 ] + Master/Slave Set: ms5 [rsc5] + Masters: [ node1 ] + Slaves: [ node2 ] + diff --git a/pengine/test10/ticket-rsc-sets-7.summary b/pengine/test10/ticket-rsc-sets-7.summary new file mode 100644 index 0000000000..4ab7a7a926 --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-7.summary @@ -0,0 +1,51 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + Clone Set: clone4 [rsc4] + Started: [ node2 node1 ] + Master/Slave Set: ms5 [rsc5] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node1) + * Stop rsc3 (node1) + * Stop rsc4:0 (node2) + * Stop rsc4:1 (node1) + * Demote rsc5:1 (Master -> Slave node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: group2_stop_0 + * Resource action: rsc3 stop on node1 + * Pseudo action: clone4_stop_0 + * Pseudo action: ms5_demote_0 + * Resource action: rsc2 stop on node1 + * Resource action: rsc4:0 stop on node2 + * Resource action: rsc4:1 stop on node1 + * Pseudo action: clone4_stopped_0 + * Resource action: rsc5:1 demote on node1 + * Pseudo action: ms5_demoted_0 + * Pseudo action: all_stopped + * Pseudo action: group2_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-rsc-sets-8.summary b/pengine/test10/ticket-rsc-sets-8.summary new file mode 100644 index 0000000000..88b598660f --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-8.summary @@ -0,0 +1,31 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + +Transition Summary: + +Executing cluster transition: + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/ticket-rsc-sets-9.summary b/pengine/test10/ticket-rsc-sets-9.summary new file mode 100644 index 0000000000..4ab7a7a926 --- /dev/null +++ b/pengine/test10/ticket-rsc-sets-9.summary @@ -0,0 +1,51 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node1 + Clone Set: clone4 [rsc4] + Started: [ node2 node1 ] + Master/Slave Set: ms5 [rsc5] + Masters: [ node1 ] + Slaves: [ node2 ] + +Transition Summary: + * Stop rsc1 (node2) + * Stop rsc2 (node1) + * Stop rsc3 (node1) + * Stop rsc4:0 (node2) + * Stop rsc4:1 (node1) + * Demote rsc5:1 (Master -> Slave node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node2 + * Pseudo action: group2_stop_0 + * Resource action: rsc3 stop on node1 + * Pseudo action: clone4_stop_0 + * Pseudo action: ms5_demote_0 + * Resource action: rsc2 stop on node1 + * Resource action: rsc4:0 stop on node2 + * Resource action: rsc4:1 stop on node1 + * Pseudo action: clone4_stopped_0 + * Resource action: rsc5:1 demote on node1 + * Pseudo action: ms5_demoted_0 + * Pseudo action: all_stopped + * Pseudo action: group2_stopped_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc_stonith (stonith:null): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + Resource Group: group2 + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Stopped + Clone Set: clone4 [rsc4] + Stopped: [ rsc4:0 rsc4:1 ] + Master/Slave Set: ms5 [rsc5] + Slaves: [ node2 node1 ] + diff --git a/pengine/test10/unmanaged-master.summary b/pengine/test10/unmanaged-master.summary new file mode 100644 index 0000000000..a736ddb379 --- /dev/null +++ b/pengine/test10/unmanaged-master.summary @@ -0,0 +1,61 @@ + +Current cluster status: +Online: [ pcmk-1 pcmk-2 ] +OFFLINE: [ pcmk-3 pcmk-4 ] + + Clone Set: Fencing [FencingChild] (unmanaged) + FencingChild:1 (stonith:fence_xvm): Started pcmk-1 (unmanaged) + FencingChild:2 (stonith:fence_xvm): Started pcmk-2 (unmanaged) + Stopped: [ FencingChild:0 FencingChild:3 ] + Resource Group: group-1 + r192.168.122.126 (ocf::heartbeat:IPaddr): Started pcmk-2 (unmanaged) + r192.168.122.127 (ocf::heartbeat:IPaddr): Started pcmk-2 (unmanaged) + r192.168.122.128 (ocf::heartbeat:IPaddr): Started pcmk-2 (unmanaged) + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 (unmanaged) + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 (unmanaged) + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 (unmanaged) + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-4 (unmanaged) + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Started pcmk-2 (unmanaged) + migrator (ocf::pacemaker:Dummy): Started pcmk-4 (unmanaged) + Clone Set: Connectivity [ping-1] (unmanaged) + ping-1:1 (ocf::pacemaker:ping): Started pcmk-2 (unmanaged) + ping-1:3 (ocf::pacemaker:ping): Started pcmk-1 (unmanaged) + Stopped: [ ping-1:0 ping-1:2 ] + Master/Slave Set: master-1 [stateful-1] (unmanaged) + stateful-1:0 (ocf::pacemaker:Stateful): Master pcmk-2 (unmanaged) + stateful-1:1 (ocf::pacemaker:Stateful): Started pcmk-1 (unmanaged) + Stopped: [ stateful-1:2 stateful-1:3 ] + +Transition Summary: + +Executing cluster transition: + * Cluster action: do_shutdown on pcmk-2 + * Cluster action: do_shutdown on pcmk-1 + +Revised cluster status: +Online: [ pcmk-1 pcmk-2 ] +OFFLINE: [ pcmk-3 pcmk-4 ] + + Clone Set: Fencing [FencingChild] (unmanaged) + FencingChild:1 (stonith:fence_xvm): Started pcmk-1 (unmanaged) + FencingChild:2 (stonith:fence_xvm): Started pcmk-2 (unmanaged) + Stopped: [ FencingChild:0 FencingChild:3 ] + Resource Group: group-1 + r192.168.122.126 (ocf::heartbeat:IPaddr): Started pcmk-2 (unmanaged) + r192.168.122.127 (ocf::heartbeat:IPaddr): Started pcmk-2 (unmanaged) + r192.168.122.128 (ocf::heartbeat:IPaddr): Started pcmk-2 (unmanaged) + rsc_pcmk-1 (ocf::heartbeat:IPaddr): Started pcmk-1 (unmanaged) + rsc_pcmk-2 (ocf::heartbeat:IPaddr): Started pcmk-2 (unmanaged) + rsc_pcmk-3 (ocf::heartbeat:IPaddr): Started pcmk-3 (unmanaged) + rsc_pcmk-4 (ocf::heartbeat:IPaddr): Started pcmk-4 (unmanaged) + lsb-dummy (lsb:/usr/share/pacemaker/tests/cts/LSBDummy): Started pcmk-2 (unmanaged) + migrator (ocf::pacemaker:Dummy): Started pcmk-4 (unmanaged) + Clone Set: Connectivity [ping-1] (unmanaged) + ping-1:1 (ocf::pacemaker:ping): Started pcmk-2 (unmanaged) + ping-1:3 (ocf::pacemaker:ping): Started pcmk-1 (unmanaged) + Stopped: [ ping-1:0 ping-1:2 ] + Master/Slave Set: master-1 [stateful-1] (unmanaged) + stateful-1:0 (ocf::pacemaker:Stateful): Master pcmk-2 (unmanaged) + stateful-1:1 (ocf::pacemaker:Stateful): Started pcmk-1 (unmanaged) + Stopped: [ stateful-1:2 stateful-1:3 ] + diff --git a/pengine/test10/unrunnable-1.summary b/pengine/test10/unrunnable-1.summary new file mode 100644 index 0000000000..ec05391e41 --- /dev/null +++ b/pengine/test10/unrunnable-1.summary @@ -0,0 +1,66 @@ + +Current cluster status: +Node c001n02 (e9bdfde9-01b0-421f-acd8-8a65a53e775f): UNCLEAN (offline) +Online: [ c001n03 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Stopped + Resource Group: group-1 + child_192.168.100.181 (ocf::heartbeat:IPaddr): Stopped + child_192.168.100.182 (ocf::heartbeat:IPaddr): Stopped + child_192.168.100.183 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n08 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n02 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n03 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n01 (ocf::heartbeat:IPaddr): Stopped + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n03 + child_DoFencing:1 (stonith:ssh): Started c001n02 + child_DoFencing:2 (stonith:ssh): Stopped + child_DoFencing:3 (stonith:ssh): Stopped + +Transition Summary: + * Start DcIPaddr (c001n03 - blocked) + * Start child_192.168.100.181 (c001n03 - blocked) + * Start child_192.168.100.182 (c001n03 - blocked) + * Start child_192.168.100.183 (c001n03 - blocked) + * Start rsc_c001n08 (c001n03 - blocked) + * Start rsc_c001n02 (c001n03 - blocked) + * Start rsc_c001n03 (c001n03 - blocked) + * Start rsc_c001n01 (c001n03 - blocked) + * Stop child_DoFencing:1 (c001n02) + +Executing cluster transition: + * Resource action: DcIPaddr monitor on c001n03 + * Resource action: child_192.168.100.181 monitor on c001n03 + * Resource action: child_192.168.100.182 monitor on c001n03 + * Resource action: child_192.168.100.183 monitor on c001n03 + * Resource action: rsc_c001n08 monitor on c001n03 + * Resource action: rsc_c001n02 monitor on c001n03 + * Resource action: rsc_c001n03 monitor on c001n03 + * Resource action: rsc_c001n01 monitor on c001n03 + * Resource action: child_DoFencing:1 monitor on c001n03 + * Resource action: child_DoFencing:2 monitor on c001n03 + * Resource action: child_DoFencing:3 monitor on c001n03 + * Pseudo action: DoFencing_stop_0 + * Pseudo action: probe_complete + * Pseudo action: DoFencing_stopped_0 + +Revised cluster status: +Node c001n02 (e9bdfde9-01b0-421f-acd8-8a65a53e775f): UNCLEAN (offline) +Online: [ c001n03 ] + + DcIPaddr (ocf::heartbeat:IPaddr): Stopped + Resource Group: group-1 + child_192.168.100.181 (ocf::heartbeat:IPaddr): Stopped + child_192.168.100.182 (ocf::heartbeat:IPaddr): Stopped + child_192.168.100.183 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n08 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n02 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n03 (ocf::heartbeat:IPaddr): Stopped + rsc_c001n01 (ocf::heartbeat:IPaddr): Stopped + Clone Set: DoFencing [child_DoFencing] (unique) + child_DoFencing:0 (stonith:ssh): Started c001n03 + child_DoFencing:1 (stonith:ssh): Started c001n02 + child_DoFencing:2 (stonith:ssh): Stopped + child_DoFencing:3 (stonith:ssh): Stopped + diff --git a/pengine/test10/use-after-free-merge.summary b/pengine/test10/use-after-free-merge.summary new file mode 100644 index 0000000000..cc17523a27 --- /dev/null +++ b/pengine/test10/use-after-free-merge.summary @@ -0,0 +1,42 @@ + +Current cluster status: +Online: [ hex-13 hex-14 ] + + fencing-sbd (stonith:external/sbd): Stopped + Resource Group: g0 + d0 (ocf::heartbeat:Dummy): Stopped + d1 (ocf::heartbeat:Dummy): Stopped + Master/Slave Set: ms0 [s0] + Stopped: [ s0:0 s0:1 ] + +Transition Summary: + * Start fencing-sbd (hex-14) + * Start s0:0 (hex-13) + * Start s0:1 (hex-14) + +Executing cluster transition: + * Resource action: fencing-sbd monitor on hex-14 + * Resource action: fencing-sbd monitor on hex-13 + * Resource action: d0 monitor on hex-14 + * Resource action: d0 monitor on hex-13 + * Resource action: d1 monitor on hex-14 + * Resource action: d1 monitor on hex-13 + * Resource action: s0:0 monitor on hex-13 + * Resource action: s0:1 monitor on hex-14 + * Pseudo action: ms0_start_0 + * Pseudo action: probe_complete + * Resource action: fencing-sbd start on hex-14 + * Resource action: s0:0 start on hex-13 + * Resource action: s0:1 start on hex-14 + * Pseudo action: ms0_running_0 + +Revised cluster status: +Online: [ hex-13 hex-14 ] + + fencing-sbd (stonith:external/sbd): Started hex-14 + Resource Group: g0 + d0 (ocf::heartbeat:Dummy): Stopped + d1 (ocf::heartbeat:Dummy): Stopped + Master/Slave Set: ms0 [s0] + Slaves: [ hex-13 hex-14 ] + diff --git a/pengine/test10/utilization-order1.summary b/pengine/test10/utilization-order1.summary new file mode 100644 index 0000000000..282601df2a --- /dev/null +++ b/pengine/test10/utilization-order1.summary @@ -0,0 +1,24 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc1 (ocf::pacemaker:Dummy): Started node1 + +Transition Summary: + * Start rsc2 (node1) + * Stop rsc1 (node1) + +Executing cluster transition: + * Resource action: rsc1 stop on node1 + * Pseudo action: load_stopped_node1 + * Pseudo action: load_stopped_node2 + * Pseudo action: all_stopped + * Resource action: rsc2 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/utilization-order2.summary b/pengine/test10/utilization-order2.summary new file mode 100644 index 0000000000..bfd66d25f1 --- /dev/null +++ b/pengine/test10/utilization-order2.summary @@ -0,0 +1,38 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc4 (ocf::pacemaker:Dummy): Stopped + rsc3 (ocf::pacemaker:Dummy): Started node1 + Clone Set: clone-rsc2 [rsc2] + Started: [ node2 node1 ] + rsc1 (ocf::pacemaker:Dummy): Started node2 + +Transition Summary: + * Start rsc4 (node1) + * Move rsc3 (Started node1 -> node2) + * Stop rsc2:1 (node1) + * Stop rsc1 (node2) + +Executing cluster transition: + * Resource action: rsc3 stop on node1 + * Pseudo action: clone-rsc2_stop_0 + * Resource action: rsc1 stop on node2 + * Pseudo action: load_stopped_node2 + * Resource action: rsc3 start on node2 + * Resource action: rsc2:1 stop on node1 + * Pseudo action: clone-rsc2_stopped_0 + * Pseudo action: load_stopped_node1 + * Pseudo action: all_stopped + * Resource action: rsc4 start on node1 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc4 (ocf::pacemaker:Dummy): Started node1 + rsc3 (ocf::pacemaker:Dummy): Started node2 + Clone Set: clone-rsc2 [rsc2] + Started: [ node2 ] + Stopped: [ rsc2:1 ] + rsc1 (ocf::pacemaker:Dummy): Stopped + diff --git a/pengine/test10/utilization-order3.summary b/pengine/test10/utilization-order3.summary new file mode 100644 index 0000000000..cfeea48924 --- /dev/null +++ b/pengine/test10/utilization-order3.summary @@ -0,0 +1,27 @@ + +Current cluster status: +Online: [ node1 node2 ] + + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc1 (ocf::pacemaker:Dummy): Started node1 + +Transition Summary: + * Start rsc2 (node1) + * Migrate rsc1 (Started node1 -> node2) + +Executing cluster transition: + * Pseudo action: load_stopped_node2 + * Resource action: rsc1 migrate_to on node1 + * Resource action: rsc1 migrate_from on node2 + * Resource action: rsc1 stop on node1 + * Pseudo action: load_stopped_node1 + * Pseudo action: all_stopped + * Resource action: rsc2 start on node1 + * Pseudo action: rsc1_start_0 + +Revised cluster status: +Online: [ node1 node2 ] + + rsc2 (ocf::pacemaker:Dummy): Started node1 + rsc1 (ocf::pacemaker:Dummy): Started node2 + diff --git a/pengine/test10/utilization-order4.summary b/pengine/test10/utilization-order4.summary new file mode 100644 index 0000000000..cce2940f02 --- /dev/null +++ b/pengine/test10/utilization-order4.summary @@ -0,0 +1,60 @@ + +Current cluster status: +Node deglxen002: standby +Online: [ deglxen001 ] + + degllx62-vm (ocf::heartbeat:Xen): Started deglxen002 + degllx63-vm (ocf::heartbeat:Xen): Stopped + degllx61-vm (ocf::heartbeat:Xen): Started deglxen001 + degllx64-vm (ocf::heartbeat:Xen): Stopped + stonith_sbd (stonith:external/sbd): Started deglxen001 + Clone Set: clone-nfs [grp-nfs] + Started: [ deglxen001 deglxen002 ] + Clone Set: clone-ping [prim-ping] + Started: [ deglxen002 deglxen001 ] + +Transition Summary: + * Migrate degllx62-vm (Started deglxen002 -> deglxen001) + * Stop degllx61-vm (deglxen001) + * Stop nfs-xen_config:1 (deglxen002) + * Stop nfs-xen_swapfiles:1 (deglxen002) + * Stop nfs-xen_images:1 (deglxen002) + * Stop prim-ping:0 (deglxen002) + +Executing cluster transition: + * Resource action: degllx61-vm stop on deglxen001 + * Pseudo action: load_stopped_deglxen001 + * Resource action: degllx62-vm migrate_to on deglxen002 + * Resource action: degllx62-vm migrate_from on deglxen001 + * Resource action: degllx62-vm stop on deglxen002 + * Pseudo action: clone-nfs_stop_0 + * Pseudo action: load_stopped_deglxen002 + * Pseudo action: degllx62-vm_start_0 + * Pseudo action: grp-nfs:1_stop_0 + * Resource action: nfs-xen_images:1 stop on deglxen002 + * Resource action: degllx62-vm monitor=30000 on deglxen001 + * Resource action: nfs-xen_swapfiles:1 stop on deglxen002 + * Resource action: nfs-xen_config:1 stop on deglxen002 + * Pseudo action: grp-nfs:1_stopped_0 + * Pseudo action: clone-nfs_stopped_0 + * Pseudo action: clone-ping_stop_0 + * Resource action: prim-ping:0 stop on deglxen002 + * Pseudo action: clone-ping_stopped_0 + * Pseudo action: all_stopped + +Revised cluster status: +Node deglxen002: standby +Online: [ deglxen001 ] + + degllx62-vm (ocf::heartbeat:Xen): Started deglxen001 + degllx63-vm (ocf::heartbeat:Xen): Stopped + degllx61-vm (ocf::heartbeat:Xen): Stopped deglxen002 + degllx64-vm (ocf::heartbeat:Xen): Stopped + stonith_sbd (stonith:external/sbd): Started deglxen001 + Clone Set: clone-nfs [grp-nfs] + Started: [ deglxen001 ] + Stopped: [ grp-nfs:1 ] + Clone Set: clone-ping [prim-ping] + Started: [ deglxen001 ] + Stopped: [ prim-ping:0 ] + diff --git a/pengine/test10/utilization-shuffle.summary b/pengine/test10/utilization-shuffle.summary new file mode 100644 index 0000000000..b458a3fd33 --- /dev/null +++ b/pengine/test10/utilization-shuffle.summary @@ -0,0 +1,92 @@ + +Current cluster status: +Online: [ act1 act2 act3 sby2 sby1 ] + + Resource Group: grpPostgreSQLDB1 + prmExPostgreSQLDB1 (ocf::pacemaker:Dummy): Stopped + prmFsPostgreSQLDB1-1 (ocf::pacemaker:Dummy): Stopped + prmFsPostgreSQLDB1-2 (ocf::pacemaker:Dummy): Stopped + prmFsPostgreSQLDB1-3 (ocf::pacemaker:Dummy): Stopped + prmIpPostgreSQLDB1 (ocf::pacemaker:Dummy): Stopped + prmApPostgreSQLDB1 (ocf::pacemaker:Dummy): Stopped + Resource Group: grpPostgreSQLDB2 + prmExPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-1 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-2 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-3 (ocf::pacemaker:Dummy): Started act2 + prmIpPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + prmApPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + Resource Group: grpPostgreSQLDB3 + prmExPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act1 + prmFsPostgreSQLDB3-1 (ocf::pacemaker:Dummy): Started act1 + prmFsPostgreSQLDB3-2 (ocf::pacemaker:Dummy): Started act1 + prmFsPostgreSQLDB3-3 (ocf::pacemaker:Dummy): Started act1 + prmIpPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act1 + prmApPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act1 + Clone Set: clnPingd [prmPingd] + Started: [ act1 act2 act3 sby1 sby2 ] + Clone Set: clnDiskd1 [prmDiskd1] + Started: [ act1 act2 act3 sby1 sby2 ] + Clone Set: clnDiskd2 [prmDiskd2] + Started: [ act1 act2 act3 sby1 sby2 ] + +Transition Summary: + * Start prmExPostgreSQLDB1 (act3) + * Start prmFsPostgreSQLDB1-1 (act3) + * Start prmFsPostgreSQLDB1-2 (act3) + * Start prmFsPostgreSQLDB1-3 (act3) + * Start prmIpPostgreSQLDB1 (act3) + * Start prmApPostgreSQLDB1 (act3) + +Executing cluster transition: + * Pseudo action: grpPostgreSQLDB1_start_0 + * Pseudo action: load_stopped_sby1 + * Pseudo action: load_stopped_sby2 + * Pseudo action: load_stopped_act3 + * Pseudo action: load_stopped_act2 + * Pseudo action: load_stopped_act1 + * Resource action: prmExPostgreSQLDB1 start on act3 + * Resource action: prmFsPostgreSQLDB1-1 start on act3 + * Resource action: prmFsPostgreSQLDB1-2 start on act3 + * Resource action: prmFsPostgreSQLDB1-3 start on act3 + * Resource action: prmIpPostgreSQLDB1 start on act3 + * Resource action: prmApPostgreSQLDB1 start on act3 + * Pseudo action: grpPostgreSQLDB1_running_0 + * Resource action: prmExPostgreSQLDB1 monitor=5000 on act3 + * Resource action: prmFsPostgreSQLDB1-1 monitor=5000 on act3 + * Resource action: prmFsPostgreSQLDB1-2 monitor=5000 on act3 + * Resource action: prmFsPostgreSQLDB1-3 monitor=5000 on act3 + * Resource action: prmIpPostgreSQLDB1 monitor=5000 on act3 + * Resource action: prmApPostgreSQLDB1 monitor=5000 on act3 + +Revised cluster status: +Online: [ act1 act2 act3 sby2 sby1 ] + + Resource Group: grpPostgreSQLDB1 + prmExPostgreSQLDB1 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB1-1 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB1-2 (ocf::pacemaker:Dummy): Started act3 + prmFsPostgreSQLDB1-3 (ocf::pacemaker:Dummy): Started act3 + prmIpPostgreSQLDB1 (ocf::pacemaker:Dummy): Started act3 + prmApPostgreSQLDB1 (ocf::pacemaker:Dummy): Started act3 + Resource Group: grpPostgreSQLDB2 + prmExPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-1 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-2 (ocf::pacemaker:Dummy): Started act2 + prmFsPostgreSQLDB2-3 (ocf::pacemaker:Dummy): Started act2 + prmIpPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + prmApPostgreSQLDB2 (ocf::pacemaker:Dummy): Started act2 + Resource Group: grpPostgreSQLDB3 + prmExPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act1 + prmFsPostgreSQLDB3-1 (ocf::pacemaker:Dummy): Started act1 + prmFsPostgreSQLDB3-2 (ocf::pacemaker:Dummy): Started act1 + prmFsPostgreSQLDB3-3 (ocf::pacemaker:Dummy): Started act1 + prmIpPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act1 + prmApPostgreSQLDB3 (ocf::pacemaker:Dummy): Started act1 + Clone Set: clnPingd [prmPingd] + Started: [ act1 act2 act3 sby1 sby2 ] + Clone Set: clnDiskd1 [prmDiskd1] + Started: [ act1 act2 act3 sby1 sby2 ] + Clone Set: clnDiskd2 [prmDiskd2] + Started: [ act1 act2 act3 sby1 sby2 ] + diff --git a/pengine/test10/utilization.summary b/pengine/test10/utilization.summary new file mode 100644 index 0000000000..ee1469ed52 --- /dev/null +++ b/pengine/test10/utilization.summary @@ -0,0 +1,26 @@ + +Current cluster status: +Online: [ host1 host2 ] + + rsc2 (ocf::pacemaker:Dummy): Stopped + rsc1 (ocf::pacemaker:Dummy): Stopped + +Transition Summary: + * Start rsc2 (host2) + +Executing cluster transition: + * Resource action: rsc2 monitor on host2 + * Resource action: rsc2 monitor on host1 + * Resource action: rsc1 monitor on host2 + * Resource action: rsc1 monitor on host1 + * Pseudo action: probe_complete + * Pseudo action: load_stopped_host2 + * Pseudo action: load_stopped_host1 + * Resource action: rsc2 start on host2 + +Revised cluster status: +Online: [ host1 host2 ] + + rsc2 (ocf::pacemaker:Dummy): Started host2 + rsc1 (ocf::pacemaker:Dummy): Stopped +