summaryrefslogtreecommitdiffstats
path: root/install
Commit message (Collapse)AuthorAgeFilesLines
* Update Ukrainian translationsJohn Dennis2010-03-171-26/+208
|
* Proper use of set up vs setup (verb vs noun)Rob Crittenden2010-03-161-3/+3
| | | | Resolves #529787
* Fix typo in automount doc message.Rob Crittenden2010-03-161-11/+179
| | | | | | Update the po to pick up this change too. 573979
* Add Ukrainian translationsJohn Dennis2010-03-163-6/+1496
|
* remove .pot target from Makefile.inJohn Dennis2010-03-161-3/+0
| | | | | | We want to manually make the .pot file, we shouldn't have anything in the Makefile which will cause the .pot file to be rebuilt because of dependencies.
* Update Spanish translationsJohn Dennis2010-03-091-75/+900
|
* Add Chinese Simplified (zh_CN) translationJohn Dennis2010-03-093-0/+1606
|
* update POTJohn Dennis2010-03-021-72/+867
|
* Make the CA a required component and configured by default.Rob Crittenden2010-03-021-26/+11
| | | | | | | | To install IPA without dogtag use the --selfsign option. The --ca option is now deprecated. 552995
* Run ipaserver under mod_wsgiJason Gerard DeRose2010-03-013-63/+54
|
* Consolidate to single WSGI entry pointJason Gerard DeRose2010-03-011-28/+53
|
* More Kannada translationsJohn Dennis2010-03-011-131/+138
|
* full Spanish translations as of 20100225John Dennis2010-03-011-20/+21
|
* Add more Spanish translationsJohn Dennis2010-02-261-83/+83
|
* Set proper dn in default automount locationNalin Dahyabhai2010-02-231-1/+1
|
* minor makefile cleanupJohn Dennis2010-02-221-2/+1
|
* fix i18n build problemJohn Dennis2010-02-221-2/+5
| | | | | | | | | | | | | | | There was a typo in install/po/Makefile.in which caused (some) of the .po files to be overwritten because the test to see if a po file existed had a typo in it. This patch also removes the unnecessary rebuilding of the pot which was happening when using the "all" target (the default). The pot file now must be manually remade, which is what we want. Added a new target "mo-files" to manually generate the .mo files. This is useful to run before checking in a new .po file just to assure it "compiles" and we don't have to discover this during a build.
* Add Spanish translationJohn Dennis2010-02-223-0/+659
|
* Add more Kannada translationsJohn Dennis2010-02-221-82/+127
|
* make update-pot will not touch pot file if msgid's are unmodifiedJohn Dennis2010-02-221-9/+16
| | | | | | | | | | | | | | | | | Formerly running 'make update-pot' would write an insignificantly different pot file even if the msgid's xgettext found were unmodfied. Now the result of running xgettext is compared to the existing pot file after adjusting for things like timestamps, and only copies the result of xgettext to the new pot file if there were differences. This will help eliminate git commits on the pot file if all one did was see if the pot file was up to date, if it was up to date git won't see any modifications. It used to be that timestamps would be different in the pot file just by virtue of checking if the pot file was current. fix exit status; replace POT with $(DOMAN).pot
* Add new Russian translation, update PolishJohn Dennis2010-02-225-52/+732
| | | | | | | | | | | | | | | Add new Russian translation. Update the Polish translation. Add count of how many po translations we have in msg-stats. Current translation statistics with this patch: ipa.pot has 133 messages. There are 5 po translation files. bn_IN: 14/133 10.5% 106 po untranslated, 13 missing, 119 untranslated id: 107/133 80.5% 13 po untranslated, 13 missing, 26 untranslated kn: 4/133 3.0% 116 po untranslated, 13 missing, 129 untranslated pl: 133/133 100.0% 0 po untranslated, 0 missing, 0 untranslated ru: 120/133 90.2% 0 po untranslated, 13 missing, 13 untranslated
* strip .po file suffix in translation statisticsJohn Dennis2010-02-191-3/+3
| | | | | | | | The goal is to get the statistics to line up in columns and not exceed an 80 character line which might cause wrapping. Removing .po suffix from the translation name gives us 3 extra characters. Formatting problems were observed when bn_IN.po was added.
* add Bengali India translationJohn Dennis2010-02-193-0/+608
|
* Add translation statisticsJohn Dennis2010-02-192-5/+33
| | | | | | | | | | | | | | The Makefile in install/po has a new target "msg-stats" which prints out statistics concerning the current pot and po files. Here is an example: % make msg-stats ipa.pot has 133 messages id.po: 107/133 80.5% 13 po untranslated, 13 missing, 26 untranslated kn.po: 4/133 3.0% 116 po untranslated, 13 missing, 129 untranslated pl.po: 120/133 90.2% 0 po untranslated, 13 missing, 13 untranslated Also update configure.ac to search for msgcmp, awk & sed programs.
* Add new translations (Polish,Indonesian,Kannada)John Dennis2010-02-196-80/+1363
| | | | | | | | | | Add 3 new translations for Polish, Indonesian, Kannada. Remove the dummy Italian translation (it.po), it's only purpose was to have some translation in the tarball so %{find_lang} wouldn't fail. Add a new file contributing_translators.txt so we can track our translators contributions and give them credit.
* Add default automount location. Auto-create auto.direct in new locations.Pavel Zuna2010-02-121-6/+10
|
* Make test_i18n.py diagnostics friendlierJohn Dennis2010-02-111-5/+9
|
* Add 1 intital language translationJohn Dennis2010-02-102-0/+605
| | | | | | | The %{find_lang} macro in the ipa.spec file will fail if there are no language translations causing the build to fail. This patch creates an Italian translation (in honor of Simo). The Italian translation is initially fully untranslated.
* Pass target locale to msginitJohn Dennis2010-02-102-7/+37
| | | | | | | | | | | msginit should have been passed the locale because the resulting .po file is parameterized from the locale. Also, if the target locale is not specified it defaults to the current locale. If the target locale is Engish msgid's are copied to their msgstr's resulting in a fully translated .po instead of a fully untranslated .po. Add some comments to better explain some of the cryptic sed commands.
* Add i18n testJohn Dennis2010-02-102-1/+96
|
* Add support for building internationalized translations.John Dennis2010-02-096-0/+976
| | | | | | | | | | | A new directory install/po has been added which contains all the translations for all files in IPA. The build has been agumented to build these files. Also the autogen.sh script was mostly replaced by autoreconf, the preferred method. The old autogen.sh sript also had some serious bugs in the way it compared versions which caused it to run old versions of some of the tools, using standared autoreconf is much better.
* Add A and PTR records during ipa-replica-prepareMartin Nagy2010-02-092-1/+25
| | | | Fixes #528996
* Get rid of ipapython.config in ipa-replica-prepareMartin Nagy2010-02-092-80/+36
| | | | | | | | | | Also get rid of functions get_host_name(), get_realm_name() and get_domain_name(). They used the old ipapython.config. Instead, use the variables from api.env. We also change them to bootstrap() and finalize() correctly. Additionally, we add the dns_container_exists() function that will be used in ipa-replica-prepare (next patch).
* Add ipa-dns-install scriptMartin Nagy2010-02-092-0/+185
| | | | Unfortunately, for now there is no --uninstall option.
* Add status option to ipactlRob Crittenden2010-02-091-1/+16
| | | | Resolves #503437
* - also ensure that krbCanonicalName is uniqueNalin Dahyabhai2010-02-051-0/+18
|
* - allow the KDC to read krbCanonicalNameNalin Dahyabhai2010-02-051-2/+2
|
* Set default log level in the *-manage utilities to ERROR and not NOTSETRob Crittenden2010-02-042-2/+2
|
* - pull in updated schema which adds the krbCanonicalName attributeNalin Dahyabhai2010-02-041-1/+15
|
* Fix sample IPA command example at end of installationRob Crittenden2010-02-031-1/+1
| | | | Resolves #531455
* Bring ipa-server-install man page up-to-date, fix some syntax errorsRob Crittenden2010-02-031-20/+30
| | | | | | | | | | | Remove a bunch of trailing spaces Add the --ca option Add the --no-host-dns option Add the --subject option Fix the one-character option for --no-ntp, should be -N not -n Add missing line break between --no-ntp and --uninstall Resolves #545260
* Remove some configuration files we create upon un-installationRob Crittenden2010-01-281-1/+6
| | | | | This is particularly important for Apache since we'd leave the web server handling unconfigured locations.
* Set BIND to use ldapi and use fake mnameMartin Nagy2010-01-211-1/+2
| | | | | | The fake_mname for now doesn't exists but is a feature that will be added in the near future. Since any unknown arguments to bind-dyndb-ldap are ignored, we are safe to use it now.
* Move some functions from ipa-server-install into installutilsMartin Nagy2010-01-211-54/+1
| | | | | We will need these functions in the new upcoming ipa-dns-install command.
* Only add an NTP SRV record if we really are setting up NTPMartin Nagy2010-01-213-5/+4
| | | | | | | The sample bind zone file that is generated if we don't use --setup-dns is also changed. Fixes #500238
* Use the dns plug-in for addition of records during installationMartin Nagy2010-01-213-113/+0
| | | | Fixes #528943
* Move api finalization in ipa-server-install after writing default.confMartin Nagy2010-01-211-23/+22
| | | | | We will need to have ipalib correctly configured before we start installing DNS entries with api.Command.dns.
* Fix merge issue, cut-and-paste errorRob Crittenden2010-01-211-2/+1
|
* User-defined certificate subjectsRob Crittenden2010-01-204-18/+64
| | | | | | | | | | | | | | | Let the user, upon installation, set the certificate subject base for the dogtag CA. Certificate requests will automatically be given this subject base, regardless of what is in the CSR. The selfsign plugin does not currently support this dynamic name re-assignment and will reject any incoming requests that don't conform to the subject base. The certificate subject base is stored in cn=ipaconfig but it does NOT dynamically update the configuration, for dogtag at least. The file /var/lib/pki-ca/profiles/ca/caIPAserviceCert.cfg would need to be updated and pki-cad restarted.
* Add DS migration plugin and password migration page.Pavel Zuna2010-01-209-0/+257
|