class Caco::Repmgr::Cell::Conf

Public Instance Methods

barman_host() click to toggle source
# File lib/caco/repmgr/cell/conf.rb, line 35
def barman_host
  property(:barman_host) || "barman"
end
barman_server() click to toggle source
# File lib/caco/repmgr/cell/conf.rb, line 39
def barman_server
  property(:barman_server) || "pg"
end
node_id() click to toggle source
# File lib/caco/repmgr/cell/conf.rb, line 3
def node_id
  property(:node_id)
end
node_initial_role() click to toggle source
# File lib/caco/repmgr/cell/conf.rb, line 23
def node_initial_role
  property(:node_initial_role)
end
node_name() click to toggle source
# File lib/caco/repmgr/cell/conf.rb, line 7
def node_name
  property(:node_name)
end
postgres_version() click to toggle source
# File lib/caco/repmgr/cell/conf.rb, line 27
def postgres_version
  property(:postgres_version)
end
primary_database() click to toggle source
# File lib/caco/repmgr/cell/conf.rb, line 19
def primary_database
  property(:primary_database)
end
primary_host() click to toggle source
# File lib/caco/repmgr/cell/conf.rb, line 11
def primary_host
  property(:primary_host)
end
primary_user() click to toggle source
# File lib/caco/repmgr/cell/conf.rb, line 15
def primary_user
  property(:primary_user)
end
use_barman?() click to toggle source
# File lib/caco/repmgr/cell/conf.rb, line 31
def use_barman?
  property(:use_barman) || false
end