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:
parent
928e6f237b
commit
3a7800ec99
6
elements/debian/bin/map-services
Executable file
6
elements/debian/bin/map-services
Executable 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 "$@"
|
6
elements/ubuntu/bin/map-services
Executable file
6
elements/ubuntu/bin/map-services
Executable 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 "$@"
|
Loading…
Reference in New Issue
Block a user