diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-20 17:12:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-20 17:12:42 +0000 |
commit | cbfc4abda5f50267b8b2a40de90ee57424381ec6 (patch) | |
tree | 5e335b17d0e8c9eaadeb403d5ea91822a5867933 /share/systemd | |
parent | Initial commit. (diff) | |
download | open-infrastructure-compute-tools-cbfc4abda5f50267b8b2a40de90ee57424381ec6.tar.xz open-infrastructure-compute-tools-cbfc4abda5f50267b8b2a40de90ee57424381ec6.zip |
Adding upstream version 20221223.upstream/20221223
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | share/systemd/container-auto.service | 18 | ||||
-rw-r--r-- | share/systemd/container@.service | 16 |
2 files changed, 34 insertions, 0 deletions
diff --git a/share/systemd/container-auto.service b/share/systemd/container-auto.service new file mode 100644 index 0000000..50f8ac6 --- /dev/null +++ b/share/systemd/container-auto.service @@ -0,0 +1,18 @@ +# Open Infrastructure: compute-tools + +[Unit] +Description=compute-tools automatic start and stop +Documentation=man:container-auto +After=network.target + +[Service] +Type=oneshot +RemainAfterExit=yes +ExecStart=/usr/bin/container auto --start +ExecStop=/usr/bin/container auto --stop +Delegate=yes +StandardOutput=journal +StandardError=journal + +[Install] +WantedBy=multi-user.target diff --git a/share/systemd/container@.service b/share/systemd/container@.service new file mode 100644 index 0000000..4bd7be5 --- /dev/null +++ b/share/systemd/container@.service @@ -0,0 +1,16 @@ +# Open Infrastructure: compute-tools + +[Unit] +Description="Container: %i" +Documentation=man:compute-tools + +[Service] +Type=simple +Environment=TERM=xterm-256color +ExecStart=/usr/bin/container start --name %i --nspawn --no-notification +ExecStartPost=/usr/bin/container start --name %i --start --no-notification +ExecStopPost=/usr/bin/container stop -n %i --clean --no-notification +KillMode=mixed + +[Install] +WantedBy=multi-user.target |