2020-11-09 13:23:58 +09:00
|
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
2017-11-18 17:35:03 +01:00
|
|
|
#
|
2014-06-13 13:10:30 +02:00
|
|
|
# This file is part of systemd.
|
|
|
|
|
#
|
|
|
|
|
# systemd is free software; you can redistribute it and/or modify it
|
|
|
|
|
# under the terms of the GNU Lesser General Public License as published by
|
|
|
|
|
# the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
[Unit]
|
|
|
|
|
Description=Create System Users
|
|
|
|
|
Documentation=man:sysusers.d(5) man:systemd-sysusers.service(8)
|
2022-09-14 12:39:10 +01:00
|
|
|
|
2014-06-13 13:10:30 +02:00
|
|
|
DefaultDependencies=no
|
2014-08-26 21:17:22 +02:00
|
|
|
After=systemd-remount-fs.service
|
2022-09-14 12:39:10 +01:00
|
|
|
Before=sysinit.target systemd-update-done.service
|
|
|
|
|
Conflicts=shutdown.target
|
|
|
|
|
Before=shutdown.target
|
|
|
|
|
|
2022-07-13 11:06:04 +02:00
|
|
|
ConditionNeedsUpdate=|/etc
|
|
|
|
|
ConditionCredential=|sysusers.extra
|
2014-06-13 13:10:30 +02:00
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
|
Type=oneshot
|
|
|
|
|
RemainAfterExit=yes
|
2019-12-18 09:14:57 +01:00
|
|
|
ExecStart=systemd-sysusers
|
2015-04-16 21:41:18 -04:00
|
|
|
TimeoutSec=90s
|
2021-03-11 10:34:20 +01:00
|
|
|
|
|
|
|
|
# Optionally, pick up a root password and shell for the root user from a
|
|
|
|
|
# credential passed to the service manager. This is useful for importing this
|
|
|
|
|
# data from nspawn's --set-credential= switch.
|
2021-05-02 16:05:48 +01:00
|
|
|
LoadCredential=passwd.hashed-password.root
|
|
|
|
|
LoadCredential=passwd.plaintext-password.root
|
|
|
|
|
LoadCredential=passwd.shell.root
|
2022-07-13 11:06:04 +02:00
|
|
|
|
|
|
|
|
# Also, allow configuring extra sysusers lines via a credential
|
|
|
|
|
LoadCredential=sysusers.extra
|