]> git.openstreetmap.org Git - chef.git/commitdiff
Fix typo
authorTom Hughes <tom@compton.nu>
Sat, 19 Sep 2020 06:33:46 +0000 (07:33 +0100)
committerTom Hughes <tom@compton.nu>
Sat, 19 Sep 2020 06:33:46 +0000 (07:33 +0100)
cookbooks/hardware/templates/default/update-smart-drivedb.erb

index f01beefa2624aee316618437b6fe4fc4c3e67a19..5093be8137962fe21622b5e8b795d958464bf7d2 100644 (file)
@@ -1,10 +1,10 @@
-#/bin/bash
+#!/bin/bash
 # DO NOT EDIT - This file is being maintained by Chef
 
 set -eu
 
 if [ -x /usr/sbin/update-smart-drivedb ]; then
-  /usr/sbin/update-smart-drivedb -u github >/dev/null
+  /usr/sbin/update-smart-drivedb -u github > /dev/null
 fi
 
 exit 0