%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
#!/usr/bin/perl use warnings; use strict; use Debian::Debhelper::Dh_Lib; if (not compat(10)) { error("The systemd-sequence is no longer provided in compat >= 11, please rely on dh_installsystemd instead"); } # dh_systemd_enable runs unconditionally, and before dh_installinit, so that # the latter can use invoke-rc.d and all symlinks are already in place. insert_before("dh_installinit", "dh_systemd_enable"); # dh_systemd_start handles the case where there is no corresponding init # script, so it runs after dh_installinit. insert_after("dh_installinit", "dh_systemd_start"); 1