diff options
author | 2017-09-20 07:50:44 -0400 | |
---|---|---|
committer | 2017-09-21 14:36:15 -0400 | |
commit | b719cbb990b1c6f56eefb08170fe7d36eb6fbee1 (patch) | |
tree | cc74e998a65b2643b1d0135345d2019e6726eaf5 /spec/acceptance | |
parent | 19fa56176090ca9a1dbce1dff944d8946d15b20a (diff) |
Add startup exec commands support
This patch adds support for configuring VPP startup exec commands.
The commands specified will be appeneded to the exec file specified if
the file already exists.
JIRA: PUP-6
Change-Id: Ief8097041473573bfdb9c8460b99e14723eaa36d
Signed-off-by: Feng Pan <fpan@redhat.com>
Diffstat (limited to 'spec/acceptance')
-rw-r--r-- | spec/acceptance/fdio_spec.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/acceptance/fdio_spec.rb b/spec/acceptance/fdio_spec.rb index 4be1865..250de9a 100644 --- a/spec/acceptance/fdio_spec.rb +++ b/spec/acceptance/fdio_spec.rb @@ -44,6 +44,8 @@ describe 'fdio' do vpp_tuntap_enable => true, vpp_tuntap_mtu => 9000, vpp_tapcli_mtu => 8000, + vpp_exec_commands => 'test line 1', + vpp_exec_file => '/etc/vpp/vpp-exec' } EOS @@ -60,6 +62,11 @@ describe 'fdio' do its(:content) { should match /enable/ } its(:content) { should match /mtu 9000/ } its(:content) { should match /mtu 8000/ } + its(:content) { should match /\/etc\/vpp\/vpp-exec/ } + end + + describe file('/etc/vpp/vpp-exec') do + its(:content) { should match /test line 1/ } end end end |