File: prerm

package info (click to toggle)
dhcp-helper 1.2-1
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 148 kB
  • ctags: 51
  • sloc: ansic: 441; sh: 97; makefile: 76
file content (12 lines) | stat: -rw-r--r-- 158 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

if [ -x /usr/sbin/invoke-rc.d ] ; then
    invoke-rc.d dhcp-helper  stop || true
else
    /etc/init.d/dhcp-helper stop || true
fi

exit 0