From de61bb6a3522287040108b6f64668ac9ab8478b6 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Thu, 24 Oct 2019 02:01:43 -0700 Subject: packager.io: update scripts (#5837) * Test new buildpack and distro * Try another buildpack version * Give another try * Try another one * Best effort --- packager/hooks/postinst | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 packager/hooks/postinst (limited to 'packager/hooks') diff --git a/packager/hooks/postinst b/packager/hooks/postinst deleted file mode 100755 index 561080ef..00000000 --- a/packager/hooks/postinst +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh - -set -e - -APP_NAME="gogs" -CLI="${APP_NAME}" -APP_USER=$(${CLI} config:get APP_USER) -APP_GROUP=$(${CLI} config:get APP_GROUP) -APP_CONFIG="/etc/${APP_NAME}/conf/app.ini" - -mkdir -p $(dirname ${APP_CONFIG}) -chown ${APP_USER}.${APP_GROUP} $(dirname ${APP_CONFIG}) -[ -f ${APP_CONFIG} ] || ${CLI} run cp conf/app.ini ${APP_CONFIG} -${CLI} config:set USER=${APP_USER} -sed -i "s|RUN_USER = git|RUN_USER = ${APP_USER}|" ${APP_CONFIG} -sed -i "s|RUN_MODE = dev|RUN_MODE = prod|" ${APP_CONFIG} - -${CLI} config:set GOGS_CUSTOM=/etc/${APP_NAME} - -# scale -${CLI} scale web=1 || true - -# restart the service -service gogs restart || true -- cgit v1.2.3