We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c56839 commit e35436cCopy full SHA for e35436c
contrib/packaging/bootloader-update.service
@@ -6,7 +6,10 @@ Documentation=https://github.com/coreos/bootupd
6
Type=oneshot
7
ExecStart=/usr/bin/bootupctl update
8
RemainAfterExit=yes
9
+# Keep this stuff in sync with SYSTEMD_ARGS_BOOTUPD in general
10
+ProtectHome=yes
11
MountFlags=slave
12
+KillMode=mixed
13
14
[Install]
15
WantedBy=multi-user.target
src/cli/bootupctl.rs
@@ -11,6 +11,7 @@ static SYSTEMD_ARGS_BOOTUPD: &[&str] = &[
"bootupd",
"--property",
"PrivateNetwork=yes",
+ // Keep this stuff in sync with bootloader-update.service
16
"ProtectHome=yes",
17
// While only our main process during update catches SIGTERM, we don't
0 commit comments