From e0b56156f45849357c24a946a411e2a73d8bd6e9 Mon Sep 17 00:00:00 2001 From: Slobberbone Date: Wed, 5 Feb 2020 21:29:12 +0100 Subject: [PATCH] Add Postinst For Debian Package --- install/postinst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 install/postinst diff --git a/install/postinst b/install/postinst new file mode 100755 index 000000000..ccaa82684 --- /dev/null +++ b/install/postinst @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +set -e + +################################################################################################# +################################### NextDom Installation from deb ############################### +################################### Script to remove in the futur ############################### +################################### .deb package should call ############################### +################################### # scripts/postinst.sh instead ############################### +################################################################################################# + +CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)" +cd ${CURRENT_DIR}/../ +export ROOT_DIRECTORY=${PWD} +bash ${CURRENT_DIR}/scripts/postinst.sh + + +