From a63350da21eddc2577604e182e73b7c54c59affb Mon Sep 17 00:00:00 2001 From: Takuya ASADA Date: Mon, 14 Aug 2023 18:33:52 +0900 Subject: [PATCH] gce: drop rsyslog On AWS and Azure Ubuntu Minimal image we don't have rsyslog, it just uses persistent journal log, but only GCE image has rsyslog. We want to align image configuration between clouds, let's drop rsyslog from GCE image. Related scylladb/scylla-enterprise#3080 --- packer/scylla_install_image | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packer/scylla_install_image b/packer/scylla_install_image index 0d1cb779..a93d39e8 100755 --- a/packer/scylla_install_image +++ b/packer/scylla_install_image @@ -125,6 +125,8 @@ if __name__ == '__main__': kernel_opt = '' grub_variable = 'GRUB_CMDLINE_LINUX_DEFAULT' elif args.target_cloud == 'gce': + # align with other clouds image + run('apt-get purge -y rsyslog', shell=True, check=True) sysconfig_opt = '--disable-writeback-cache' kernel_opt = '' grub_variable = 'GRUB_CMDLINE_LINUX_DEFAULT'