07cfdac862
Closes: #30011 Signed-off-by: Peter Zaoral <pzaoral@redhat.com> Co-authored-by: Alexander Schwartz <aschwart@redhat.com> Co-authored-by: Václav Muzikář <vaclav@muzikari.cz>
48 lines
927 B
Text
48 lines
927 B
Text
<#macro build rootParameters="" parameters="">
|
|
[source,bash]
|
|
----
|
|
bin/kc.[sh|bat]<#if rootParameters?has_content> ${rootParameters}</#if> build<#if parameters?has_content> ${parameters}</#if>
|
|
----
|
|
</#macro>
|
|
|
|
<#macro start rootParameters="" parameters="">
|
|
[source,bash]
|
|
----
|
|
bin/kc.[sh|bat]<#if rootParameters?has_content> ${rootParameters}</#if> start<#if parameters?has_content> ${parameters}</#if>
|
|
----
|
|
</#macro>
|
|
|
|
<#macro startdev parameters>
|
|
[source,bash]
|
|
----
|
|
bin/kc.[sh|bat] start-dev ${parameters}
|
|
----
|
|
</#macro>
|
|
|
|
<#macro admin parameters>
|
|
[source,bash]
|
|
----
|
|
bin/kcadm.[sh|bat] ${parameters}
|
|
----
|
|
</#macro>
|
|
|
|
<#macro export parameters>
|
|
[source,bash]
|
|
----
|
|
bin/kc.[sh|bat] export ${parameters}
|
|
----
|
|
</#macro>
|
|
|
|
<#macro import parameters>
|
|
[source,bash]
|
|
----
|
|
bin/kc.[sh|bat] import ${parameters}
|
|
----
|
|
</#macro>
|
|
|
|
<#macro bootstrapadmin parameters>
|
|
[source,bash]
|
|
----
|
|
bin/kc.[sh|bat] bootstrap-admin ${parameters}
|
|
----
|
|
</#macro>
|