mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 02:21:44 +03:00
4a9b1dd4ad
And remove machine-id-commit as separate binary. There's really no point in keeping this separate, as the sources are pretty much identical, and have pretty identical interfaces. Let's unify this in one binary. Given that machine-id-commit was a private binary of systemd (shipped in /usr/lib/) removing the tool is not an API break. While we are at it, improve the documentation of the command substantially.
23 lines
701 B
SYSTEMD
23 lines
701 B
SYSTEMD
# 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=Commit a transient machine-id on disk
|
|
Documentation=man:systemd-machine-id-commit.service(8)
|
|
DefaultDependencies=no
|
|
Conflicts=shutdown.target
|
|
Before=sysinit.target shutdown.target
|
|
After=local-fs.target
|
|
ConditionPathIsReadWrite=/etc
|
|
ConditionPathIsMountPoint=/etc/machine-id
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
ExecStart=@rootbindir@/systemd-machine-id-setup --commit
|
|
TimeoutSec=30s
|