Files
entropy/server/trigger.sh
lxnay e7f1dc863e Entropy/TODO:
- update TODO
Entropy/TriggerInterface:
- add support for bash based triggers (preliminary and incomplete)
- provide bash based trigger example


git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@3073 cd1c1023-2f26-0410-ae45-c471fc1f0318
2009-02-24 21:21:45 +00:00

23 lines
260 B
Bash
Executable File

#!/usr/sbin/entropy.sh
function pkg_preinst() {
echo "preinst"
return 0
}
function pkg_postinst() {
echo "postinst"
return 0
}
function pkg_prerm() {
echo "prerm"
return 0
}
function pkg_postrm() {
echo "postrm"
return 0
}