startOwn composition script including composition module and a smal fix in base,module

This commit is contained in:
m8in
2026-06-17 22:00:10 +02:00
parent a5aa2d8833
commit 8da80586e8
3 changed files with 81 additions and 21 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
source /cis/core/base.module.sh
base.loadModule composition
function startOwn() {
local _COMPOSITION
composition.printAll | while read -r _COMPOSITION; do
composition.start "${_COMPOSITION}"
done
}
startOwn && exit 0
exit 1