Hide Forgot
Description of problem: flows: - user wants to work without SSL - user doesn't want to install host current state: - login to DB, change values manually psql -U postgres engine -c "update vdc_options set option_value='false' where option_name='UseSecureConnectionWithServers' and version='general' ; " psql -U postgres engine -c "update vdc_options set option_value='false' where option_name='SSLEnabled' and version='general' ; " psql -U postgres engine -c "update vdc_options set option_value='false' where option_name='installVds' and version='general' ; " - we could simplify the process by adding this functionality to engine-config
I agree it's a nice RFE- configuration groups, similar to what yum supports for installation. The implementation should be simple- add a groups property for each key, along with a matching group value; SSLEnabled.description="SPICE SSL Enabled" SSLEnabled.validValues=true,false +SSLEnabled.groups=NoSSL:false,DoSSL:true The code should be able to get a group name and set all relevant values. So the user can do: engine-config -S DoSSL in order to set all relevant values (-S | --group-set).
Closing old bugs. If this issue is still relevant/important in current version, please re-open the bug.