- 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
23 lines
260 B
Bash
Executable File
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
|
|
}
|
|
|