mirror of https://github.com/zulip/zulip.git
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:
parent
cd3907648d
commit
5526af32f3
|
@ -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' }
|
||||
|
|
Loading…
Reference in New Issue