Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjusting module for Rapid Deployment #10

Merged
merged 2 commits into from
Apr 22, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Modulefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ summary 'PXE!'
description 'A Puppet module to deploy and manage a Pre eXecution Environment
for network based provisioning'
project_page 'https://github.com/xaque208/puppet-pxe'
dependency 'xaque208/permute'
dependency 'ripienaar/concat'
dependency 'zleslie/permute'
dependency 'puppetlabs/concat'
dependency 'puppetlabs/tftp'
12 changes: 9 additions & 3 deletions manifests/syslinux.pp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,15 @@
}

File {
owner => root,
group => 0,
mode => 755,
owner => root,
group => 0,
mode => 755,
require => File[$tftp_root],
}

file { $tftp_root:
ensure => directory,
require => undef,
}

file {
Expand Down