Displaying 3 results from an estimated 3 matches for "db_username".
2009 May 15
1
[PATCH server] add server-side groundwork for remote freeipa server
...[3]
+ if ovirt_hostip.to_s != admin_ipaddr.to_s
@cli.say("Forward dns lookup for #{ipa_host} failed, exiting")
exit(0)
end
@@ -236,18 +254,6 @@ cobbler_user_password = prompt_for_password("Enter your cobbler user password:",
# Postgres Configuration
db_username = "ovirt"
db_password = prompt_for_password("Enter a password for the ovirt postgres account:", "Confirm your ovirt postgres password")
-# FreeIPA Configuration
-realm_name = prompt_for_answer("Enter your realm name (example: example.com):", :regex => FQD...
2006 Jun 20
1
Extracting a connection out of ActiveRecord::Base
...tiveRecord::Base.connection
if self.options.include?(:db_adapter)
typo_conn = ActiveRecord::Base.connection
ActiveRecord::Base.establish_connection(
:adapter => self.options[:db_adapter],
:host => self.options[:db_host],
:username => self.options[:db_username],
:password => self.options[:db_password],
:database => self.options[:wp_db]
)
self.connection = ActiveRecord::Base.connection
ActiveRecord::Base.connection = typo_conn
puts "connected."
end
the connection stored in self.connection seems...
2009 Jul 02
2
How to install ovirt in working environment?
...gt; $admin_ipaddr,
guest_dev => 'eth1',
admin_dev => 'eth1'
}
# DHCP Configuration
# Cobbler configuration
$cobbler_hostname = 'station.example.ru'
$cobbler_user_name = 'cobbler'
$cobbler_user_password = 'cobbler'
# Postgres Configuration
$db_username = 'ovirt'
$db_password = 'ovirtadmin'
# FreeIPA configuration
$realm_name = 'example.ru'
$freeipa_password = 'secret'
$short_ldap_dn = 'dc=example,dc=ru'
$ldap_dn = 'cn=ipaConfig,cn=etc,dc=example,dc=ru'
include cobbler::remote
include postgres::bun...