@@ -0,0 +1,21 @@
+#!/bin/bash
+
+hestia_module_is-installed() {
+ source $HESTIA/bin/module/func.inc
+ if [ "$1" ]; then
+ local mod_name=$1
+ shift
+ if hestia_module_isinstalled $mod_name; then
+ echo true
+ return 0
+ else
+ echo false
+ return 1
+ fi
+ echo "Usage: module is-installed MODULE_NAME"
+}