check /etc/systemd/system/ before systemctl, /usr/lib/systemd/ fallback

Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
This commit is contained in:
Thomas Sjögren 2015-12-14 20:27:10 +01:00
parent e19f997b3f
commit 4e414f51ef

View file

@ -89,8 +89,9 @@ get_docker_effective_command_line_args() {
get_systemd_service_file(){ get_systemd_service_file(){
SERVICE="$1" SERVICE="$1"
systemctl show -p FragmentPath "$SERVICE" 2> /dev/null 1>&2 if [ -f "/etc/systemd/system/$SERVICE" ]; then
if [ $? -eq 0 ]; then echo "/etc/systemd/system/$SERVICE"
elif systemctl show -p FragmentPath "$SERVICE" 2> /dev/null 1>&2; then
systemctl show -p FragmentPath "$SERVICE" | sed 's/.*=//' systemctl show -p FragmentPath "$SERVICE" | sed 's/.*=//'
else else
echo "/usr/lib/systemd/system/$SERVICE" echo "/usr/lib/systemd/system/$SERVICE"