Skip to content

Commit

Permalink
Proper bool logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Dorman committed Sep 4, 2014
1 parent 0bd0b0a commit f0cdd14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/install/rabbitmqadmin.pp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
$management_port = $rabbitmq::management_port
$default_user = $rabbitmq::default_user
$default_pass = $rabbitmq::default_pass
$protocol = $rabbitmq::ssl ? { 'true' => 'https', default => 'http' }
$protocol = $rabbitmq::ssl ? { false => 'http', default => 'https' }

staging::file { 'rabbitmqadmin':
target => '/var/lib/rabbitmq/rabbitmqadmin',
Expand Down

0 comments on commit f0cdd14

Please sign in to comment.