]> git.openstreetmap.org Git - chef.git/blob - cookbooks/hardware/templates/default/update-smart-drivedb.erb
Run smartmontools update-smart-drivedb occasionally
[chef.git] / cookbooks / hardware / templates / default / update-smart-drivedb.erb
1 #/bin/bash
2 # DO NOT EDIT - This file is being maintained by Chef
3
4 set -eu
5
6 if [ -x /usr/sbin/update-smart-drivedb ]; then
7   /usr/sbin/update-smart-drivedb -u github
8 fi
9
10 exit 0