Files
zulip/puppet/kandra/files/needrestart/zulip.conf
Alex Vandiver 49422c05c8 kandra: Add teleport services to "needsrestart" skip list.
These are often how one is connected to the node, and restarting them
would drop the connection one us actively using.
2024-04-19 09:55:17 -07:00

14 lines
338 B
Perl

# -*-cperl-*-
my @ignore = (
qr/^memcached\.service$/,
qr/^nginx\.service$/,
qr/^postgresql(@[0-9a-zA-Z_-]+)?.service$/,
qr/^epmd\.service$/,
qr/^rabbitmq-server\.service$/,
qr/^redis-server\.service$/,
qr/^supervisor\.service$/,
qr/^teleport(\w*)\.service$/,
);
$nrconf{override_rc}{$_} = 0 for @ignore;