diff options
author | Galen Guyer <galen@galenguyer.com> | 2022-08-05 12:06:31 -0400 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2022-08-05 12:06:31 -0400 |
commit | 6c379fe0a506e4405e3e8d5f3dda4c94cbcd8496 (patch) | |
tree | fbd13784bf7eb1f45df4604bca44404128d6e879 /modules/test | |
parent | 50631579696f541e6818112095151b917f5f1441 (diff) |
Install packages, preinstall and install methods, locations
Diffstat (limited to 'modules/test')
-rw-r--r-- | modules/test/install.sh | 11 |
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" +} |