19 lines
498 B
YAML
19 lines
498 B
YAML
---
|
|
|
|
# SSH 접속 시 Banner 설정
|
|
- include: debian_setting_banner.yml
|
|
when: ansible_facts.os_family == 'Debian'
|
|
|
|
# root 사용자를 사용한 ssh 접속 비활성화
|
|
- include: all_setting_root_ssh.yml
|
|
|
|
# 패스워드 정책 설정
|
|
- include: debian_setting_password_rule.yml
|
|
when: ansible_facts.os_family == 'Debian'
|
|
|
|
# 일부 파일 권한 설정
|
|
- include: all_setting_mode_change.yml
|
|
|
|
# /dev 경로의 불필요 디바이스 검색 및 제거
|
|
- include: all_setting_device_organize.yml
|