Skip to content

Commit

Permalink
Fixes edge-case with assumeyes functionality
Browse files Browse the repository at this point in the history
Signed-off-by: Darshit Chanpura <[email protected]>
  • Loading branch information
DarshitChanpura committed Nov 10, 2023
1 parent 2f75836 commit e1c7c08
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
*/
public final class InstallDemoConfiguration {
private static boolean assumeyes = false;
private static boolean installDemoCertificates = false;
private static boolean initsecurity = false;
private static boolean cluster_mode = false;
private static int skip_updates = -1;
Expand Down Expand Up @@ -173,6 +174,9 @@ private static void gatherUserInputs() {
cluster_mode = confirmAction(scanner, "Enable cluster mode?");
}
}
} else {
initsecurity = true;
cluster_mode = true;
}
}

Expand Down

0 comments on commit e1c7c08

Please sign in to comment.