blob: bc04f19748f4e5d3ebbd751008267305788f2dbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
set -e
# Remove shutdown and reboot links; this init script does not need them.
case "$1" in
configure)
if [ -x "$(command -v update-smart-drivedb)" ]; then
update-smart-drivedb --install
else
cp -f /usr/share/smartmontools/drivedb.h /var/lib/smartmontools/drivedb/
fi
;;
esac
#DEBHELPER#
|