mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 07:31:41 +00:00
feat: informar qué se está haciendo
This commit is contained in:
parent
4442338a68
commit
d99f02bd0c
1 changed files with 4 additions and 0 deletions
|
@ -26,6 +26,8 @@ class CleanupService
|
|||
Site.where('updated_at < ?', before).find_each do |site|
|
||||
next unless File.directory? site.path
|
||||
|
||||
Rails.logger.info "Limpiando dependencias, archivos temporales y repositorio git de #{site.name}"
|
||||
|
||||
site.deploys.find_each(&:cleanup!)
|
||||
|
||||
site.repository.gc
|
||||
|
@ -40,6 +42,8 @@ class CleanupService
|
|||
Site.where('updated_at >= ?', before).find_each do |site|
|
||||
next unless File.directory? site.path
|
||||
|
||||
Rails.logger.info "Limpiando repositorio git de #{site.name}"
|
||||
|
||||
site.repository.gc
|
||||
site.touch
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue