Displaying 4 results from an estimated 4 matches for "admin_dev".
2009 May 15
1
[PATCH server] add server-side groundwork for remote freeipa server
...r/modules/ovirt/manifests/ovirt.pp | 2 +-
4 files changed, 115 insertions(+), 70 deletions(-)
diff --git a/installer/bin/ovirt-installer b/installer/bin/ovirt-installer
index ad4d56d..2258578 100755
--- a/installer/bin/ovirt-installer
+++ b/installer/bin/ovirt-installer
@@ -171,11 +171,29 @@ admin_dev = prompt_for_interface("Enter the interface for the Admin network (thi
#FIXME: correctly configure separate networks.
#For now, define admin and guest networks to be the same
-guest_dev = admin_dev
+guest_dev = guest_httpd_dev
#sep_networks = (guest_dev == admin_dev) ? "n" : &qu...
2009 Sep 17
1
[PATCH server] oVirt server single network installer
...@ else
end
end
-guest_httpd_dev = prompt_for_interface("Enter the interface for the Guest network:", interfaces, :default => "eth0")
+guest_dev = prompt_for_interface("Enter the interface for the Guest network:", interfaces, :default => "eth0")
admin_dev = prompt_for_interface("Enter the interface for the Admin network (this may be the same as the Guest network interface):", interfaces, :default => "eth0")
-#FIXME: correctly configure separate networks.
-#For now, define admin and guest networks to be the same
-guest_dev =...
2009 Jul 02
2
How to install ovirt in working environment?
....7'
$guest_ipaddr = '10.1.1.7'
$admin_ipaddr = '10.1.1.7'
$ovirt_host = 'station.example.ru'
$ipa_host = 'station.example.ru'
dns::remote{setup:
guest_ipaddr=> $guest_ipaddr,
admin_ipaddr=> $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'
# F...
2009 May 29
0
[PATCH server] last patch to implement remote freeipa
.../modules/ovirt/files/ovirt-remote-ipa.conf
diff --git a/installer/bin/ovirt-installer b/installer/bin/ovirt-installer
index d0dc77b..3169938 100755
--- a/installer/bin/ovirt-installer
+++ b/installer/bin/ovirt-installer
@@ -175,8 +175,7 @@ guest_dev = guest_httpd_dev
#sep_networks = (guest_dev == admin_dev) ? "n" : "y"
ovirt_host = prompt_for_answer("Enter the hostname of the oVirt management server", :regex => IP_OR_FQDN, :default => hostname.chomp)
-#remote_ipa = prompt_yes_no("Is FreeIPA already installed on another machine?")
-remote_ipa = "n&...