first version

This commit is contained in:
2020-06-10 14:50:30 +02:00
commit 301fb8162e
5 changed files with 164 additions and 0 deletions

14
scripts/_zola Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
source /usr/share/yunohost/helpers
function check_zola_is_present() {
if zola --version >/dev/null 2>&1; then
echo "true"
else
echo "false"
fi
}
# function install_zola() {}