Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(syntax): Remove duplicate parenthesis #454

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifests/plugin.pp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
$docker_command = "${docker::params::docker_command} plugin"

if ($::osfamily == 'windows') {
fail(translate(('Feature not implemented on windows.')))
fail(translate('Feature not implemented on windows.'))
}

if $ensure == 'present' {
Expand Down
8 changes: 4 additions & 4 deletions manifests/run.pp
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,11 @@
}

if ($remove_volume_on_start and !$remove_container_on_start) {
fail translate(("In order to remove the volume on start for ${title} you need to also remove the container"))
fail(translate("In order to remove the volume on start for ${title} you need to also remove the container"))
}

if ($remove_volume_on_stop and !$remove_container_on_stop) {
fail translate(("In order to remove the volume on stop for ${title} you need to also remove the container"))
fail(translate("In order to remove the volume on stop for ${title} you need to also remove the container"))
}

if $use_name {
Expand Down Expand Up @@ -346,10 +346,10 @@
}
default: {
if $::osfamily != 'windows' {
fail translate(('Docker needs a Debian or RedHat based system.'))
fail(translate('Docker needs a Debian or RedHat based system.'))
}
elsif $ensure == 'present' {
fail translate(('Restart parameter is required for Windows'))
fail(translate('Restart parameter is required for Windows'))
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions manifests/services.pp
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@

if $ensure == 'absent' {
if $update {
fail translate(('When removing a service you can not update it.'))
fail(translate('When removing a service you can not update it.'))
}
if $scale {
fail translate(('When removing a service you can not update it.'))
fail(translate('When removing a service you can not update it.'))
}
}

Expand Down