2014-05-02 13:30:29 +00:00
|
|
|
#!/bin/bash
|
2014-09-04 04:56:29 +00:00
|
|
|
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
|
|
set -x
|
|
|
|
fi
|
2014-05-02 13:30:29 +00:00
|
|
|
set -eu
|
2014-05-23 20:56:18 +00:00
|
|
|
set -o pipefail
|
2014-05-02 13:30:29 +00:00
|
|
|
|
|
|
|
# For Ubuntu map-services is currently a noop
|
|
|
|
# We pass through the service name directly
|
|
|
|
echo "$@"
|
2014-10-22 15:17:56 +00:00
|
|
|
>&2 echo "WARNING: map-services has been deprecated. Please use svc-map."
|