-
-
Notifications
You must be signed in to change notification settings - Fork 881
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1231 from bryangwilliam/snippets
initial support for snippets
- Loading branch information
Showing
7 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
class { 'nginx': | ||
snippets_dir => '/etc/nginx/snippets', | ||
} | ||
|
||
$snippet = @("SNIPPET"/L) | ||
location @custom_451_error { | ||
return 451; | ||
} | ||
| SNIPPET | ||
|
||
nginx::resource::snippet { 'test_snippet': | ||
raw_content => $snippet, | ||
} | ||
|
||
nginx::resource::server { 'test.local:8080': | ||
ensure => present, | ||
listen_port => 8080, | ||
server_name => ['test.local test'], | ||
include_files => ["${nginx::snippets_dir}/test_snippet.conf"], | ||
try_files => [ 'non-existant', '@custom_451_error'], | ||
} | ||
|
||
nginx::resource::server { 'test.local:8081': | ||
ensure => present, | ||
listen_port => 8081, | ||
server_name => ['test.local test'], | ||
include_files => ["${nginx::snippets_dir}/test_snippet.conf"], | ||
try_files => [ 'non-existant', '@custom_451_error'], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# This definition creates a reusable config snippet that can be included by other resources | ||
# | ||
# @param ensure Enables or disables the specified snippet | ||
# @param owner Defines owner of the .conf file | ||
# @param group Defines group of the .conf file | ||
# @param mode Defines mode of the .conf file | ||
# @param raw_content Raw content that will be inserted into the snipped as-is | ||
|
||
define nginx::resource::snippet ( | ||
String[1] $raw_content, | ||
Enum['absent', 'present'] $ensure = 'present', | ||
String $owner = $nginx::global_owner, | ||
String $group = $nginx::global_group, | ||
Stdlib::Filemode $mode = $nginx::global_mode, | ||
) { | ||
if ! defined(Class['nginx']) { | ||
fail('You must include the nginx base class before using any defined resources') | ||
} | ||
|
||
$name_sanitized = regsubst($name, ' ', '_', 'G') | ||
$config_file = "${nginx::snippets_dir}/${name_sanitized}.conf" | ||
|
||
concat { $config_file: | ||
ensure => $ensure, | ||
owner => $owner, | ||
group => $group, | ||
mode => $mode, | ||
notify => Class['nginx::service'], | ||
require => File[$nginx::snippets_dir], | ||
} | ||
|
||
concat::fragment { "snippet-${name_sanitized}-header": | ||
target => $config_file, | ||
content => epp("${module_name}/snippet/snippet_header.epp", { 'raw_content' => $raw_content }), | ||
order => '001', | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
require 'spec_helper' | ||
|
||
describe 'nginx::resource::snippet' do | ||
on_supported_os.each do |os, facts| | ||
context "on #{os}" do | ||
let(:facts) do | ||
facts | ||
end | ||
let :title do | ||
'some_snippet' | ||
end | ||
|
||
let :pre_condition do | ||
'include nginx' | ||
end | ||
|
||
describe 'basic snippet' do | ||
let :params do | ||
{ | ||
raw_content: 'this is a test' | ||
} | ||
end | ||
|
||
it { is_expected.to contain_concat__fragment('snippet-some_snippet-header').with_target("/etc/nginx/snippets/#{title}.conf").with_content(%r{this is a test}) } | ||
it { is_expected.to contain_concat('/etc/nginx/snippets/some_snippet.conf') } | ||
it { is_expected.to compile.with_all_deps } | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<%- | String $raw_content, | ||
| -%> | ||
# MANAGED BY PUPPET | ||
|
||
<%= $raw_content %> |