summaryrefslogtreecommitdiff
path: root/manifests/preseeded_package.pp
blob: e1d1dcc53938098d7a76d69ac492c1b960cf945f (plain)
1
2
3
4
5
6
7
8
9
10
11
# This is a wrapper that will be removed after a while
define apt::preseeded_package (
  $ensure  = 'present',
  $content = '',
) {
  warning('apt::preseeded_package is deprecated! you should now use apt::package instead.')
  apt::package { $name:
    ensure  => $ensure,
    content => $content,
  }
}