summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2022-08-05 12:06:31 -0400
committerGalen Guyer <galen@galenguyer.com>2022-08-05 12:06:31 -0400
commit6c379fe0a506e4405e3e8d5f3dda4c94cbcd8496 (patch)
treefbd13784bf7eb1f45df4604bca44404128d6e879 /modules
parent50631579696f541e6818112095151b917f5f1441 (diff)
Install packages, preinstall and install methods, locations
Diffstat (limited to 'modules')
-rw-r--r--modules/test/install.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/test/install.sh b/modules/test/install.sh
new file mode 100644
index 0000000..2adaf16
--- /dev/null
+++ b/modules/test/install.sh
@@ -0,0 +1,11 @@
+_script="$(realpath ${BASH_SOURCE[0]})"
+_scriptname="$(basename $_script)"
+_scriptdir="$(dirname $_script)"
+_modulename="$(basename $_scriptdir)"
+
+#function preinstall() {
+#}
+
+function install() {
+ echo "module name: $_modulename"
+}