--- /dev/null
+Hoarder package skeleton for debian systems
--- /dev/null
+#!/bin/bash
+#
+# Trashman installer for debian systems.
+#
+
+# Parameters
+SHARE="$1"
+REQUIREMENTS=""
+
+# Include basic functions
+. $SHARE/trashman/functions || exit 1
+. $SHARE/trashman/debian || exit 1
+
+# Requirements
+#trashman_apt_install_packages $REQUIREMENTS
+
+# Write your custom installation code here
+# TODO
--- /dev/null
+#!/bin/bash
+#
+# Hoarder package templater module for debian systems.
+#
+
+# Parameters
+SHARE="$1"
+
+# Include basic functions
+source $SHARE/templater/functions || exit 1
+
+# Templater module
+function templater_trashman_debian {
+ if [ ! -e "description" ]; then
+ templater_echo "Setting Hoarder package for debian systems"
+
+ touch info
+ mkdir unix/linux/debian
+
+ if [ ! -e 'unix/linux/debian/install' ]; then
+ cp $SHARE/hoarder-debian/files/install unix/linux/debian/install
+ chmod +x unix/linux/debian/install
+ fi
+ else
+ templater_echo "Hoarder package already set"
+ fi
+}
+
+# Dispatch
+templater_trashman
--- /dev/null
+Hoarder package skeleton
--- /dev/null
+#!/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
--- /dev/null
+Trashman package skeleton for debian systems
--- /dev/null
+#!/bin/bash
+#
+# Hoarder installer for debian systems.
+#
+
+# Parameters
+SHARE="$1"
+LIB="$2"
+REQUIREMENTS=""
+
+# Include basic functions
+. $LIB/trashman/functions || exit 1
+. $LIB/trashman/debian || exit 1
+
+# Requirements
+#trashman_apt_install_packages $REQUIREMENTS
+
+# Write your custom installation code here
+# TODO
--- /dev/null
+#!/bin/bash
+#
+# Trashman package templater module for debian systems.
+#
+
+# Parameters
+SHARE="$1"
+
+# Include basic functions
+source $SHARE/templater/functions || exit 1
+
+# Templater module
+function templater_trashman_debian {
+ if [ ! -e "description" ]; then
+ templater_echo "Setting Trashman package for debian systems"
+
+ touch info
+ mkdir unix/linux/debian
+
+ if [ ! -e 'unix/linux/debian/install' ]; then
+ cp $SHARE/trashman-debian/files/install unix/linux/debian/install
+ chmod +x unix/linux/debian/install
+ fi
+ else
+ templater_echo "Trashman package already set"
+ fi
+}
+
+# Dispatch
+templater_trashman