Skip to content

Commit 2d11a0f

Browse files
authored
Merge pull request #128 from artem-sidorenko/opensuseleap
Support for OpenSuse Leap, new enterprise distro of SUSE
2 parents 6c33405 + f8b673a commit 2d11a0f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,7 @@ matrix:
3838
bundler_args: "--without guard tools"
3939
script: bundle exec rake $SUITE
4040
env: SUITE=test:integration OS='fedora'
41+
- rvm: 2.3.1
42+
bundler_args: "--without guard tools"
43+
script: bundle exec rake $SUITE
44+
env: SUITE=test:integration OS='opensuse'

attributes/default.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
2424
default['sshclient']['package'] = 'openssh-clients'
2525
when 'debian', 'ubuntu'
2626
default['sshclient']['package'] = 'openssh-client'
27-
when 'arch', 'suse', 'opensuse'
27+
when 'arch', 'suse', 'opensuse', 'opensuseleap'
2828
default['sshclient']['package'] = 'openssh'
2929
else
3030
default['sshclient']['package'] = 'openssh-client'
3131
end
3232

3333
# Define the server package name
3434
case node['platform']
35-
when 'suse', 'opensuse'
35+
when 'suse', 'opensuse', 'opensuseleap'
3636
default['sshserver']['package'] = 'openssh'
3737
else
3838
default['sshserver']['package'] = 'openssh-server'

0 commit comments

Comments
 (0)