Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: '3.8'
python-version: '3.9.21'
- run: python3 -m pip install pylint
- run: python3 -m pip install netifaces
- run: pylint -d invalid-name,E0611 files/common/usr/bin/delphix-startup-screen
Expand All @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: '3.8'
python-version: '3.9.21'
- run: python3 -m pip install yapf
- run: yapf --diff --style google files/common/usr/bin/delphix-startup-screen
check-mypy:
Expand All @@ -42,6 +42,6 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: '3.8'
python-version: '3.9.21'
- run: python3 -m pip install mypy
- run: mypy --ignore-missing-imports files/common/usr/bin/delphix-startup-screen
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,41 @@
regexp: '^#?[\s]*(auth[\s]+required[\s]+pam_wheel\.so.*)$'
replace: '\1'

#
#
# Lock out the user after an unsuccessful consecutive login attempts.
#
- lineinfile:
path: /etc/pam.d/common-auth
line: "{{ item }}"
insertbefore: '^auth\s+\[success=1\s+default=ignore\]\s+pam_unix\.so\s+nullok\s+try_first_pass'
with_items:
- 'auth required pam_tally2.so audit deny=5 unlock_time=60'

#
#
# Configuration to enforce account lockout policies.
#
- lineinfile:
path: /etc/pam.d/common-account
line: "{{ item }}"
insertafter: EOF
with_items:
- 'account required pam_tally2.so'


#
#
# Configuration to remember user password history.
#
- lineinfile:
path: /etc/pam.d/common-password
line: "{{ item }}"
insertbefore: '^password\s+\[success=1 default=ignore\]\s+pam_unix\.so\s+obscure\s+sha512'
with_items:
- 'password required pam_pwhistory.so remember=5'


#
# Enable SNMP client tools to load MIBs by default.
#
Expand Down