diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-11-18 05:22:25 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-11-18 05:22:25 +0100 |
commit | 8cf3a8a982661c0bb9b04ff27f6d486b38b1b35e (patch) | |
tree | 6fd5c91964523af264413a4478b09f7845878c67 /units | |
parent | 10aa703482a20489c061d76acb040b54fca89c6b (diff) |
units: enable console ask-password agent by default
Diffstat (limited to 'units')
-rw-r--r-- | units/.gitignore | 1 | ||||
-rw-r--r-- | units/fedora/plymouth-start.service | 1 | ||||
-rw-r--r-- | units/systemd-ask-password-console.path | 15 | ||||
-rw-r--r-- | units/systemd-ask-password-console.service.in | 15 | ||||
-rw-r--r-- | units/systemd-ask-password-plymouth.path | 2 | ||||
-rw-r--r-- | units/systemd-ask-password-plymouth.service.in | 2 | ||||
-rw-r--r-- | units/systemd-ask-password-wall.service.in | 4 |
7 files changed, 37 insertions, 3 deletions
diff --git a/units/.gitignore b/units/.gitignore index e90f6b3d1d..419838b677 100644 --- a/units/.gitignore +++ b/units/.gitignore @@ -1,3 +1,4 @@ +systemd-ask-password-console.service rescue.service systemd-ask-password-plymouth.service systemd-ask-password-wall.service diff --git a/units/fedora/plymouth-start.service b/units/fedora/plymouth-start.service index 8c0ba8b9e7..61cb82cde4 100644 --- a/units/fedora/plymouth-start.service +++ b/units/fedora/plymouth-start.service @@ -8,6 +8,7 @@ [Unit] Description=Show Plymouth Boot Screen DefaultDependencies=no +Wants=systemd-ask-password-plymouth.path After=systemd-vconsole-setup.service udev-settle.service Before=systemd-ask-password-plymouth.service diff --git a/units/systemd-ask-password-console.path b/units/systemd-ask-password-console.path new file mode 100644 index 0000000000..9d3d80d5a9 --- /dev/null +++ b/units/systemd-ask-password-console.path @@ -0,0 +1,15 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +[Unit] +Description=Dispatch Password Requests to Console Directory Watch +DefaultDependencies=no +Conflicts=shutdown.target +Before=basic.target shutdown.target + +[Path] +DirectoryNotEmpty=/dev/.systemd/ask-password diff --git a/units/systemd-ask-password-console.service.in b/units/systemd-ask-password-console.service.in new file mode 100644 index 0000000000..a2ac09cd6a --- /dev/null +++ b/units/systemd-ask-password-console.service.in @@ -0,0 +1,15 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +[Unit] +Description=Dispatch Password Requests to Console +DefaultDependencies=no +Conflicts=shutdown.target +Before=shutdown.target + +[Service] +ExecStart=@rootbindir@/systemd-tty-ask-password-agent --watch --console diff --git a/units/systemd-ask-password-plymouth.path b/units/systemd-ask-password-plymouth.path index 8e5e51290d..1d09223f7a 100644 --- a/units/systemd-ask-password-plymouth.path +++ b/units/systemd-ask-password-plymouth.path @@ -8,7 +8,7 @@ [Unit] Description=Forward Password Requests to Plymouth Directory Watch DefaultDependencies=no -Conflicts=shutdown.target +Conflicts=shutdown.target systemd-ask-password-console.path systemd-ask-password-console.service Before=basic.target shutdown.target [Path] diff --git a/units/systemd-ask-password-plymouth.service.in b/units/systemd-ask-password-plymouth.service.in index 8ed22ac651..a7cd451aed 100644 --- a/units/systemd-ask-password-plymouth.service.in +++ b/units/systemd-ask-password-plymouth.service.in @@ -8,7 +8,7 @@ [Unit] Description=Forward Password Requests to Plymouth DefaultDependencies=no -Conflicts=shutdown.target +Conflicts=shutdown.target systemd-ask-password-console.path systemd-ask-password-console.service Before=shutdown.target [Service] diff --git a/units/systemd-ask-password-wall.service.in b/units/systemd-ask-password-wall.service.in index e810fe3097..71ec1d68f8 100644 --- a/units/systemd-ask-password-wall.service.in +++ b/units/systemd-ask-password-wall.service.in @@ -7,7 +7,9 @@ [Unit] Description=Forward Password Requests to Wall -After=getty.target +After=systemd-user-sessions.service [Service] +ExecStartPre=-@rootbindir@/systemctl stop systemd-ask-password-console.path systemd-ask-password-console.service +ExecStartPre=-@rootbindir@/systemctl stop systemd-ask-password-plymouth.path systemd-ask-password-plymouth.service ExecStart=@rootbindir@/systemd-tty-ask-password-agent --wall |