Files
openstack-ansible-openstack…/handlers/main.yml
Jean-Philippe Evrard 133ca093f9 Fix usage of "|" for tests
With the more recent versions of ansible, we should now use
"is" instead of the "|" sign for the tests.

This should fix it.

Change-Id: I3b8c727e503577fc911f4be4f9a296739d71806f
2018-07-12 17:03:43 +02:00

31 lines
870 B
YAML

---
# Copyright 2014, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Restart sysstat
service:
name: "sysstat"
state: "restarted"
enabled: "yes"
- name: Restart systemd-journald
service:
name: systemd-journald
state: restarted
enabled: yes
register: _restart
until: _restart is success
retries: 5
delay: 2