Puppet Class: duplicity::uninstall

Defined in:
manifests/uninstall.pp

Overview

See README.md for details.



2
3
4
5
6
7
# File 'manifests/uninstall.pp', line 2

class duplicity::uninstall {
  case $::operatingsystem {
    'Debian', 'Ubuntu': { include ::duplicity::uninstall::debian }
    default: { fail "${::operatingsystem} not yet implemented for ${name}" }
  }
}