Skip to content

Commit

Permalink
remove unnecessary fileserver variable (#2460)
Browse files Browse the repository at this point in the history
  • Loading branch information
duritong authored and micah committed Sep 2, 2010
1 parent e5de903 commit 8363169
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifests/defines/module_dir.pp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
} else {
file {
$dir:
source => [ "puppet://$server/modules/${name}/modules_dir", "puppet://$server/modules/common/empty"],
source => [ "puppet:///modules/${name}/modules_dir", "puppet:///modules/common/empty"],
checksum => mtime,
# ignore the placeholder
ignore => '.ignore',
Expand Down
2 changes: 1 addition & 1 deletion manifests/moduledir.pp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# module-local data, e.g. for constructing config files
file{$module_dir_path:
ensure => directory,
source => "puppet://$server/modules/common/modules/",
source => "puppet:///modules/common/modules/",
ignore => '.ignore',
recurse => true, purge => true, force => true,
mode => 0755, owner => root, group => 0;
Expand Down

0 comments on commit 8363169

Please sign in to comment.