我已经使用fpm为我的应用程序制作了.deb
:
fpm -s dir -t deb -n myapp -v 9 -a all -x "*.git" -x "*.bak" -x "*.orig" \
--after-remove debian/postrm --after-install debian/postinst \
--description "Automated build." -d mysql-client -d python-virtualenv home
其中,
postinst
脚本应该为该应用程序创建一个用户:#!/bin/sh
set -e
APP_NAME=myapp
case "$1" in
configure)
virtualenv /home/$APP_NAME/local
#supervisorctl start $APP_NAME
;;
# http://www.debian.org/doc/manuals/securing-debian-howto/ch9.en.html#s-bpp-lower-privs
install|upgrade)
# If the package has default file it could be sourced, so that
# the local admin can overwrite the defaults
[ -f "/etc/default/$APP_NAME" ] && . /etc/default/$APP_NAME
# Sane defaults:
[ -z "$SERVER_HOME" ] && SERVER_HOME=/home/$APP_NAME
[ -z "$SERVER_USER" ] && SERVER_USER=$APP_NAME
[ -z "$SERVER_NAME" ] && SERVER_NAME=""
[ -z "$SERVER_GROUP" ] && SERVER_GROUP=$APP_NAME
# Groups that the user will be added to, if undefined, then none.
ADDGROUP=""
# create user to avoid running server as root
# 1. create group if not existing
if ! getent group | grep -q "^$SERVER_GROUP:" ; then
echo -n "Adding group $SERVER_GROUP.."
addgroup --quiet --system $SERVER_GROUP 2>/dev/null ||true
echo "..done"
fi
# 2. create homedir if not existing
test -d $SERVER_HOME || mkdir $SERVER_HOME
# 3. create user if not existing
if ! getent passwd | grep -q "^$SERVER_USER:"; then
echo -n "Adding system user $SERVER_USER.."
adduser --quiet \
--system \
--ingroup $SERVER_GROUP \
--no-create-home \
--disabled-password \
$SERVER_USER 2>/dev/null || true
echo "..done"
fi
# … and a bunch of other stuff.
似乎
postinst
脚本是使用configure
调用的,而不是install
调用的,我正在尝试理解原因。在/var/log/dpkg.log
中,我看到了以下行:2012-06-30 13:28:36 configure myapp 9 9
2012-06-30 13:28:36 status unpacked myapp 9
2012-06-30 13:28:36 status half-configured myapp 9
2012-06-30 13:28:43 status installed myapp 9
我检查了
/etc/default/myapp
不存在。文件/var/lib/dpkg/info/myapp.postinst
存在,并且如果我以install
作为第一个参数手动运行它,它将按预期工作。为什么
postinst
脚本不能与install
一起运行?我该怎么做才能进一步调试呢? 最佳答案
我认为您复制的示例脚本完全是错误的。 postinst
不是
应该使用任何install
或upgrade
参数调用。
dpkg格式的权威定义是Debian Policy
手动的。当前版本在chapter6中描述了postinst
并且仅列出configure
,abort-upgrade
,abort-remove
,abort-remove
和abort-deconfigure
作为可能的第一个参数。
我对自己的回答没有完全的信心,因为您的坏榜样
仍在debian.org上,很难相信这样的错误会溜走
通过。
关于package - 为什么我的debian postinst脚本没有运行?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11274290/