mirror of
https://github.com/m8tin/cis.git
synced 2026-08-01 11:47:31 +02:00
16 lines
260 B
Bash
Executable File
16 lines
260 B
Bash
Executable File
#!/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
|