From b09f3c014883e574236cee9921b52b5421177149 Mon Sep 17 00:00:00 2001 From: Ricky Grassmuck Date: Wed, 9 Mar 2022 07:13:45 -0600 Subject: [PATCH] Set service type to notify in systemd unit. (#14385) Updates the systemd service shipped with Linux packages to `Type=notify` --- .release/linux/package/usr/lib/systemd/system/vault.service | 1 + changelog/14385.txt | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 changelog/14385.txt diff --git a/.release/linux/package/usr/lib/systemd/system/vault.service b/.release/linux/package/usr/lib/systemd/system/vault.service index a91aba8cde370..45c896b2c9a58 100644 --- a/.release/linux/package/usr/lib/systemd/system/vault.service +++ b/.release/linux/package/usr/lib/systemd/system/vault.service @@ -8,6 +8,7 @@ StartLimitIntervalSec=60 StartLimitBurst=3 [Service] +Type=notify EnvironmentFile=/etc/vault.d/vault.env User=vault Group=vault diff --git a/changelog/14385.txt b/changelog/14385.txt new file mode 100644 index 0000000000000..101fa116065c7 --- /dev/null +++ b/changelog/14385.txt @@ -0,0 +1,3 @@ +```release-note:improvement +core: Systemd unit file included with the Linux packages now sets the service type to notify. +``` \ No newline at end of file