Skip to content

Commit

Permalink
gce: drop rsyslog
Browse files Browse the repository at this point in the history
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
  • Loading branch information
syuu1228 authored and yaronkaikov committed Aug 14, 2023
1 parent 23eefa4 commit a63350d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packer/scylla_install_image
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit a63350d

Please sign in to comment.