Add shebang to make it clear these files are shell scripts (they are
authorajacoutot <ajacoutot@openbsd.org>
Mon, 14 Jul 2014 10:15:33 +0000 (10:15 +0000)
committerajacoutot <ajacoutot@openbsd.org>
Mon, 14 Jul 2014 10:15:33 +0000 (10:15 +0000)
explicitely executed by sh(1)).

discussed with deraadt@

etc/examples/rc.local
etc/examples/rc.securelevel
etc/examples/rc.shutdown

index a0978bb..b55007e 100644 (file)
@@ -1,6 +1,9 @@
-#      $OpenBSD: rc.local,v 1.2 2014/07/14 09:42:50 ajacoutot Exp $
+#!/bin/sh
+#
+# $OpenBSD: rc.local,v 1.3 2014/07/14 10:15:33 ajacoutot Exp $
 #
 # Site-specific startup actions, daemons, and other things which
 # can be done AFTER your system goes into securemode.  For actions
 # which should be done BEFORE your system has gone into securemode
 # please see /etc/rc.securelevel.
+#
index 8440918..3de9386 100644 (file)
@@ -1,6 +1,9 @@
-#      $OpenBSD: rc.securelevel,v 1.2 2014/07/14 09:42:27 ajacoutot Exp $
+#!/bin/sh
+#
+# $OpenBSD: rc.securelevel,v 1.3 2014/07/14 10:15:33 ajacoutot Exp $
 #
 # site-specific startup actions, daemons, and other things which
 # can be done BEFORE your system goes into securemode.  For actions
 # which should be done AFTER your system has gone into securemode
-# please see /etc/rc.local
+# please see /etc/rc.local.
+#
index 495cbc7..b309594 100644 (file)
@@ -1,5 +1,8 @@
-#      $OpenBSD: rc.shutdown,v 1.2 2014/07/14 09:42:50 ajacoutot Exp $
+#!/bin/sh
+#
+# $OpenBSD: rc.shutdown,v 1.3 2014/07/14 10:15:33 ajacoutot Exp $
 #
 # If it exists, this script is run at system-shutdown by reboot(8),
 # halt(8).  If the architecture supports keyboard requested halting,
 # it is also run by init(8) when such an event happens.
+#