Remove workaround for masked redis-server.service
This is revert of74022b48ddand its follow up commit46b503f7b0. The logic was added for Debian but we no longer have Debian jobs. Change-Id: I7633fbfbf3424f093dac5811e9c2fb8dcdf3167b
This commit is contained in:
1 changed files with 1 additions and 10 deletions
@@ -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
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.