summaryrefslogtreecommitdiffstats
path: root/ipa-client
diff options
context:
space:
mode:
Diffstat (limited to 'ipa-client')
-rw-r--r--ipa-client/configure.ac6
-rwxr-xr-xipa-client/ipa-client.spec (renamed from ipa-client/freeipa-client.spec)13
-rw-r--r--ipa-client/ipa-client.spec.in (renamed from ipa-client/freeipa-client.spec.in)11
-rw-r--r--ipa-client/ipa-install/ipa-client-install15
4 files changed, 33 insertions, 12 deletions
diff --git a/ipa-client/configure.ac b/ipa-client/configure.ac
index 5cd416da..9d060d9a 100644
--- a/ipa-client/configure.ac
+++ b/ipa-client/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ(2.59c)
-AC_INIT([freeipa-client],
- [0.3.1],
+AC_INIT([ipa-client],
+ [0.5.0],
[https://hosted.fedoraproject.org/projects/freeipa/newticket])
AC_CONFIG_SRCDIR([ipaclient/__init__.py])
@@ -47,7 +47,7 @@ AC_CONFIG_FILES([
AC_OUTPUT
echo "
- FreeIPA client $VERSION
+ IPA client $VERSION
========================
prefix: ${prefix}
diff --git a/ipa-client/freeipa-client.spec b/ipa-client/ipa-client.spec
index f4a51f47..c184600b 100755
--- a/ipa-client/freeipa-client.spec
+++ b/ipa-client/ipa-client.spec
@@ -1,7 +1,7 @@
-Name: freeipa-client
-Version: 0.3.1
+Name: ipa-client
+Version: 0.5.0
Release: 1%{?dist}
-Summary: FreeIPA client
+Summary: IPA client
Group: System Environment/Base
License: GPL
@@ -9,10 +9,10 @@ URL: http://www.freeipa.org
Source0: %{name}-%{version}.tgz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-Requires: python python-ldap python-krbV freeipa-python
+Requires: python python-ldap python-krbV ipa-python
%description
-FreeIPA is a server for identity, policy, and audit.
+IPA is a server for identity, policy, and audit.
The client package provide install and configuration scripts for clients.
%prep
@@ -41,6 +41,9 @@ rm -rf %{buildroot}
%{_usr}/share/ipa/*
%changelog
+* Wed Nov 21 2007 Karl MacMillan <kmacmill@redhat.com> - 0.5.0-1
+- Version bump for release and rpm name change
+
* Thu Nov 1 2007 Karl MacMillan <kmacmill@redhat.com> - 0.3.1-1
- Version bump for release
diff --git a/ipa-client/freeipa-client.spec.in b/ipa-client/ipa-client.spec.in
index f4a7997f..5dbd90f3 100644
--- a/ipa-client/freeipa-client.spec.in
+++ b/ipa-client/ipa-client.spec.in
@@ -1,7 +1,7 @@
-Name: freeipa-client
+Name: ipa-client
Version: VERSION
Release: 1%{?dist}
-Summary: FreeIPA client
+Summary: IPA client
Group: System Environment/Base
License: GPL
@@ -9,10 +9,10 @@ URL: http://www.freeipa.org
Source0: %{name}-%{version}.tgz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-Requires: python python-ldap python-krbV freeipa-python
+Requires: python python-ldap python-krbV ipa-python
%description
-FreeIPA is a server for identity, policy, and audit.
+IPA is a server for identity, policy, and audit.
The client package provide install and configuration scripts for clients.
%prep
@@ -41,6 +41,9 @@ rm -rf %{buildroot}
%{_usr}/share/ipa/*
%changelog
+* Wed Nov 21 2007 Karl MacMillan <kmacmill@redhat.com> - 0.5.0-1
+- Version bump for release and rpm name change
+
* Thu Nov 1 2007 Karl MacMillan <kmacmill@redhat.com> - 0.3.1-1
- Version bump for release
diff --git a/ipa-client/ipa-install/ipa-client-install b/ipa-client/ipa-install/ipa-client-install
index 3e3597dc..fccdac3b 100644
--- a/ipa-client/ipa-install/ipa-client-install
+++ b/ipa-client/ipa-install/ipa-client-install
@@ -124,6 +124,21 @@ def main():
print "IPA Server: "+ds.getServerName()
print "BaseDN: "+ds.getBaseDN()
+ # Configure ipa.conf
+ ipaconf = ipaclient.ipachangeconf.IPAChangeConf("IPA Installer")
+ ipaconf.setOptionAssignment(" = ")
+ ipaconf.setSectionNameDelimiters(("[","]"))
+
+ opts = [{'name':'comment', 'type':'comment', 'value':'File modified by ipa-client-install'},
+ {'name':'empty', 'type':'empty'}]
+ defopts.append({'name':'server', 'type':'option', 'value':ds.getServerName()})
+ defopts.append({'name':'realm', 'type':'option', 'value':ds.getRealmName()})
+
+ opts.append({'name':'defaults', 'type':'section', 'value':defopts})
+ opts.append({'name':'empty', 'type':'empty'})
+
+ ipaconf.newConf("/etc/ipa/ipa.conf", opts)
+
# Configure ldap.conf
ldapconf = ipaclient.ipachangeconf.IPAChangeConf("IPA Installer")
ldapconf.setOptionAssignment(" ")