Skip to content

Commit

Permalink
Add support for Ubuntu 14-22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Friderici authored and ghoneycutt committed Aug 12, 2023
1 parent d01536c commit 7156e38
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 1 deletion.
5 changes: 5 additions & 0 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ This module has been tested to work on the following systems:
* Suse 15
* OpenSuse 13.1
* Ubuntu 12.04 LTS
* Ubuntu 14.04 LTS
* Ubuntu 16.04 LTS
* Ubuntu 18.04 LTS
* Ubuntu 20.04 LTS
* Ubuntu 22.04 LTS

Compatibility with Dell Authentication Services
-----------------------------------------------
Expand Down
5 changes: 5 additions & 0 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@
# * Suse 15
# * OpenSuse 13.1
# * Ubuntu 12.04 LTS
# * Ubuntu 14.04 LTS
# * Ubuntu 16.04 LTS
# * Ubuntu 18.04 LTS
# * Ubuntu 20.04 LTS
# * Ubuntu 22.04 LTS
#
# Compatibility with Dell Authentication Services
# -----------------------------------------------
Expand Down
7 changes: 6 additions & 1 deletion metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,12 @@
{
"operatingsystem": "Ubuntu",
"operatingsystemrelease": [
"12.04"
"12.04",
"14.04",
"16.04",
"18.04",
"20.04",
"22.04"
]
}
],
Expand Down
55 changes: 55 additions & 0 deletions spec/classes/init_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,61 @@
enable_opt_auto_propagate: true,
},
),
'ubuntu14' => defaults.merge(
{
osfamily: 'Debian',
operatingsystemmajrelease: '14',
server_user: nil,
service_provider: nil,
enable_db_services: true,
enable_db_netgroup: false,
enable_opt_auto_propagate: true,
},
),
'ubuntu16' => defaults.merge(
{
osfamily: 'Debian',
operatingsystemmajrelease: '16',
server_user: nil,
service_provider: nil,
enable_db_services: true,
enable_db_netgroup: false,
enable_opt_auto_propagate: true,
},
),
'ubuntu18' => defaults.merge(
{
osfamily: 'Debian',
operatingsystemmajrelease: '18',
server_user: nil,
service_provider: nil,
enable_db_services: true,
enable_db_netgroup: false,
enable_opt_auto_propagate: true,
},
),
'ubuntu20' => defaults.merge(
{
osfamily: 'Debian',
operatingsystemmajrelease: '20',
server_user: nil,
service_provider: nil,
enable_db_services: true,
enable_db_netgroup: false,
enable_opt_auto_propagate: true,
},
),
'ubuntu22' => defaults.merge(
{
osfamily: 'Debian',
operatingsystemmajrelease: '22',
server_user: nil,
service_provider: nil,
enable_db_services: true,
enable_db_netgroup: false,
enable_opt_auto_propagate: true,
},
),
'solaris10' => defaults.merge(
{
kernel: 'SunOS',
Expand Down

0 comments on commit 7156e38

Please sign in to comment.