Add map-services for debian distros.

DIB's map-services is currently used in TIE's os-svc-config
binaries to support service name lookups. Many of the systemd
specific functions require bin/map-services to exist.

This change adds bin/map-services files that are noops
to both the debian and ubuntu elements so that as those
distros move towards using systemd they can make use
of the functions we already have in place.

Change-Id: If8d61f3858b11de86c3292e840d033e5e3cecedb
This commit is contained in:
Dan Prince 2014-05-02 09:30:29 -04:00
parent 928e6f237b
commit 3a7800ec99
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#!/bin/bash
set -eu
# For Debian map-services is currently a noop
# We pass through the service name directly
echo "$@"

View File

@ -0,0 +1,6 @@
#!/bin/bash
set -eu
# For Ubuntu map-services is currently a noop
# We pass through the service name directly
echo "$@"