79464cf00f
A few scripts were added without set -o pipefail since the original change to add that everywhere. This will get the dib-lint check passing again. Change-Id: I96bef45cc10ff9bbcf2c4f1b796b8cd188e10485
8 lines
137 B
Bash
Executable File
8 lines
137 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# For Debian map-services is currently a noop
|
|
# We pass through the service name directly
|
|
echo "$@"
|