puppet: Prevent unattended upgrades of erlang-base.

When upgraded, the `erlang-base` package automatically stops all
services which depend on the Erlang runtime; for Zulip, this is the
`rabbitmq-server` service.  This results in an unexpected outage of
Zulip.

Block unattended upgrades of the `erlang-base` package.
This commit is contained in:
Alex Vandiver 2023-05-16 20:29:34 +00:00 committed by Tim Abbott
parent 007a51f277
commit 8d8b5935ac
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@ Unattended-Upgrade::Package-Blacklist {
"nginx-full$";
"postgresql-\d+$";
"rabbitmq-server$";
"erlang-base$";
"redis-server$";
"supervisor$";
};