From 08dd8a41e6dd91d78feb29abcfebdab24a2931d1 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Mon, 25 Mar 2024 19:16:32 +0000 Subject: [PATCH] puppet: Fix arrow alignment. --- puppet/zulip/manifests/nginx.pp | 2 +- puppet/zulip/manifests/postgresql_base.pp | 4 ++-- puppet/zulip/manifests/profile/rabbitmq.pp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/puppet/zulip/manifests/nginx.pp b/puppet/zulip/manifests/nginx.pp index 53223ee808..48d4d56a46 100644 --- a/puppet/zulip/manifests/nginx.pp +++ b/puppet/zulip/manifests/nginx.pp @@ -107,6 +107,6 @@ class zulip::nginx { } service { 'nginx': - ensure => running, + ensure => running, } } diff --git a/puppet/zulip/manifests/postgresql_base.pp b/puppet/zulip/manifests/postgresql_base.pp index 501e8cceac..14fb41411d 100644 --- a/puppet/zulip/manifests/postgresql_base.pp +++ b/puppet/zulip/manifests/postgresql_base.pp @@ -79,7 +79,7 @@ class zulip::postgresql_base { # Removed 2020-12 in version 4.0; these lines can be removed when # we drop support for upgrading from Zulip 3 or older. package{"${postgresql}-pgroonga": - ensure => purged, + ensure => purged, } package{"${postgresql}-pgdg-pgroonga": @@ -106,7 +106,7 @@ class zulip::postgresql_base { include zulip::postgresql_backups } else { file { '/etc/cron.d/pg_backup_and_purge': - ensure => absent, + ensure => absent, } } } diff --git a/puppet/zulip/manifests/profile/rabbitmq.pp b/puppet/zulip/manifests/profile/rabbitmq.pp index 72e5f782f9..4a31cc24d1 100644 --- a/puppet/zulip/manifests/profile/rabbitmq.pp +++ b/puppet/zulip/manifests/profile/rabbitmq.pp @@ -72,7 +72,7 @@ class zulip::profile::rabbitmq { ], } package { $rabbitmq_packages: - ensure => installed, + ensure => installed, } # epmd doesn't have an init script, so we just check if it is # running, and if it isn't, start it. Even in case of a race, this