Remove workaround for masked redis-server.service

This is revert of 74022b48dd and its
follow up commit 46b503f7b0. The logic
was added for Debian but we no longer have Debian jobs.
Change-Id: I7633fbfbf3424f093dac5811e9c2fb8dcdf3167b
This commit is contained in:
Takashi Kajinami
2022年02月05日 23:28:00 +09:00
parent 7fa5072e28
commit d8c452f91a

View File

@@ -23,15 +23,6 @@ class openstack_integration::redis {
}
}
#duetoissuesinOpenStackCIwiththeredispackage,weneedtodisable
#theserviceenableflag.Theservicestillstartsbutthemanagementof
#theservicewithsystemderrors.
if($::operatingsystem=='Debian'){
$service_enable = false
}else{
$service_enable = true
}
#NOTE(tobias-urdin):Manuallymanageredisuntilarioch/puppet-redissupport
#redis4.xsincethatisusedbyUbuntuBionic.
package{ 'redis':
@@ -51,7 +42,7 @@ class openstack_integration::redis {
service{ 'redis':
ensure => 'running',
name => $redis_service_name,
enable => $service_enable,
enable => true,
require => File_line['redis_config'],
}
}
Reference in New Issue
openstack/puppet-openstack-integration
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.

The note is not visible to the blocked user.