blob: 9f1d1ea236de66c6fac55b651b70f1265d4940eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
help: "Set RIP timer values"
delete: "touch /tmp/rip-timers.\\$PPID"
end: "/usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \
-c \"no timers basic\"; \
if [ -f \"/tmp/rip-timers.\\$PPID\" ]; then \
rm -rf /tmp/rip-timers.\\$PPID; \
else \
/usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \
-c \"timers basic $(./update/@) $(./timeout/@) $(./garbage-collection/@)\"; \
fi; "
|