-
Notifications
You must be signed in to change notification settings - Fork 3
/
limpiar_standalone.rb
62 lines (50 loc) · 1.37 KB
/
limpiar_standalone.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/ruby
#
# Elimina todos los archivos deployados y los archivos temporales
# de varias instalaciones de JBOSS.
# USO:
# Modificar para incluir la ubicacion de las instalaciones y
# los deploys que no se desean eliminar.
# ruby ~/scripts/limpiar_standalone.rb
require 'fileutils'
$HOME_DIRECTORY = Array["/home/avolpe/develop/servidores/jboss-as-7.1.1.Final/standalone/deployments"]
$INTACTOS = Array["pos", "sql"]
$JBOSS_PROCESS_ID = `ps -eF | grep jboss | grep server | tr -s " " | cut -d " " -f2 | xargs kill -9`
puts "Servidor parado"
$HOME_DIRECTORY.each { | directory |
puts "Cambiando directorio a #{directory}"
puts "Eliminar archivos."
puts "\tOmitiendo archivos que empiezan con #{$INTACTOS}"
Dir.chdir(directory)
Dir.foreach(directory) { | file |
if (file == "." || file == "..")
next
end
match = false
$INTACTOS.each { | intacto |
if (file.match(/^#{intacto}/)) then
match = true
end
}
if (not match)
if (File::directory?(file))
FileUtils.rm_rf(file)
puts "\t\tEliminando directorio: #{file}"
else
File.delete(file);
puts "\t\tEliminando archivo: #{file}"
end
else
puts "\t\tOmitiendo #{file}"
end
}
tmp = Dir.pwd + "/../tmp"
if (File::directory?(tmp))
Dir.chdir(tmp)
puts "Cambiando a #{Dir.pwd}"
puts "Eliminando datos temporales"
FileUtils.rm_rf(Dir.pwd)
else
puts "Temporales limpios"
end
}