aboutsummaryrefslogtreecommitdiff
path: root/manifests/preferences/absent.pp
blob: 3131aff9288f4cb0b026a072935a69775f3e5124 (plain)
1
2
3
4
5
6
7
8
class apt::preferences::absent {
  include common::moduledir
  $apt_preferences_dir = "${common::moduledir::module_dir_path}/apt/preferences"
  concatenated_file{'/etc/apt/preferences':
    dir => $apt_preferences_dir,
    ensure => absent,
  }
}