GitXplorerGitXplorer
i

ipa-scripts

public
1 stars
2 forks
0 issues

Commits

List of commits on branch master.
Unverified
7f525441da9f643f0cc95a51521a189fd8d886db

Remove workaround: package downgrades

iinfraredgirl committed 11 years ago
Unverified
8790b7dca9a6a31c03ae9646396e817379ddb7b1

Do not setup CA on replicas by default

iinfraredgirl committed 11 years ago
Unverified
905c783a02b81dc24864b98ac8b207b5da066cb9

Add workaround: package downgrades

iinfraredgirl committed 11 years ago
Unverified
20b2ccd6368e79eb3ea774efef76913f3789bc82

Remove workaround: install sssd from ipa-devel repo

iinfraredgirl committed 11 years ago
Unverified
34ba2b99ae839208947c9df3a167219694b4d858

Refactor yum commands

iinfraredgirl committed 11 years ago
Unverified
ef90602cb44903e38b24ef9a1968542685f47610

Add workaround: install sssd >= 1.10.92 from ipa-devel repo

iinfraredgirl committed 11 years ago

README

The README file for this repository.

ipa-scripts

Helper scripts for upstream development on the FreeIPA project

Workflow

Example scenarios

Build RPMs, install a server, run unit tests

Build RPMs from current master:
$ ./ipa-build.sh
Optionally, you can apply a git formatted patch on top of master:
$ ./ipa-build.sh --patch /path/to/patch
Install the server:
$ ./ipa-server.sh
Run unit tests:
$ ./ipa-test.sh

Install a server and a replica

Assuming:

  1. RPMs have already been built and are available at $GIT_DIR/dist/rpms/
  2. Server's fqdn is server.example.com and replica's fqdn is replica.example.com

(on server):
Install the server:
$ ./ipa-server.sh
Prepare the replica file:
$ ./ipa-replica-prepare.sh --replica replica.example.com

(on replica):
Install the replica:
$ ./ipa-replica-install.sh --master server.example.com

Install a server and a client

Assuming:

  1. RPMs have already been built and are available at $GIT_DIR/dist/rpms/
  2. Server's IP address is 10.10.10.10

(on server):
Install the server:
$ ./ipa-server.sh

(on client):
Install the client:
$ ./ipa-client.sh --server-ip 10.10.10.10