provisioning tool for building opinionated architecture
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

7 months ago
  1. #!/bin/bash
  2. function check() {
  3. echowarn "recipe:dokuwiki not yet checked!"
  4. return 0
  5. }
  6. function install() {
  7. echowarn "recipe:dokuwiki not yet initialized!"
  8. }
  9. . "$MIAOU_BASEDIR/lib/init.sh"
  10. arg1_required "$@"
  11. readonly CONTAINER="$1"
  12. launch_container "$CONTAINER"
  13. check || (
  14. install
  15. check
  16. )