소스 패키지의 debian / package.postinst에 사용자 정의 단계를 추가 하시겠습니까?


8

자동 생성 debian/package.postinst.debhelper파일을 생성 된 이진 파일로 통합하는 패키지가 있습니다. 에서 자체 코드를 파일에 넣으면 debian/package.postinst자동 생성 된 파일이 더 이상 결과 바이너리에 통합되지 않습니다.

postinst자동 생성 코드 사용을 차단하지 않고 생성 된 패키지 의 파일에 사용자 지정 코드를 추가하려면 어떻게합니까 ?

답변:


12

#DEBHELPER#토큰을 수정할 수있는 debhelper 명령을 사용하는 경우 postinst 스크립트에 토큰 이 포함되어 있어야 합니다. 결과 스크립트에서 자동 생성 된 컨텐츠로 대체됩니다. 명령에 대한 맨 페이지를 참조하십시오dh_installdeb맨 페이지 아이콘

예를 들면 다음과 같습니다.

#!/bin/sh
# postinst script for webpy-example
#
# see: dh_installdeb(1)

set -e

# summary of how this script can be called:
#        * <postinst> `configure' <most-recently-configured-version>
#        * <old-postinst> `abort-upgrade' <new version>
#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
#          <new-version>
#        * <postinst> `abort-remove'
#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
#          <failed-install-package> <version> `removing'
#          <conflicting-package> <version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package

# source debconf library
. /usr/share/debconf/confmodule

# Source dbconfig-common functions
if [ -f /usr/share/dbconfig-common/dpkg/postinst.pgsql  ]; then
  . /usr/share/dbconfig-common/dpkg/postinst.pgsql
fi

case "$1" in

  configure)
    # Set up our config for apache
    /bin/cp /usr/share/webpy-example/postinstall/webpy-config /etc/apache2/conf.d/
    /usr/sbin/a2enmod wsgi
    /usr/sbin/a2enmod rewrite
    /etc/init.d/apache2 reload

    # set up database
    dbc_pgsql_createdb_encoding="UTF8"
    dbc_generate_include=template:/usr/share/webpy-example/lib/credentials.py
    dbc_generate_include_args="-U -o template_infile='/usr/share/doc/webpy-example/credentials_template.py'"
    dbc_generate_include_owner="root:www-data"
    dbc_generate_include_perms="0660"
    dbc_go webpy-example $@ || true
  ;;

  abort-upgrade|abort-remove|abort-deconfigure)
    exit 0
  ;;

  *)
    echo "postinst called with unknown argument \`$1'" >&2
    exit 1
  ;;

esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

db_stop

exit 0
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.