When trying to install owncloud on multiple nodes within one play only the first node is installed correctly.
i.e., using a play such as this where owncloud is a group containing multiple hosts
From what I can see in the issues of this repo I believe you added this flag in case of cluster setups where this step only has to run on the main node (#9 ). Now sadly this decision completely breaks the usecase of installing unrelated instances using the same play as shown in the above example play.
My suggestion to support both is to replace the static True with a variable e.g., run_once: {{ owncloud_cluster_install }}
This way the feature can be turned on/off.
When trying to install owncloud on multiple nodes within one play only the first node is installed correctly. i.e., using a play such as this where
owncloud
is a group containing multiple hostsThe reason for this seems to be the
run_once
set for the following task using the occ tool to finish installation:From what I can see in the issues of this repo I believe you added this flag in case of cluster setups where this step only has to run on the main node (#9 ). Now sadly this decision completely breaks the usecase of installing unrelated instances using the same play as shown in the above example play.
My suggestion to support both is to replace the static
True
with a variable e.g.,run_once: {{ owncloud_cluster_install }}
This way the feature can be turned on/off.