summarylogtreecommitdiffstats
path: root/conlie.install
diff options
context:
space:
mode:
Diffstat (limited to 'conlie.install')
-rwxr-xr-xconlie.install35
1 files changed, 35 insertions, 0 deletions
diff --git a/conlie.install b/conlie.install
new file mode 100755
index 000000000000..843f01a310f2
--- /dev/null
+++ b/conlie.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 $*