summaryrefslogtreecommitdiff
path: root/templates/protocols/ripng/timers/node.def
blob: 16f04ff486a0cef48e5d60ba0539110ab23d6990 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
help: Set RIPng timer values

delete: touch /tmp/ripng-timers.$PPID

end: ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \
       -c "router ripng"                                       \
       -c "no timers basic";                                   \
     if [ -f "/tmp/ripng-timers.$PPID" ]; then
        rm -rf /tmp/ripng-timers.$PPID;
     else
        ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \
          -c "router ripng"                                       \
          -c "timers basic $VAR(./update/@)                       \
                           $VAR(./timeout/@)                      \
                           $VAR(./garbage-collection/@)"
     fi;