Skip to content

Commit

Permalink
Fix two typos which break the parser
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Gazeley committed Mar 4, 2015
1 parent 446f80e commit e78aac8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifests/blank.pp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
mode => '0644',
owner => 'root',
group => $fr_group,
require => [File[${fr_basepath}], Package[$fr_package], Group[$fr_group]],
require => [File[$fr_basepath], Package[$fr_package], Group[$fr_group]],
notify => Service[$fr_service],
content => "# This file is intentionally left blank to reduce complexity. Blanking it but leaving it present is safer than deleting it, since the package manager will replace some files if they are deleted, leading to unexpected behaviour!",
}
Expand Down
2 changes: 1 addition & 1 deletion manifests/sql.pp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
}

# Hostnames
unless (is_hostname($server) or is_ip_address($server) {
unless (is_hostname($server) or is_ip_address($server)) {
fail('$server must be a valid hostname or IP address')
}

Expand Down

0 comments on commit e78aac8

Please sign in to comment.