summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/script/syntax/legacy-scripts/build-spec/debian/postinst
blob: 7c5baf1fb99817feb75c565e76181d466cef3de7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

if [ -x "/etc/init.d/lsb-broken" ] ; then
    update-rc.d lsb-broken defaults >/dev/null
fi
if [ -x "/etc/init.d/no-lsb" ] ; then
    update-rc.d no-lsb defaults >/dev/null
fi
if [ -x "/etc/init.d/skeleton" ] ; then
    update-rc.d skeleton defaults >/dev/null
fi
if [ -x "/etc/init.d/lsb-other" ] ; then
    update-rc.d lsb-other defaults >/dev/null
fi