From: Darik Horn Date: Sun, 4 Dec 2011 20:01:58 +0000 (-0600) Subject: Demote the whackbang in the zpool_id script. X-Git-Tag: zfs-0.6.0-rc7~56 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=db7c1771da2634af4e2a4323759656c7f0afe689;p=zfs Demote the whackbang in the zpool_id script. The zpool_id script is posixly correct and does not use bash features, so change its whackbang from /bin/bash to /bin/sh. Debian policy also stipulates that system scripts be dash compatible. Signed-off-by: Brian Behlendorf --- diff --git a/cmd/zpool_id/zpool_id b/cmd/zpool_id/zpool_id index d5f2e9d0c..c65b1b5f4 100755 --- a/cmd/zpool_id/zpool_id +++ b/cmd/zpool_id/zpool_id @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh CONFIG="${CONFIG:-/etc/zfs/zdev.conf}" AWK="${AWK:-/usr/bin/awk}"