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 + + +