cfg "testing two" {

description "testing clause" "/var/tmp/config_c" "/opt/ignite/data/Rel_B.11.11/config" "/var/tmp/config_a"

}

$ manage_index -d -r B.11.11 -i /var/tmp/test/INDEX $ cat INDEX

...

Setting the default cfg clause in an INDEX file

Using the following command, you can easily set which of the cfg clauses in an INDEX file is the default cfg clause:

manage_index -e -c cfg_clause_name [-p] [-v] [-i index_filename]

The following example changes the default cfg clause between two different cfg clauses:

$ cat INDEX

...

cfg "testing" {

description "testing clause" "/var/tmp/config_c" "/opt/ignite/data/Rel_B.11.11/config" "/var/tmp/config_a"

}

cfg "testing two" {

description "testing clause" "/var/tmp/config_c" "/opt/ignite/data/Rel_B.11.11/config" "/var/tmp/config_a"

}

$ manage_index -e -c "testing" -i /var/tmp/INDEX $ cat INDEX

...

cfg "testing" {

description "testing clause" "/var/tmp/config_c" "/opt/ignite/data/Rel_B.11.11/config" "/var/tmp/config_a"

}=TRUE

cfg "testing two" {

description "testing clause" "/var/tmp/config_c" "/opt/ignite/data/Rel_B.11.11/config" "/var/tmp/config_a"

}

$ manage_index -e -c "testing two" -i /var/tmp/INDEX $ cat INDEX

...

cfg "testing" {

description "testing clause" "/var/tmp/config_c" "/opt/ignite/data/Rel_B.11.11/config" "/var/tmp/config_a"

}

cfg "testing two" {

description "testing clause" "/var/tmp/config_c"

19