-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
594a310
commit 6f020a2
Showing
20 changed files
with
69 additions
and
100 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 @@ | ||
default['bonusbits_mediawiki_nginx']['adsense']['configure'] = true |
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 @@ | ||
default['bonusbits_mediawiki_nginx']['cloudwatch_logs']['configure'] = true |
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 @@ | ||
default['bonusbits_mediawiki_nginx']['efs']['configure'] = true |
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 @@ | ||
default['bonusbits_mediawiki_nginx']['logrotate']['configure'] = true |
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 @@ | ||
default['bonusbits_mediawiki_nginx']['sendmail']['configure'] = true |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
require 'spec_helper' | ||
|
||
describe 'bonusbits_mediawiki_nginx::default' do | ||
it 'Security Patch Cron Job Created' do | ||
it 'Include CloudWatch Logs Recipe' do | ||
have_entry(cron('0 0 * * * yum -y update --security')).with_user('root') | ||
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,53 @@ | ||
require 'spec_helper' | ||
|
||
web_package_list = %w( | ||
apr | ||
apr-util | ||
enchant | ||
git | ||
ImageMagick | ||
json-c | ||
mysql56 | ||
nginx | ||
openssl | ||
openssl-devel | ||
pcre | ||
perl-core perl-CPAN | ||
perl-Crypt-SSLeay | ||
perl-DateTime | ||
perl-libwww-perl | ||
perl-Sys-Syslog | ||
php70-cli | ||
php70-common | ||
php70-enchant | ||
php70-fpm | ||
php70-intl | ||
php70-mbstring | ||
php70-mcrypt | ||
php70-mysqlnd | ||
php70-pdo | ||
php70-pecl-apcu | ||
php70-pecl-imagick | ||
php70-process | ||
php70-xml | ||
texlive | ||
) | ||
|
||
other_package_list = %w( | ||
htop | ||
mlocate | ||
vim | ||
) | ||
|
||
describe 'bonusbits_mediawiki_nginx::packages' do | ||
it 'Web Packages Installed' do | ||
web_package_list.each do |package| | ||
expect(package(package)).to be_installed | ||
end | ||
end | ||
it 'Other Packages Installed' do | ||
other_package_list.each do |package| | ||
expect(package(package)).to be_installed | ||
end | ||
end | ||
end |