diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-06-02 12:20:33 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-06-02 16:35:28 -0300 |
commit | 02cd0afb4dfe0e9772a95e4c2515578fcbe6bf69 (patch) | |
tree | 1d9aedf5ab81915f87b05d36263a0e6ef4940cf7 /pcr/lie/lie.install | |
parent | 4e1bff63ecf0bd966914beaf8eeba2a55e7cd760 (diff) | |
download | abslibre-02cd0afb4dfe0e9772a95e4c2515578fcbe6bf69.tar.gz abslibre-02cd0afb4dfe0e9772a95e4c2515578fcbe6bf69.tar.bz2 abslibre-02cd0afb4dfe0e9772a95e4c2515578fcbe6bf69.zip |
lie: add new package to [pcr]
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 $* |