v0.0.20 pkgrel 6

+no fork bomb test
This commit is contained in:
Fredrick Brennan
2023-06-21 01:50:03 -04:00
parent 724f305e6f
commit 3ece8e10bf
5 changed files with 23 additions and 17 deletions

View File

@@ -1,6 +1,7 @@
#!/bin/bash
source /usr/share/sensible-utils/sensible-envvars
source /etc/profile
post_install() {
for cmd in ${!SENSIBLEENVVARS[*]}; do
@@ -14,10 +15,12 @@ post_install() {
fi
[[ -z "${!envvar}" ]] && echo "$cmdpath requires $envvar be set in the environment to work properly!"
done
return 0
}
post_upgrade() {
post_install "$@"
return $?
}
# vim:set ts=2 sw=2 et: