blob: 8847b7d94a315323dbb0061bb020d16b360034fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
module LeapCli
module Commands
desc 'Removes all files generated with the "compile" command'
command :clean do |c|
c.action do |global_options,options,args|
Dir.glob(path([:hiera, '*'])).each do |file|
remove_file! file
end
remove_file! path(:authorized_keys)
remove_file! path(:known_hosts)
end
end
end
end
|