summaryrefslogtreecommitdiff
path: root/templates/interfaces/input
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2010-06-15 10:08:16 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2010-06-15 10:08:16 -0700
commite24523cda77d3277844bfe638c086bcf85348f7d (patch)
treefc7ade77758bb9ccc696e30fa2029b1389117dfd /templates/interfaces/input
parent094222202c56bff9ddabf591a9429fea19e3d185 (diff)
downloadvyatta-cfg-quagga-e24523cda77d3277844bfe638c086bcf85348f7d.tar.gz
vyatta-cfg-quagga-e24523cda77d3277844bfe638c086bcf85348f7d.zip
Remove sudo from ip command
No longer need sudo on ip because of cap_net_admin
Diffstat (limited to 'templates/interfaces/input')
-rw-r--r--templates/interfaces/input/node.def4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/interfaces/input/node.def b/templates/interfaces/input/node.def
index b90cb0b3..1873190c 100644
--- a/templates/interfaces/input/node.def
+++ b/templates/interfaces/input/node.def
@@ -7,5 +7,5 @@ comp_help: Enter input functional block interface name (ifb0 - ifb999)
syntax:expression: pattern $VAR(@) "^ifb[0-9]+$" ; "name must be (ifb0-ifb999)"
begin: [ -d /sys/module/ifb ] || sudo modprobe ifb numifbs=0
-create: sudo ip link add $VAR(@) type ifb && sudo ip link set $VAR(@) up
-delete: sudo ip link delete dev $VAR(@)
+create: ip link add $VAR(@) type ifb && ip link set $VAR(@) up
+delete: ip link delete dev $VAR(@)