With the call missing, it wasn't possible to change the directory after cluster initialization. Fixes #1101.
Signed-off-by: Petr Pudlak <[email protected]> --- lib/cmdlib/cluster.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cmdlib/cluster.py b/lib/cmdlib/cluster.py index 6e1ba2e..c010026 100644 --- a/lib/cmdlib/cluster.py +++ b/lib/cmdlib/cluster.py @@ -1651,6 +1651,7 @@ class LUClusterSetParams(LogicalUnit): self.cluster = self.cfg.GetClusterInfo() self._SetFileStorageDir(feedback_fn) + self._SetSharedFileStorageDir(feedback_fn) self.cfg.Update(self.cluster, feedback_fn) self._SetDrbdHelper(feedback_fn) -- 2.2.0.rc0.207.ga3a616c
