if systemctl show fails, use /usr/lib/systemd/system/ path

Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
This commit is contained in:
Thomas Sjögren 2015-12-12 16:57:40 +01:00
parent 606f70f83f
commit e19f997b3f

View file

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