aboutsummarylogtreecommitdiffstats
path: root/keybase.install
diff options
context:
space:
mode:
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
+}