Remove /bin/true from install.proto

Signed-off-by: Roman Kyrylych <roman@archlinux.org>
[Dan: update indentation inside functions]
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Roman Kyrylych 2008-01-30 14:15:17 +02:00 committed by Dan McGee
parent b1103a3eaf
commit 7cfb343b0f

View file

@ -1,36 +1,37 @@
# This is a default template for a post-install scriptlet. You can # This is a default template for a post-install scriptlet.
# remove any functions you don't need (and this header). # Uncomment only required functions and remove any functions
# you don't need (and this header).
# arg 1: the new package version ## arg 1: the new package version
pre_install() { #pre_install() {
/bin/true # do something here
} #}
# arg 1: the new package version ## arg 1: the new package version
post_install() { #post_install() {
/bin/true # do something here
} #}
# arg 1: the new package version ## arg 1: the new package version
# arg 2: the old package version ## arg 2: the old package version
pre_upgrade() { #pre_upgrade() {
/bin/true # do something here
} #}
# arg 1: the new package version ## arg 1: the new package version
# arg 2: the old package version ## arg 2: the old package version
post_upgrade() { #post_upgrade() {
/bin/true # do something here
} #}
# arg 1: the old package version ## arg 1: the old package version
pre_remove() { #pre_remove() {
/bin/true # do something here
} #}
# arg 1: the old package version ## arg 1: the old package version
post_remove() { #post_remove() {
/bin/true # do something here
} #}
# vim:set ts=2 sw=2 et: # vim:set ts=2 sw=2 et: