Class: PgExport::BootContainer

Inherits:
Object
  • Object
show all
Defined in:
lib/pg_export/boot_container.rb

Class Method Summary collapse

Class Method Details

.call(config) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
# File 'lib/pg_export/boot_container.rb', line 14

def call(config)
  container = {}

  boot_logger(container, config)
  boot_aes(container, config)
  boot_ftp(container, config)
  boot_bash(container)
  boot_services(container)

  container
end