#!/bin/bash # # Trashman 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 Trashman package" touch info mkdir unix else templater_echo "Trashman package already set" fi } # Dispatch templater_trashman