aboutsummaryrefslogtreecommitdiffstats
path: root/build-root/deb/debian/vpp.upstart
blob: c0ff09e2c163c55a7263a5f85608153a99908fa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
description	"vector packet processing engine"
author          "Cisco Systems, Inc <listname@cisco.com>"

manual

respawn

pre-start script
   rm -f /dev/shm/* || true
   # should be there via dkms, but if not, start anyway
   modprobe igb_uio || true
end script


script
  exec vpp -c /etc/vpp/startup.conf
end script

post-stop script
   rm -f /dev/shm/* || true
end script