class ovh_cleanup {
+ exec { 'bash -c "comm -23 <(find /etc /opt /usr | sort) <(pacman -Qlq | sed \"s|/$||\" | sort) > /root/disowned_files_before_cleanup.txt"':
+ path => '/usr/bin',
+ creates => '/root/disowned_files_before_cleanup.txt'
+ }
+ exec { 'bash -c "comm -23 <(pacman -Qq | sort) <(pacman -Qgq base | while read i; do pactree -u \$i; done | sort | uniq) > /root/packages_not_in_base_group.txt"':
+ path => '/usr/bin',
+ creates => '/root/packages_not_in_base_group.txt'
+ }
file { '/etc/apt':
ensure => 'absent',
force => true,