#!/bin/bash # # Hoarder package templater module. # # Parameters SHARE="$1" # Include basic functions source $SHARE/templater/functions || exit 1 # Templater module function templater_trashman { if [ ! -e "description" ]; then templater_echo "Setting Hoarde package" touch info mkdir unix else templater_echo "Hoarder package already set" fi } # Dispatch templater_trashman