From d9b15ac7fa1372d4d76886f6dd5482f593b106f8 Mon Sep 17 00:00:00 2001 From: Philippe Caseiro Date: Thu, 28 Feb 2019 10:47:34 +0100 Subject: [PATCH] Do not ask questions when reconfigure is called --- postservice/99-z-ha | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/postservice/99-z-ha b/postservice/99-z-ha index f437830..90aad7e 100644 --- a/postservice/99-z-ha +++ b/postservice/99-z-ha @@ -1,5 +1,7 @@ #!/bin/bash -/usr/share/eole/sbin/onehost_create_all - +if [[ ${1} == "instance" ]] +then + /usr/share/eole/sbin/onehost_create_all +fi exit 0