voxpupuli / puppet-kmod

manage kernel module with puppet
Apache License 2.0
17 stars 63 forks source link

Fix kmod::alias example #85

Closed silug closed 2 years ago

silug commented 2 years ago

The entry in README.md for kmod::alias has the following example:

  kmod::alias { 'bond0':
    aliasname => 'bonding',
  }

It should read as follows:

  kmod::alias { 'bond0':
    source => 'bonding',
  }

Fixes #84

silug commented 2 years ago

I missed this in https://github.com/voxpupuli/puppet-kmod/pull/83.

kenyon commented 2 years ago

Looks like the example in https://github.com/voxpupuli/puppet-kmod/blob/master/manifests/alias.pp also needs to be fixed, can you add that to this PR?

silug commented 2 years ago

Looks like the example in https://github.com/voxpupuli/puppet-kmod/blob/master/manifests/alias.pp also needs to be fixed, can you add that to this PR?

Done. Good catch. :slightly_smiling_face: