#!/bin/bash # # KVMX templater module. # # Parameters SHARE="$1" # Include basic functions source $SHARE/templater/functions || exit 1 # KVMX implementation function templater_kvmx { if [ ! -e "kvmxfile" ]; then templater_echo "Setting up kvmx..." kvmx init #git commit -a -m "Adds kvmx support" else templater_echo "KVMX already set" fi } # Dispatch templater_kvmx