Compare commits
5 Commits
suites/uns
...
suites/beo
Author | SHA1 | Date |
---|---|---|
|
8fa408cb92 | 3 years ago |
|
6f856201e0 | 3 years ago |
|
3aad9a87cc | 3 years ago |
|
01b7a3f3b9 | 3 years ago |
|
dc53835519 | 3 years ago |
7 changed files with 48 additions and 24 deletions
@ -1,8 +1,10 @@ |
|||
[DEFAULT] |
|||
debian-branch = debian/master |
|||
debian-branch = suites/beowulf |
|||
upstream-branch = upstream/latest |
|||
pristine-tar = True |
|||
pristine-tar = False |
|||
sign-tags = True |
|||
upstream-tag=upstream/%(version)s |
|||
debian-tag=devuan/%(version)s |
|||
|
|||
[import-orig] |
|||
upstream-vcs-tag = %(version)s |
|||
|
@ -0,0 +1,25 @@ |
|||
#!/bin/sh |
|||
# Generated by sysd2v v0.3 -- http://www.trek.eu.org/devel/sysd2v |
|||
# kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing. |
|||
if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then |
|||
set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script |
|||
fi |
|||
### BEGIN INIT INFO |
|||
# Provides: iwd |
|||
# Required-Start: $remote_fs |
|||
# Required-Stop: $remote_fs |
|||
# Should-Start: $network |
|||
# Should-Stop: $network |
|||
# Default-Start: 2 3 4 5 |
|||
# Default-Stop: 0 1 6 |
|||
# Description: Wireless service |
|||
### END INIT INFO |
|||
set -a |
|||
STATE_DIRECTORY=/var/lib/iwd |
|||
CONFIGURATION_DIRECTORY=/etc/iwd |
|||
set +a |
|||
|
|||
DAEMON=/usr/libexec/iwd |
|||
PIDFILE=/var/run/iwd-sysd2v.pid |
|||
START_ARGS="--background --make-pidfile" |
|||
|
@ -1,17 +0,0 @@ |
|||
#!/bin/sh |
|||
set -e |
|||
|
|||
# in <= 0.2 iwd.service used WantedBy=network-pre.target |
|||
# but in 0.3 this was changed to WantedBy=multi-user.target |
|||
# remove the old state so we get the upgraded state |
|||
# (as the debhelper generated enabling code will only |
|||
# act on new installs, we simply purge current state first). |
|||
if [ "$1" = "configure" ] && [ -n "$2" ] && \ |
|||
dpkg --compare-versions "$2" lt 0.3; then |
|||
if [ -x "/usr/bin/deb-systemd-helper" ]; then |
|||
deb-systemd-helper purge 'iwd.service' >/dev/null || true |
|||
deb-systemd-helper unmask 'iwd.service' >/dev/null || true |
|||
fi |
|||
fi |
|||
|
|||
#DEBHELPER# |
Loading…
Reference in new issue