0000-12-31 18:09:24 -05:50
|
|
|
#! /usr/bin/python -E
|
|
|
|
# Authors: Karl MacMillan <kmacmillan@mentalrootkit.com>
|
|
|
|
#
|
|
|
|
# Copyright (C) 2007 Red Hat
|
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
# published by the Free Software Foundation; version 2 only
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
# requires the following packages:
|
|
|
|
# fedora-ds-base
|
|
|
|
# openldap-clients
|
|
|
|
# nss-tools
|
|
|
|
|
|
|
|
VERSION = "%prog .1"
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
import sys
|
|
|
|
sys.path.append("/usr/share/ipa")
|
|
|
|
|
2007-10-02 15:56:51 -05:00
|
|
|
import os
|
0000-12-31 18:09:24 -05:50
|
|
|
import socket
|
2007-10-15 12:27:05 -05:00
|
|
|
import errno
|
0000-12-31 18:09:24 -05:50
|
|
|
import logging
|
2007-08-31 17:40:01 -05:00
|
|
|
import pwd
|
2007-10-03 16:37:13 -05:00
|
|
|
import subprocess
|
2007-10-02 15:56:51 -05:00
|
|
|
import signal
|
|
|
|
import shutil
|
|
|
|
import glob
|
0000-12-31 18:09:24 -05:50
|
|
|
import traceback
|
0000-12-31 18:09:24 -05:50
|
|
|
from optparse import OptionParser
|
0000-12-31 18:09:24 -05:50
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
import ipaserver.dsinstance
|
|
|
|
import ipaserver.krbinstance
|
2007-09-20 14:10:21 -05:00
|
|
|
import ipaserver.bindinstance
|
2007-10-15 14:42:12 -05:00
|
|
|
import ipaserver.httpinstance
|
0000-12-31 18:09:24 -05:50
|
|
|
import ipaserver.ntpinstance
|
0000-12-31 18:09:24 -05:50
|
|
|
import ipaserver.webguiinstance
|
|
|
|
|
|
|
|
from ipaserver import service
|
2008-01-14 11:43:26 -06:00
|
|
|
from ipaserver import sysrestore
|
0000-12-31 18:09:24 -05:50
|
|
|
from ipaserver.installutils import *
|
0000-12-31 18:09:24 -05:50
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
from ipa.ipautil import *
|
0000-12-31 18:09:24 -05:50
|
|
|
|
|
|
|
def parse_options():
|
|
|
|
parser = OptionParser(version=VERSION)
|
2007-07-02 14:51:04 -05:00
|
|
|
parser.add_option("-u", "--user", dest="ds_user",
|
|
|
|
help="ds user")
|
0000-12-31 18:09:24 -05:50
|
|
|
parser.add_option("-r", "--realm", dest="realm_name",
|
|
|
|
help="realm name")
|
2007-08-31 17:40:01 -05:00
|
|
|
parser.add_option("-p", "--ds-password", dest="dm_password",
|
0000-12-31 18:09:24 -05:50
|
|
|
help="admin password")
|
2007-08-20 17:40:32 -05:00
|
|
|
parser.add_option("-P", "--master-password", dest="master_password",
|
2007-06-28 18:09:54 -05:00
|
|
|
help="kerberos master password")
|
2007-08-31 17:40:01 -05:00
|
|
|
parser.add_option("-a", "--admin-password", dest="admin_password",
|
|
|
|
help="admin user kerberos password")
|
0000-12-31 18:09:24 -05:50
|
|
|
parser.add_option("-d", "--debug", dest="debug", action="store_true",
|
2007-09-20 14:10:21 -05:00
|
|
|
default=False, help="print debugging information")
|
0000-12-31 18:09:24 -05:50
|
|
|
parser.add_option("--hostname", dest="host_name", help="fully qualified name of server")
|
2007-09-20 14:10:21 -05:00
|
|
|
parser.add_option("--ip-address", dest="ip_address", help="Master Server IP Address")
|
|
|
|
parser.add_option("--setup-bind", dest="setup_bind", action="store_true",
|
|
|
|
default=False, help="configure bind with our zone file")
|
|
|
|
parser.add_option("-U", "--unattended", dest="unattended", action="store_true",
|
|
|
|
default=False, help="unattended installation never prompts the user")
|
0000-12-31 18:09:24 -05:50
|
|
|
|
|
|
|
options, args = parser.parse_args()
|
|
|
|
|
2007-08-20 17:40:32 -05:00
|
|
|
if options.unattended and (not options.ds_user or
|
|
|
|
not options.realm_name or
|
2007-08-31 17:40:01 -05:00
|
|
|
not options.dm_password or
|
|
|
|
not options.admin_password or
|
2007-08-20 17:40:32 -05:00
|
|
|
not options.master_password):
|
0000-12-31 18:09:24 -05:50
|
|
|
parser.error("error: In unattended mode you need to provide at least -u, -r, -p and -P options")
|
0000-12-31 18:09:24 -05:50
|
|
|
|
|
|
|
return options
|
|
|
|
|
2007-10-02 15:56:51 -05:00
|
|
|
def signal_handler(signum, frame):
|
|
|
|
global ds
|
|
|
|
print "\nCleaning up..."
|
|
|
|
if ds:
|
|
|
|
print "Removing configuration for %s instance" % ds.serverid
|
|
|
|
ds.stop()
|
|
|
|
if ds.serverid:
|
0000-12-31 18:09:24 -05:50
|
|
|
ipaserver.dsinstance.erase_ds_instance_data (ds.serverid)
|
2007-10-02 15:56:51 -05:00
|
|
|
sys.exit(1)
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
def read_host_name(host_default):
|
|
|
|
host_ok = False
|
|
|
|
host_name = ""
|
|
|
|
|
|
|
|
print "Enter the fully qualified domain name of the computer"
|
|
|
|
print "on which you're setting up server software. Using the form"
|
|
|
|
print "<hostname>.<domainname>"
|
|
|
|
print "Example: master.example.com."
|
|
|
|
print ""
|
|
|
|
print ""
|
|
|
|
if host_default == "":
|
|
|
|
host_default = "master.example.com"
|
|
|
|
while not host_ok:
|
|
|
|
host_input = raw_input("Server host name [" + host_default + "]: ")
|
|
|
|
print ""
|
|
|
|
if host_input == "":
|
|
|
|
host_name = host_default
|
|
|
|
else:
|
|
|
|
host_name = host_input
|
0000-12-31 18:09:24 -05:50
|
|
|
try:
|
|
|
|
verify_fqdn(host_name)
|
|
|
|
except:
|
0000-12-31 18:09:24 -05:50
|
|
|
host_name = ""
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
host_ok = True
|
|
|
|
return host_name
|
|
|
|
|
|
|
|
def resolve_host(host_name):
|
|
|
|
ip = ""
|
|
|
|
try:
|
|
|
|
ip = socket.gethostbyname(host_name)
|
|
|
|
|
|
|
|
if ip == "127.0.0.1" or ip == "::1":
|
|
|
|
print "The hostname resolves to the localhost address (127.0.0.1/::1)"
|
|
|
|
print "Please change your /etc/hosts file so that the hostname"
|
|
|
|
print "resolves to the ip address of your network interface."
|
|
|
|
print "The KDC service does not listen on localhost"
|
|
|
|
print ""
|
|
|
|
print "Please fix your /etc/hosts file and restart the setup program"
|
|
|
|
return "-Fatal Error-"
|
|
|
|
|
|
|
|
except:
|
|
|
|
print "Unable to lookup the IP address of the provided host"
|
|
|
|
return ip
|
|
|
|
|
|
|
|
def verify_ip_address(ip):
|
|
|
|
is_ok = True
|
|
|
|
try:
|
|
|
|
socket.inet_pton(socket.AF_INET, ip)
|
|
|
|
except:
|
|
|
|
try:
|
|
|
|
socket.inet_pton(socket.AF_INET6, ip)
|
|
|
|
except:
|
|
|
|
print "Unable to verify IP address"
|
|
|
|
is_ok = False
|
|
|
|
return is_ok
|
|
|
|
|
2008-02-21 09:23:29 -06:00
|
|
|
def read_ip_address(host_name):
|
|
|
|
while True:
|
0000-12-31 18:09:24 -05:50
|
|
|
ip = raw_input("Please provide the IP address to be used for this host name: ")
|
|
|
|
|
|
|
|
if ip == "":
|
|
|
|
continue
|
|
|
|
if ip == "127.0.0.1" or ip == "::1":
|
|
|
|
print "The IPA Server can't use localhost as a valid IP"
|
|
|
|
continue
|
|
|
|
|
|
|
|
if not verify_ip_address(ip):
|
|
|
|
continue
|
|
|
|
|
|
|
|
print "Adding ["+ip+" "+host_name+"] to your /etc/hosts file"
|
2008-01-14 11:43:26 -06:00
|
|
|
sysrestore.backup_file("/etc/hosts")
|
0000-12-31 18:09:24 -05:50
|
|
|
hosts_fd = open('/etc/hosts', 'r+')
|
|
|
|
hosts_fd.seek(0, 2)
|
|
|
|
hosts_fd.write(ip+'\t'+host_name+' '+host_name[:host_name.find('.')]+'\n')
|
|
|
|
hosts_fd.close()
|
2008-02-21 09:23:29 -06:00
|
|
|
|
|
|
|
return ip
|
0000-12-31 18:09:24 -05:50
|
|
|
|
|
|
|
def read_ds_user():
|
|
|
|
print "The server must run as a specific user in a specific group."
|
|
|
|
print "It is strongly recommended that this user should have no privileges"
|
|
|
|
print "on the computer (i.e. a non-root user). The setup procedure"
|
|
|
|
print "will give this user/group some permissions in specific paths/files"
|
|
|
|
print "to perform server-specific operations."
|
|
|
|
print ""
|
|
|
|
|
|
|
|
ds_user = ""
|
|
|
|
try:
|
|
|
|
pwd.getpwnam('dirsrv')
|
|
|
|
|
|
|
|
print "A user account named 'dirsrv' already exists."
|
|
|
|
print ""
|
|
|
|
yesno = raw_input("Do you want to use the existing 'dirsrv' account? [yes]: ")
|
|
|
|
print ""
|
|
|
|
if not yesno or yesno.lower()[0] != "n":
|
|
|
|
ds_user = "dirsrv"
|
|
|
|
else:
|
|
|
|
ds_user = raw_input("Which account name do you want to use for the DS instance? ")
|
|
|
|
print ""
|
|
|
|
except KeyError:
|
|
|
|
ds_user = "dirsrv"
|
|
|
|
|
|
|
|
return ds_user
|
|
|
|
|
|
|
|
def read_realm_name(domain_name):
|
|
|
|
print "The kerberos protocol requires a Realm name to be defined."
|
|
|
|
print "This is typically the domain name converted to uppercase."
|
|
|
|
print ""
|
|
|
|
upper_dom = domain_name.upper()
|
|
|
|
realm_name = raw_input("Please provide a realm name ["+upper_dom+"]: ")
|
|
|
|
print ""
|
|
|
|
if realm_name == "":
|
|
|
|
realm_name = upper_dom
|
|
|
|
else:
|
|
|
|
upper_dom = realm_name.upper()
|
|
|
|
if upper_dom != realm_name:
|
|
|
|
print "It is strongly recommended that you use a completely uppercased name for the realm."
|
|
|
|
dom_realm = raw_input("Do you want to use "+upper_dom+" as realm name ? [yes]: ")
|
|
|
|
print ""
|
|
|
|
if dom_realm and dom_realm.lower()[0] != "y":
|
|
|
|
print "WARNING: Using a non upper-cased realm name may cause unexpected problems."
|
|
|
|
else:
|
|
|
|
realm_name = upper_dom
|
|
|
|
return realm_name
|
|
|
|
|
|
|
|
def read_dm_password():
|
|
|
|
print "Certain directory server operations require an administrative user."
|
|
|
|
print "This user is referred to as the Directory Manager and has full access"
|
|
|
|
print "to the Directory for system management tasks."
|
0000-12-31 18:09:24 -05:50
|
|
|
print "The password must be at least 8 characters long."
|
0000-12-31 18:09:24 -05:50
|
|
|
print ""
|
|
|
|
#TODO: provide the option of generating a random password
|
|
|
|
dm_password = read_password("Directory Manager")
|
|
|
|
return dm_password
|
|
|
|
|
|
|
|
def read_admin_password():
|
|
|
|
print "The IPA server requires an administrative user, named 'admin'."
|
|
|
|
print "This user is a regular system account used for IPA server administration."
|
|
|
|
print ""
|
|
|
|
#TODO: provide the option of generating a random password
|
|
|
|
admin_password = read_password("IPA admin")
|
|
|
|
return admin_password
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
def main():
|
2007-10-02 15:56:51 -05:00
|
|
|
global ds
|
|
|
|
ds = None
|
0000-12-31 18:09:24 -05:50
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
options = parse_options()
|
|
|
|
|
2007-10-02 15:56:51 -05:00
|
|
|
if os.getegid() != 0:
|
|
|
|
print "Must be root to setup server"
|
|
|
|
return
|
|
|
|
|
|
|
|
signal.signal(signal.SIGTERM, signal_handler)
|
|
|
|
signal.signal(signal.SIGINT, signal_handler)
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
standard_logging_setup("ipaserver-install.log", options.debug)
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
print "=============================================================================="
|
|
|
|
print "This program will setup the FreeIPA Server."
|
|
|
|
print ""
|
|
|
|
print "To accept the default shown in brackets, press the Enter key."
|
|
|
|
print ""
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
ipaserver.dsinstance.check_existing_installation()
|
|
|
|
ipaserver.dsinstance.check_ports()
|
2007-10-02 15:56:51 -05:00
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2007-08-20 17:40:32 -05:00
|
|
|
ds_user = ""
|
|
|
|
realm_name = ""
|
|
|
|
host_name = ""
|
2007-09-20 14:10:21 -05:00
|
|
|
domain_name = ""
|
|
|
|
ip_address = ""
|
2007-08-20 17:40:32 -05:00
|
|
|
master_password = ""
|
2007-08-31 17:40:01 -05:00
|
|
|
dm_password = ""
|
|
|
|
admin_password = ""
|
2007-08-20 17:40:32 -05:00
|
|
|
|
2007-09-20 14:10:21 -05:00
|
|
|
# check bind packages are installed
|
|
|
|
bind = ipaserver.bindinstance.BindInstance()
|
|
|
|
if options.setup_bind:
|
|
|
|
if not bind.check_inst():
|
|
|
|
print "--setup-bind was specified but bind is not installed on the system"
|
2007-12-07 16:36:14 -06:00
|
|
|
print "Please install bind (you may also need the package 'caching-nameserver') and restart the setup program"
|
2007-09-20 14:10:21 -05:00
|
|
|
return "-Fatal Error-"
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
# check the hostname is correctly configured, it must be as the kldap
|
|
|
|
# utilities just use the hostname as returned by gethostbyname to set
|
|
|
|
# up some of the standard entries
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
host_default = ""
|
0000-12-31 18:09:24 -05:50
|
|
|
if options.host_name:
|
0000-12-31 18:09:24 -05:50
|
|
|
host_default = options.host_name
|
0000-12-31 18:09:24 -05:50
|
|
|
else:
|
0000-12-31 18:09:24 -05:50
|
|
|
host_default = get_fqdn()
|
|
|
|
|
|
|
|
if options.unattended:
|
0000-12-31 18:09:24 -05:50
|
|
|
try:
|
|
|
|
verify_fqdn(host_default)
|
|
|
|
except RuntimeError, e:
|
|
|
|
logging.error(str(e) + "\n")
|
0000-12-31 18:09:24 -05:50
|
|
|
return "-Fatal Error-"
|
0000-12-31 18:09:24 -05:50
|
|
|
|
|
|
|
host_name = host_default
|
0000-12-31 18:09:24 -05:50
|
|
|
else:
|
|
|
|
host_name = read_host_name(host_default)
|
2007-09-20 14:10:21 -05:00
|
|
|
|
|
|
|
domain_name = host_name[host_name.find(".")+1:]
|
|
|
|
|
|
|
|
# Check we have a public IP that is associated with the hostname
|
0000-12-31 18:09:24 -05:50
|
|
|
ip = resolve_host(host_name)
|
|
|
|
if not ip:
|
|
|
|
if options.ip_address:
|
|
|
|
ip = options.ip_address
|
|
|
|
if not ip and options.unattended:
|
|
|
|
print "Unable to resolve IP address for host name"
|
|
|
|
return "-Fatal Error-"
|
2007-09-20 14:10:21 -05:00
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
if not verify_ip_address(ip):
|
|
|
|
ip = ""
|
|
|
|
if options.unattended:
|
2007-09-20 14:10:21 -05:00
|
|
|
return "-Fatal Error-"
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
if options.ip_address and options.ip_address != ip:
|
|
|
|
if options.setup_bind:
|
2007-09-20 14:10:21 -05:00
|
|
|
ip = options.ip_address
|
|
|
|
else:
|
0000-12-31 18:09:24 -05:50
|
|
|
print "Error: the hostname resolves to an IP address that is different"
|
|
|
|
print "from the one provided on the command line. Please fix your DNS"
|
|
|
|
print "or /etc/hosts file and restart the installation."
|
|
|
|
return "-Fatal Error-"
|
2007-09-20 14:10:21 -05:00
|
|
|
|
|
|
|
if options.unattended:
|
0000-12-31 18:09:24 -05:50
|
|
|
if not ip:
|
2007-09-20 14:10:21 -05:00
|
|
|
print "Unable to resolve IP address"
|
|
|
|
return "-Fatal Error-"
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
if not ip:
|
2008-02-21 09:23:29 -06:00
|
|
|
ip = read_ip_address(host_name)
|
2007-09-20 14:10:21 -05:00
|
|
|
ip_address = ip
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
print "The IPA Master Server will be configured with"
|
|
|
|
print "Hostname: " + host_name
|
|
|
|
print "IP address: " + ip_address
|
|
|
|
print "Domain name: " + domain_name
|
2007-08-20 17:40:32 -05:00
|
|
|
print ""
|
|
|
|
|
|
|
|
if not options.ds_user:
|
0000-12-31 18:09:24 -05:50
|
|
|
ds_user = read_ds_user()
|
2007-08-20 17:40:32 -05:00
|
|
|
if ds_user == "":
|
0000-12-31 18:09:24 -05:50
|
|
|
return "-Aborted-"
|
2007-08-20 17:40:32 -05:00
|
|
|
else:
|
|
|
|
ds_user = options.ds_user
|
|
|
|
|
|
|
|
if not options.realm_name:
|
0000-12-31 18:09:24 -05:50
|
|
|
realm_name = read_realm_name(domain_name)
|
2007-08-20 17:40:32 -05:00
|
|
|
else:
|
|
|
|
realm_name = options.realm_name
|
|
|
|
|
2007-08-31 17:40:01 -05:00
|
|
|
if not options.dm_password:
|
0000-12-31 18:09:24 -05:50
|
|
|
dm_password = read_dm_password()
|
2007-08-20 17:40:32 -05:00
|
|
|
else:
|
2007-08-31 17:40:01 -05:00
|
|
|
dm_password = options.dm_password
|
2007-08-20 17:40:32 -05:00
|
|
|
|
|
|
|
if not options.master_password:
|
0000-12-31 18:09:24 -05:50
|
|
|
master_password = ipa_generate_password()
|
2007-08-20 17:40:32 -05:00
|
|
|
else:
|
|
|
|
master_password = options.master_password
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2007-08-31 17:40:01 -05:00
|
|
|
if not options.admin_password:
|
0000-12-31 18:09:24 -05:50
|
|
|
admin_password = read_admin_password()
|
2007-08-31 17:40:01 -05:00
|
|
|
else:
|
|
|
|
admin_password = options.admin_password
|
|
|
|
|
2007-09-20 14:10:21 -05:00
|
|
|
if not options.unattended:
|
|
|
|
print ""
|
|
|
|
print "The following operations may take some minutes to complete."
|
|
|
|
print "Please wait until the prompt is returned."
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
# Create a directory server instance
|
0000-12-31 18:09:24 -05:50
|
|
|
ds = ipaserver.dsinstance.DsInstance()
|
2007-08-31 17:40:01 -05:00
|
|
|
ds.create_instance(ds_user, realm_name, host_name, dm_password)
|
0000-12-31 18:09:24 -05:50
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
# Create a kerberos instance
|
0000-12-31 18:09:24 -05:50
|
|
|
krb = ipaserver.krbinstance.KrbInstance()
|
2007-08-31 17:40:01 -05:00
|
|
|
krb.create_instance(ds_user, realm_name, host_name, dm_password, master_password)
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2007-10-15 14:42:12 -05:00
|
|
|
# Create a HTTP instance
|
|
|
|
http = ipaserver.httpinstance.HTTPInstance()
|
0000-12-31 18:09:24 -05:50
|
|
|
http.create_instance(realm_name, host_name)
|
|
|
|
|
|
|
|
# Create a Web Gui instance
|
|
|
|
webgui = ipaserver.webguiinstance.WebGuiInstance()
|
|
|
|
webgui.create_instance()
|
2007-10-15 14:42:12 -05:00
|
|
|
|
2007-09-20 14:10:21 -05:00
|
|
|
bind.setup(host_name, ip_address, realm_name)
|
|
|
|
if options.setup_bind:
|
|
|
|
skipbind = False
|
|
|
|
if not options.unattended:
|
|
|
|
print "This program is about to replace the DNS Server configuration,"
|
|
|
|
print "with an automatically generated one, based on the data gathered so far."
|
|
|
|
print "This will REPLACE any existing configuration."
|
0000-12-31 18:09:24 -05:50
|
|
|
yesno = raw_input("Are you sure you want to configure the DNS Server ? [no]: ")
|
|
|
|
if not yesno or yesno.lower()[0] != 'y':
|
2007-09-20 14:10:21 -05:00
|
|
|
skipbind = True
|
|
|
|
if not skipbind:
|
|
|
|
bind.create_instance()
|
|
|
|
else:
|
|
|
|
bind.create_sample_bind_zone()
|
|
|
|
|
|
|
|
# Restart ds and krb after configurations have been changed
|
0000-12-31 18:09:24 -05:50
|
|
|
service.print_msg("restarting the directory server")
|
2007-06-28 18:09:54 -05:00
|
|
|
ds.restart()
|
0000-12-31 18:09:24 -05:50
|
|
|
|
|
|
|
service.print_msg("restarting the KDC")
|
2007-09-20 14:10:21 -05:00
|
|
|
krb.restart()
|
2007-06-28 18:09:54 -05:00
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
# Configure ntpd
|
|
|
|
ntp = ipaserver.ntpinstance.NTPInstance()
|
|
|
|
ntp.create_instance()
|
|
|
|
|
2007-08-31 17:40:01 -05:00
|
|
|
# Set the admin user kerberos password
|
|
|
|
ds.change_admin_password(admin_password)
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
# Create the config file
|
2008-01-14 11:43:26 -06:00
|
|
|
sysrestore.backup_file("/etc/ipa/ipa.conf")
|
0000-12-31 18:09:24 -05:50
|
|
|
fd = open("/etc/ipa/ipa.conf", "w")
|
|
|
|
fd.write("[defaults]\n")
|
|
|
|
fd.write("server=" + host_name + "\n")
|
2007-08-20 17:40:32 -05:00
|
|
|
fd.write("realm=" + realm_name + "\n")
|
0000-12-31 18:09:24 -05:50
|
|
|
fd.close()
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
print "=============================================================================="
|
|
|
|
print "Setup complete"
|
|
|
|
print ""
|
|
|
|
print "Next steps:"
|
|
|
|
print "\t1. You may need to open some network ports - specifically:"
|
|
|
|
print "\t\tTCP Ports:"
|
|
|
|
print "\t\t * 80, 443, 8080: HTTP/HTTPS"
|
|
|
|
print "\t\t * 389, 636: LDAP/LDAPS"
|
0000-12-31 18:09:24 -05:50
|
|
|
print "\t\t * 88, 464: kerberos"
|
0000-12-31 18:09:24 -05:50
|
|
|
print "\t\tUDP Ports:"
|
0000-12-31 18:09:24 -05:50
|
|
|
print "\t\t * 88, 464: kerberos"
|
|
|
|
print "\t\t * 123: ntp"
|
0000-12-31 18:09:24 -05:50
|
|
|
print ""
|
|
|
|
print "\t2. You can now obtain a kerberos ticket using the command: 'kinit admin'."
|
|
|
|
print "\t This ticket will allow you to use the IPA tools (e.g., ipa-adduser)"
|
|
|
|
print "\t and the web user interface."
|
|
|
|
|
2008-01-11 04:36:25 -06:00
|
|
|
if not service.is_running("ntpd"):
|
0000-12-31 18:09:24 -05:50
|
|
|
print "\t3. Kerberos requires time synchronization between clients"
|
|
|
|
print "\t and servers for correct operation. You should consider enabling ntpd."
|
|
|
|
|
|
|
|
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
return 0
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
try:
|
|
|
|
main()
|
|
|
|
except Exception, e:
|
0000-12-31 18:09:24 -05:50
|
|
|
message = "Unexpected error - see ipaserver-install.log for details:\n %s" % str(e)
|
|
|
|
print message
|
|
|
|
message = str(e)
|
|
|
|
for str in traceback.format_tb(sys.exc_info()[2]):
|
|
|
|
message = message + "\n" + str
|
|
|
|
logging.debug(message)
|