Skip to content

Commit

Permalink
(lint) Fix lint error; double-quoted static string
Browse files Browse the repository at this point in the history
  • Loading branch information
reidmv committed Sep 28, 2019
1 parent e3cc522 commit 5458ef9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plans/configure.pp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# Ensure primary external database host for HA
if $ha {
if ! $puppetdb_database_host {
fail("Must specify puppetdb_database_host for HA environment")
fail('Must specify puppetdb_database_host for HA environment')
}
}

Expand Down
2 changes: 1 addition & 1 deletion plans/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
# Ensure primary external database host for HA
if $ha {
if ! $puppetdb_database_host {
fail("Must specify puppetdb_database_host for HA environment")
fail('Must specify puppetdb_database_host for HA environment')
}
}

Expand Down

0 comments on commit 5458ef9

Please sign in to comment.