Puppet Class: profile::sre::nftables_compat_check
- Defined in:
- modules/profile/manifests/sre/nftables_compat_check.pp
Summary
Provides a script to assess whether a host is compatible with nftablesOverview
SPDX-License-Identifier: Apache-2.0
3 4 5 6 7 8 9 10 11 |
# File 'modules/profile/manifests/sre/nftables_compat_check.pp', line 3
class profile::sre::nftables_compat_check () {
file { '/usr/local/bin/nftables-compat-check.py':
owner => 'root',
group => 'root',
mode => '0555',
source => 'puppet:///modules/profile/sre/nftables-compat-check.py',
}
}
|