Public bug reported:

Binary package hint: cluster-glue

/usr/lib/stonith/plugins/external/sbd 
uses ha_log as shell command which is now  ha_logger
also the

nodes=$(
    if is_heartbeat; then
       crm_node -H -p
    else
       crm_node -p
    fi)

lines are nor working.
fix is:
    if is_heartbeat; then
        nodes=$(crm_node -H -p)
    else
        nodes=$(crm_node -p)
    fi

source: http://www.gossamer-threads.com/lists/linuxha/pacemaker/63969

patch:
28c28
<       ha_log err "sbd could not list nodes from $sbd_device"
---
>       ha_logger err "sbd could not list nodes from $sbd_device"
31d30
<     nodes=$(
33c32
<       crm_node -H -p
---
>         nodes=$(crm_node -H -p)
35,36c34,36
<       crm_node -p
<     fi)
---
>         nodes=$(crm_node -p)
>     fi
> 
39c39
<       ha_log warn "no active nodes reported by the CRM"
---
>       ha_logger warn "no active nodes reported by the CRM"
44c44
<           ha_log err "node $N not accessible through $sbd_device"
---
>           ha_logger err "node $N not accessible through $sbd_device"

** Affects: cluster-glue (Ubuntu)
     Importance: Undecided
         Status: New

-- 
/usr/lib/stonith/plugins/external/sbd works uses wrong shell commands
https://bugs.launchpad.net/bugs/585468
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to