This repository was archived by the owner on Dec 26, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +7
-4
lines changed Expand file tree Collapse file tree 6 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ provisioner:
2020 http_proxy : <%= ENV['http_proxy'] || nil %>
2121 https_proxy : <%= ENV['https_proxy'] || nil %>
2222
23- transport :
24- max_ssh_sessions : 5
23+ # transport:
24+ # max_ssh_sessions: 5
2525
2626platforms :
2727- name : ubuntu-16.04
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ group :integration do
1111 gem 'kitchen-sync'
1212 gem 'kitchen-transport-rsync'
1313 gem 'kitchen-docker'
14+ gem 'inspec' , '~> 3'
1415end
1516
1617group :tools do
Original file line number Diff line number Diff line change 7373
7474- name : include selinux specific tasks
7575 include_tasks : selinux.yml
76- when : ansible_selinux and ansible_selinux.status != "disabled "
76+ when : ansible_selinux and ansible_selinux.status == "enabled "
Original file line number Diff line number Diff line change 5757 - name : install selinux policy
5858 command : semodule -i {{ ssh_custom_selinux_dir }}/ssh_password.pp
5959
60- when : not ssh_use_pam and ansible_selinux != 'Disabled' and ssh_password_module.stdout.find('ssh_password') != 0
60+ when : not ssh_use_pam and ssh_password_module.stdout.find('ssh_password') != 0
6161
6262# The following tasks only get executed when selinux is installed, UsePam is 'yes' and the ssh_password module is installed.
6363# See http://danwalsh.livejournal.com/12333.html for more info
Original file line number Diff line number Diff line change 66 with_items :
77 - " openssh-clients"
88 - " openssh-server"
9+ - " libselinux-python"
910 ignore_errors : true
1011 - apt : name="{{item}}" state=present update_cache=true
1112 with_items :
Original file line number Diff line number Diff line change 66 with_items :
77 - " openssh-clients"
88 - " openssh-server"
9+ - " libselinux-python"
910 ignore_errors : true
1011 - apt : name="{{item}}" state=present update_cache=true
1112 with_items :
You can’t perform that action at this time.
0 commit comments