]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
All module scripts should have a shebang
authorPhilippe Seewer <philippe.seewer@bfh.ch>
Fri, 27 Nov 2009 10:57:14 +0000 (11:57 +0100)
committerHarald Hoyer <harald@redhat.com>
Fri, 27 Nov 2009 13:07:21 +0000 (14:07 +0100)
modules.d/90crypt/crypt-cleanup.sh
modules.d/90crypt/parse-crypt.sh
modules.d/90dmsquash-live/parse-dmsquash-live.sh
modules.d/90lvm/lvm-cleanup.sh
modules.d/90mdraid/mdraid-cleanup.sh
modules.d/95dasd/parse-dasd.sh
modules.d/95dasd_mod/parse-dasd-mod.sh
modules.d/95iscsi/mount-lun.sh
modules.d/95zfcp/parse-zfcp.sh
modules.d/95znet/parse-ccw.sh

index 1a47d47262dd5a376244bb549b2421353f830b37..3959a07d8fca1048beeb40296c361cc1c726b2fa 100755 (executable)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # close everything which is not busy
 for i in /dev/mapper/luks-*; do
     cryptsetup luksClose $i >/dev/null 2>&1
index 789bbb06162034c8b3458f5f56ce948d6fea5c6d..5c2a94a8482c8fb959e2ac277cc14809a605b51a 100755 (executable)
@@ -1,3 +1,4 @@
+#!/bin/sh
 if getarg rd_NO_LUKS; then
     info "rd_NO_LUKS: removing cryptoluks activation"
     rm -f /etc/udev/rules.d/70-luks.rules
index 40ca0162756a8d896bea6d53a69ffe1d6c04e14d..646da362b1e28ab3e2f6d4e877dffcd45f79ea73 100755 (executable)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # live images are specified with
 # root=live:backingdev
 
index 6efd91190470adec50e809cb691cfb8b60fe47eb..f0b4037f53ccc13107394f47cc65671a6199d724 100755 (executable)
@@ -1,2 +1,3 @@
+#!/bin/sh
 # stop everything which is not busy
 lvm vgchange -a n >/dev/null 2>&1
index dc3b86fe474322f68838ecf3390452b2585550e8..f4b7810eb095b6cd57b3a55f373e1f77d8a84ca0 100755 (executable)
@@ -1,3 +1,4 @@
+#!/bin/sh
 # stop everything which is not busy
 for i in /dev/md* /dev/md/*; do
     [ -b $i ] || continue
index af58b3193123fbb1793d48091bde376cea0695f7..47bcfe4c2ef36c778352d4188ce20c7118e72c31 100755 (executable)
@@ -1,3 +1,4 @@
+#!/bin/sh
 for dasd_arg in $(getargs 'rd_DASD='); do
     (
         IFS=","
index 023c9ad7c9259a392f6e9a9d3d4c30eab632f60a..63a7da46cd199ffe55bc677bcda1e348573706e2 100755 (executable)
@@ -1,3 +1,4 @@
+#!/bin/sh
 [ -d /etc/modprobe.d ] || mkdir /etc/modprobe.d
 
 dasd_arg=$(getarg rd_DASD_MOD=)
index ff8d4d0b9fc75b67c6188875732d9aa5dbbbcfcb..d0b6458793148f1c1a899350044509c584a0cc06 100755 (executable)
@@ -1,3 +1,4 @@
+#!/bin/sh
 if [ -z $iscsi_lun ]; then
     iscsi_lun=0
 fi
index 4f502c21e0a9d5f97ed829edebee7aca838fb551..7fcee870322a972022639c114bc660fb6ff21725 100755 (executable)
@@ -1,4 +1,4 @@
-
+#!/bin/sh
 getarg rd_NO_ZFCPCONF && rm /etc/zfcp.conf
 
 for zfcp_arg in $(getargs 'rd_ZFCP='); do
index c8b257f8651b2c995c00cba4fbe95a7ae50563e1..846c85384b7abab4c0048c7fbafa48639f2eb1ba 100755 (executable)
@@ -1,3 +1,4 @@
+#!/bin/sh
 for ccw_arg in $(getargs 'rd_CCW='); do
     echo $ccw_arg >> /etc/ccw.conf
 done