With WildFly 15.0.1 I want to use jboss-cli to stop a deployment, but leave it ready for deployment with the next startup of WildFly.
So far I managed to disable or undeploy it keeping its content (same as disable). But when restarting WildFly, the deployment will continue disabled.
deployment enable name
undeploy name --keep-content
I tried also creating a file name.dodeploy
in the deployments folder, but this doesn't work as the deployment was done using the Admin Console.
I know that after restart I could call the enable command, but because of some library link problem we would need that the deployment is started on startup and not triggered later.
Is this possible?