File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010### Changed
1111
12+ - Update SUSE usr merge workaround to match SLES 16 changes
13+
1214### Removed
1315
1416- Support for 32-bit server packages
Original file line number Diff line number Diff line change 99 - name : Check /usr/etc/pam.d/sshd
1010 stat :
1111 path : /usr/etc/pam.d/sshd
12- register : usr_etc_pam_sshd
12+ register : locate_pam_sshd
1313
14- - name : Copy /usr/etc/pam.d/sshd to /etc/pam.d/sshd
14+ - name : Check /usr/lib/pam.d/sshd
15+ stat :
16+ path : /usr/lib/pam.d/sshd
17+ register : locate_pam_sshd
18+ when : locate_pam_sshd.stat.exists is defined
19+ and not locate_pam_sshd.stat.exists
20+
21+ - name : Copy located pam.d/sshd to /etc/pam.d/sshd
1522 copy :
16- src : /usr/etc/pam.d/sshd
23+ src : " {{ locate_pam_sshd.stat.path }} "
1724 dest : /etc/pam.d/sshd
1825 owner : root
1926 group : root
2027 mode : ' 0644'
2128 remote_src : true
22- when : usr_etc_pam_sshd.stat.exists == true
29+ when : locate_pam_sshd.stat.exists is defined
30+ and locate_pam_sshd.stat.exists == true
2331
2432 when : etc_pam_sshd.stat.exists == false
You can’t perform that action at this time.
0 commit comments