... @Override protected void beforeBootstrap(ClusterActionEvent event) throws IOException, InterruptedException { ... Module nginx = new Module("nginx", null); addStatement(event, nginx); ... OR Module ntp = new Module("ntp"); ntp.attribs.put("servers", "[10.0.0.1]" ); addStatement(event,java); OR Module postgresServer = new Module("postgresql","server"); Module postgresClient = new Module("postgresql","client"); addStatement(event, postgresServer); addStatement(event, postgresClient); } ...
|
|
|
|
|
|