From 87ec3d92c79bd4d933ea2ae2ad8794aa0e5fbf60 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 26 Mar 2009 19:41:58 +0100 Subject: update --- mumble/mumble.install | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 mumble/mumble.install (limited to 'mumble/mumble.install') diff --git a/mumble/mumble.install b/mumble/mumble.install new file mode 100644 index 0000000..7c28ef5 --- /dev/null +++ b/mumble/mumble.install @@ -0,0 +1,42 @@ +# arg 1: the new package version +pre_install() { + /bin/true +} + +post_install() { + echo ' -> Mumble will generate an anonymous usage report' + echo ' -> 10 minutes after launch. You can deactivate this' + echo ' -> feature: Menu "Configure" > Settings > User' + echo ' -> Interface > "Expert Config" > Network > "Submit' + echo ' -> anonymous statistics"' + echo '' +} + +# arg 1: the new package version +# arg 2: the old package version +pre_upgrade() { + /bin/true +} + +post_upgrade() { + echo ' -> Mumble will generate an anonymous usage report' + echo ' -> 10 minutes after launch. You can deactivate this' + echo ' -> feature: Menu "Configure" > Settings > User' + echo ' -> Interface > "Expert Config" > Network > "Submit' + echo ' -> anonymous statistics"' + echo '' +} + +# arg 1: the old package version +pre_remove() { + /bin/true +} + +# arg 1: the old package version +post_remove() { + /bin/true +} + +op=$1 +shift +$op $* -- cgit v1.2.3-24-g4f1b