scylladb / scylla-ansible-roles

Ansible roles for deploying and managing Scylla, Scylla-Manager and Scylla-Monitoring
44 stars 38 forks source link

scylla-node: fix scylla_setup call #341

Closed vladzcloudius closed 9 months ago

vladzcloudius commented 9 months ago

Add missing --no-cpuscaling-setup and --no-fstrim-setup (we explicitly setup these later in the play) and make sure to always call scylla_setup - with the parameters we call it it should be safe to call it even when scylla server is already running.

We also don't need to give '--nic {{ scylla_nic }} --setup-nic-and-disks' parameters because they are canceled by --no-sysconfig-setup at the end of the command line and because we are going to call scylla_sysconfig_setup later in the play explicitly.

Fixes #339