puppet: Switch double quoted strings to single quoted.

Resolves these warnings from puppet-lint.

puppet-lint| puppet/zulip/manifests/app_frontend_base.pp - WARNING: double quoted string containing no variables on line 14
puppet-lint| puppet/zulip/manifests/app_frontend_base.pp - WARNING: double quoted string containing no variables on line 19

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg 2020-01-07 15:09:45 -08:00
parent cd3907648d
commit 5526af32f3
1 changed files with 2 additions and 2 deletions

View File

@ -11,12 +11,12 @@ class zulip::app_frontend_base {
# Needed to access our database
"postgresql-client-${zulip::base::postgres_version}",
# Needed for Slack import
"unzip",
'unzip',
]
} else {
$web_packages = [
# Needed for Slack import
"unzip",
'unzip',
]
}
zulip::safepackage { $web_packages: ensure => 'installed' }