summaryrefslogtreecommitdiffstats
path: root/tests/ec.rc
blob: f18752fc99aa8e4236900e5f5ca948a0069bf2c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

function ec_up_status()
{
        local v=$1
        local m=$2
        local ec_id=$3
        grep -E "^up =" $m/.meta/graphs/active/${v}-disperse-${ec_id}/private | cut -f2 -d'='
}

function ec_option_value()
{
    local v=$1
    local m=$2
    local ec_id=$3
    local opt=$4
    grep -E "^$opt =" $m/.meta/graphs/active/${v}-disperse-${ec_id}/private | cut -f2 -d'='| awk '{print $1}'
}