mirror of
https://github.com/zulip/zulip.git
synced 2025-11-17 12:21:58 +00:00
These are often how one is connected to the node, and restarting them would drop the connection one us actively using.
14 lines
338 B
Perl
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;
|