aboutsummarylogtreecommitdiffstats
path: root/keybase.install
diff options
context:
space:
mode:
authorJack O'Connor2016-02-10 17:53:06 -0500
committerJack O'Connor2016-02-10 18:12:26 -0500
commit20a9abb4f01e2d28ddd045be360f002f4b313528 (patch)
treee6dfa54f34f2efc6795b1efe633410b5c5b3ea5c /keybase.install
downloadaur-20a9abb4f01e2d28ddd045be360f002f4b313528.tar.gz
initial package
Diffstat (limited to 'keybase.install')
-rw-r--r--keybase.install13
1 files changed, 13 insertions, 0 deletions
diff --git a/keybase.install b/keybase.install
new file mode 100644
index 000000000000..0072c06ab63d
--- /dev/null
+++ b/keybase.install
@@ -0,0 +1,13 @@
+post_install() {
+ if [ -e /opt/keybase/post_install.sh ] ; then
+ # Until KBFS is in the production packages, this script doesn't exist.
+ /opt/keybase/post_install.sh
+ fi
+}
+
+post_upgrade() {
+ if [ -e /opt/keybase/post_install.sh ] ; then
+ # Until KBFS is in the production packages, this script doesn't exist.
+ /opt/keybase/post_install.sh
+ fi
+}