bashスクリプトとsystemdサービスでDebianパッケージを作成する方法は?

bashスクリプトとsystemdサービスでDebianパッケージを作成する方法は?

bashスクリプトとsystemdサービスからDebianパッケージを構築する方法は?

.deb正常にインストールされたら、起動/停止を介して制御スクリプトでsystemdサービスを使用できます。 Web検索には単一のファイル(python、shell、ruby ... script)を.deb

答え1

シェルスクリプトと関連サービスをインストールする最小ソースパッケージです。

ツリーは次のとおりです。

minpackage
├── debian
│   ├── changelog
│   ├── control
│   ├── install
│   ├── minpackage.service
│   ├── rules
│   └── source
│       └── format
└── script

scriptこれは特権755のスクリプトですdebian/minpackage.service

debian/changelogのように見える必要があります

minpackage (1.0) unstable; urgency=medium                     
                                                                
  * Initial release.                                            
                                                                
 -- GAD3R <[email protected]>  Tue, 05 Jan 2021 21:08:35 +0100                                                            

debian/control含める必要があります

Source: minpackage                         
Section: admin                             
Priority: optional                         
Maintainer: GAD3R <[email protected]>
Build-Depends: debhelper-compat (= 13)     
Standards-Version: 4.5.1                   
Rules-Requires-Root: no                    
                                           
Package: minpackage                        
Architecture: all                          
Depends: ${misc:Depends}                   
Description: My super package              

debian/rules含める必要があります

#!/usr/bin/make -f  
                    
%:                  
        dh $@       

Tab以前は本物がありましたdh)。

残りのファイルは次のように生成できます。

mkdir -p debian/source
echo "3.0 (native)" > debian/source/format
echo script usr/bin > debian/install

パッケージをビルドするには:

dpkg-buildpackage -uc -us

minpackageディレクトリに。

これはminpackage_1.0_all.deb親ディレクトリに作成されます。また、システム管理者スクリプトを処理するため、パッケージのインストール時にサービスが自動的に有効になり、Debianで使用できるさまざまなオーバーライドメカニズムもサポートされます。

答え2

次のツリー構造を展開myservice.serviceしたいとします。myscript

$ tree
.
├── DEBIAN
│   ├── control
│   ├── postinst
│   ├── postrm
│   └── prerm
├── lib
│   └── systemd
│       └── system
│           └── myservice.service
└── usr
    └── bin
        └── myscript

./DEBIAN/含める必要があります制御ファイルメタデータと展開のためのメンテナンススクリプトです。

これはデフォルトの制御ファイルです。

Package: mypackage
Version: 0.1
Architecture: all
Maintainer: GAD3R <[email protected]>
Description: This is my package!

dh_installsystemd(1)通常、サービスを管理するために管理者スクリプトに基本コードを追加するために使用されます。あなたの外観は次のとおりです。

郵便:

#!/bin/sh
set -e
# Automatically added by dh_installsystemd/13.2
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
        # This will only remove masks created by d-s-h on package removal.
        deb-systemd-helper unmask 'myservice.service' >/dev/null || true

        # was-enabled defaults to true, so new installations run enable.
        if deb-systemd-helper --quiet was-enabled 'myservice.service'; then
                # Enables the unit on first installation, creates new
                # symlinks on upgrades if the unit file has changed.
                deb-systemd-helper enable 'myservice.service' >/dev/null || true
        else
                # Update the statefile to add new symlinks (if any), which need to be
                # cleaned up on purge. Also remove old symlinks.
                deb-systemd-helper update-state 'myservice.service' >/dev/null || true
        fi
fi
# End automatically added section
# Automatically added by dh_installsystemd/13.2
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
        if [ -d /run/systemd/system ]; then
                systemctl --system daemon-reload >/dev/null || true
                if [ -n "$2" ]; then
                        _dh_action=restart
                else
                        _dh_action=start
                fi
                deb-systemd-invoke $_dh_action 'myservice.service' >/dev/null || true
        fi
fi
# End automatically added section

以降のステップ:

#!/bin/sh
set -e
# Automatically added by dh_installsystemd/13.2
if [ -d /run/systemd/system ]; then
        systemctl --system daemon-reload >/dev/null || true
fi
# End automatically added section
# Automatically added by dh_installsystemd/13.2
if [ "$1" = "remove" ]; then
        if [ -x "/usr/bin/deb-systemd-helper" ]; then
                deb-systemd-helper mask 'myservice.service' >/dev/null || true
        fi
fi

if [ "$1" = "purge" ]; then
        if [ -x "/usr/bin/deb-systemd-helper" ]; then
                deb-systemd-helper purge 'myservice.service' >/dev/null || true
                deb-systemd-helper unmask 'myservice.service' >/dev/null || true
        fi
fi
# End automatically added section

裁判前:

#!/bin/sh
set -e
# Automatically added by dh_installsystemd/13.2
if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
        deb-systemd-invoke stop 'myservice.service' >/dev/null || true
fi
# End automatically added section

それから一緒にクリーンアップします。

dpkg-deb -b . mypackage.deb

関連情報