Forum Discussion

Eldad_162351's avatar
Eldad_162351
Icon for Nimbostratus rankNimbostratus
Aug 10, 2014
Solved

iApp to modify data-group

hello,   im trying to add a set of key and value from iApp to a data-group belonged to iRule. my iApp template:   section x { table y_table { string key string value } }   text {...
  • Fred_Slater_856's avatar
    Aug 12, 2014

    I led you astray. The following is corrected, and works if your data-group already exists. If it doesn't exist yet, use tmsh::create. It appears that the exec is not necessary.

    foreach row $::x__y_table {
       array set columns [join $row]
       tmsh::modify ltm data-group internal /Common/my_datagroup records add \{ $columns(key) \{ data $columns(value) \}\}
    }