Puppet Class: rclone::uninstall
- Defined in:
-
manifests/uninstall.pp
Summary
Removes rclone installed by this module
Overview
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'manifests/uninstall.pp', line 4
class rclone::uninstall {
file { "remove ${rclone::man_page}":
ensure => absent,
path => $rclone::man_page,
notify => Exec['rclone mandb'],
}
file { "remove ${rclone::binary}":
ensure => absent,
path => $rclone::binary,
}
file { "remove ${rclone::install_dir}":
ensure => absent,
path => $rclone::install_dir,
purge => true,
recurse => true,
force => true,
}
}
|