You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
313 B
21 lines
313 B
#!/bin/bash
|
|
|
|
function check() {
|
|
echowarn "recipe:dokuwiki not yet checked!"
|
|
return 0
|
|
}
|
|
|
|
function install() {
|
|
echowarn "recipe:dokuwiki not yet initialized!"
|
|
}
|
|
|
|
. "$MIAOU_BASEDIR/lib/init.sh"
|
|
|
|
arg1_required "$@"
|
|
readonly CONTAINER="$1"
|
|
launch_container "$CONTAINER"
|
|
|
|
check || (
|
|
install
|
|
check
|
|
)
|