11 lines
313 B
Puppet
11 lines
313 B
Puppet
# Class for Ubuntu 20.04
|
|
class sunetdrive::ubuntu_2004() {
|
|
if $facts['os']['name'] == 'Ubuntu' and $facts['os']['distro']['release']['full'] == '20.04' {
|
|
# Hide deprecation warnings for Ubuntu 2004
|
|
file_line {'env_rubyopt':
|
|
path => '/etc/environment',
|
|
line => 'RUBYOPT=\'-W0\'',
|
|
}
|
|
}
|
|
}
|