misc: Use /usr/bin/env for a more generic shebang

Use path based SHELL in Makefiles. It was suggested that this is a
better solution for make for cases when there is no /usr/bin/env.

See: https://github.com/purpleidea/mgmt/pull/694#discussion_r1015596204
This commit is contained in:
Karpfen
2025-03-22 14:53:21 -04:00
committed by James Shubin
parent f2d9219218
commit 7e8ced534f
92 changed files with 92 additions and 92 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
exit 0 # XXX: disable for now

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
exit 0 # XXX: disable for now

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
# FIXME: test for #124 --- Disabled for now

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
exit 0 # XXX: disable for now

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
# vim: noet:ts=8:sts=8:sw=8
exit 0 # XXX: disable for now

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
# vim: noet:ts=8:sts=8:sw=8
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -xe
#!/usr/bin/env -S bash -xe
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
# NOTES:
# * this is a simple shell based `mgmt` test case
# * it is recommended that you run mgmt wrapped in the timeout command

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"

View File

@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env -S bash -e
. "$(dirname "$0")/../util.sh"