--- # 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. # "login_defs" will search for and load any operating system variable file - name: Install shadow-utils package: name: shadow-utils state: present - name: Change login defs file lineinfile: line: "{{ item.0 }} {{ item.1 }}" regexp: "^[#]*{{ item.0 }}.*" dest: /etc/login.defs owner: root group: root mode: 0644 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 }}"