--- # Copyright 2019 Red Hat, Inc. # All Rights Reserved. # # 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. - hosts: all tasks: - name: Check the file exits stat: path: /etc/login.defs register: file - name: Verify assert: that: - file.stat.exists - file.stat.gr_name == 'root' - file.stat.pw_name == 'root' - file.stat.mode == '0644' fail_msg: "File login.defs doesn't exist or has wrong attributes!" - name: Check the file contains all required values command: grep "^{{ item.0 }} {{ item.1 }}$" /tmp/login.defs loop: - - PASS_MAX_DAYS - "{{ tripleo_login_defs_password_max_days }}" - - PASS_MIN_DAYS - "{{ tripleo_login_defs_password_min_days }}" - - PASS_MIN_LEN - "{{ tripleo_login_defs_password_min_len }}" - - PASS_WARN_AGE - "{{ tripleo_login_defs_password_warn_age }}" - - FAIL_DELAY - "{{ tripleo_login_defs_fail_delay }}"