diff options
Diffstat (limited to 'pcr/lie/lie.install')
-rw-r--r-- | pcr/lie/lie.install | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/pcr/lie/lie.install b/pcr/lie/lie.install new file mode 100644 index 000000000..843f01a31 --- /dev/null +++ b/pcr/lie/lie.install @@ -0,0 +1,35 @@ +# arg 1: the new package version +pre_install() { + /bin/true +} + +# arg 1: the new package version +post_install() { + /bin/true +} + +# arg 1: the new package version +# arg 2: the old package version +pre_upgrade() { + /bin/true +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + post_install +} + +# arg 1: the old package version +pre_remove() { + /bin/true +} + +# arg 1: the old package version +post_remove() { + /bin/true +} + +op=$1 +shift +$op $* |