diff options
Diffstat (limited to 'units')
-rw-r--r-- | units/.gitignore | 1 | ||||
-rw-r--r-- | units/emergency.service | 2 | ||||
-rw-r--r-- | units/fedora/single.service | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/units/.gitignore b/units/.gitignore index ea85dc081e..5de1b5c7c4 100644 --- a/units/.gitignore +++ b/units/.gitignore @@ -6,3 +6,4 @@ graphical.target multi-user.target getty@.service remote-fs.target +test-env-replace diff --git a/units/emergency.service b/units/emergency.service index dd4a0703e2..7a1f81a468 100644 --- a/units/emergency.service +++ b/units/emergency.service @@ -22,4 +22,4 @@ KillMode=process-group # Bash ignores SIGTERM, so we send SIGHUP first, to ensure that bash # terminates cleanly. -ExecStop=-/bin/kill -HUP $(MAINPID) +ExecStop=-/bin/kill -HUP ${MAINPID} diff --git a/units/fedora/single.service b/units/fedora/single.service index f4af539f85..93a70cf4b0 100644 --- a/units/fedora/single.service +++ b/units/fedora/single.service @@ -25,4 +25,4 @@ KillMode=process-group # Bash ignores SIGTERM, so we send SIGHUP first, to ensure that bash # terminates cleanly. -ExecStop=-/bin/kill -HUP $(MAINPID) +ExecStop=-/bin/kill -HUP ${MAINPID} |