Add initial meta-stx to support StarlingX build
[pti/rtp.git] / meta-stx / recipes-support / puppet / files / puppet-network / route-options-support.patch
1 From c26a70ab9d5839f90148c578edc5d15133355194 Mon Sep 17 00:00:00 2001
2 From: Kevin Smith <kevin.smith@windriver.com>
3 Date: Wed, 25 Oct 2017 07:37:52 -0500
4 Subject: [PATCH 1/1] route options support
5
6 ---
7  packstack/puppet/modules/network/lib/puppet/type/network_route.rb | 5 +++++
8  1 file changed, 5 insertions(+)
9
10 diff --git a/packstack/puppet/modules/network/lib/puppet/type/network_route.rb b/packstack/puppet/modules/network/lib/puppet/type/network_route.rb
11 index fd52c58..13ca06a 100644
12 --- a/packstack/puppet/modules/network/lib/puppet/type/network_route.rb
13 +++ b/packstack/puppet/modules/network/lib/puppet/type/network_route.rb
14 @@ -3,6 +3,11 @@ require 'ipaddr'
15  Puppet::Type.newtype(:network_route) do
16    @doc = "Manage non-volatile route configuration information"
17  
18 +  feature :provider_options, <<-EOD
19 +    The provider can accept an arbitrary options string. The semantics of
20 +    these options will depend on the provider.
21 +  EOD
22 +
23    ensurable
24  
25    newparam(:name) do
26 -- 
27 1.8.3.1
28