Fix container_backend customizability

In change I048fbb6b0319bac33c82ad2d7639d0f594fb73bb I mistakenly
hard-coded the container backend back to docker, so overriding it
won't work anymore. Let's set it back to the 'container_backend'
parameter so it can be overridden again.

Change-Id: I442df9dd3547af0572909ae92ab8a06361cd6909
This commit is contained in:
Michele Baldessari 2018-11-15 18:05:39 +01:00
parent 220e640358
commit b2744d3046
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ Puppet::Type.type(:pcmk_bundle).provide(:default) do
docker_cmd = ''
else
create_cmd = 'create'
docker_cmd = 'docker'
docker_cmd = container_backend
end
# Build the 'pcs resource create' command. Check out the pcs man page :-)