document the add_host_nickname branch changes
This commit is contained in:
parent
89655a141c
commit
701b182021
|
@ -13,11 +13,13 @@ In this document:
|
||||||
* <a href="#A9">(root method) directly on the server, manually, with root access</a>
|
* <a href="#A9">(root method) directly on the server, manually, with root access</a>
|
||||||
* <a href="#A10">(non-root method) directly on the server, manually, without root access</a>
|
* <a href="#A10">(non-root method) directly on the server, manually, without root access</a>
|
||||||
* <a href="#A11">(from-client method) install from the client to the server</a>
|
* <a href="#A11">(from-client method) install from the client to the server</a>
|
||||||
* <a href="#A12">special cases -- multiple gitolite instances</a>
|
* <a href="#A12">special cases -- multiple gitolite servers</a>
|
||||||
* <a href="#A13">upgrading</a>
|
* <a href="#A13">package method and root method</a>
|
||||||
* <a href="#A14">uninstalling</a>
|
* <a href="#A14">from-client method</a>
|
||||||
* <a href="#A15">cleaning out a botched install</a>
|
* <a href="#A15">upgrading</a>
|
||||||
* <a href="#A16">uninstalling gitolite completely</a>
|
* <a href="#A16">uninstalling</a>
|
||||||
|
* <a href="#A17">cleaning out a botched install</a>
|
||||||
|
* <a href="#A18">uninstalling gitolite completely</a>
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
|
@ -162,13 +164,16 @@ including *outputs* of the commands concerned.
|
||||||
|
|
||||||
<a name="A12"></a>
|
<a name="A12"></a>
|
||||||
|
|
||||||
### special cases -- multiple gitolite instances
|
### special cases -- multiple gitolite servers
|
||||||
|
|
||||||
With the first two methods (package or root methods) of installation, it's
|
<a name="A13"></a>
|
||||||
trivial to create multiple gitolite instances (say one for each department, on
|
|
||||||
some mega company-wide server). You can even do this without giving shell
|
#### package method and root method
|
||||||
access to the admins. Here's an example with just two "departments", and
|
|
||||||
their admins Alice and Bob:
|
With the first two methods of installation, it's trivial to create multiple
|
||||||
|
gitolite instances (say one for each department, on some mega company-wide
|
||||||
|
server). You can even do this without giving shell access to the admins.
|
||||||
|
Here's an example with just two "departments", and their admins Alice and Bob:
|
||||||
|
|
||||||
* create userids `webbrowser_repos` and `webserver_repos`
|
* create userids `webbrowser_repos` and `webserver_repos`
|
||||||
* ask Alice and Bob for their pubkeys; copy them to the respective home
|
* ask Alice and Bob for their pubkeys; copy them to the respective home
|
||||||
|
@ -185,7 +190,27 @@ to have a command line on the server, so don't give them the passwords if you
|
||||||
don't need to -- the pubkey will allow them to be gitolite admins on their
|
don't need to -- the pubkey will allow them to be gitolite admins on their
|
||||||
domain, and that's quite enough for normal operations.
|
domain, and that's quite enough for normal operations.
|
||||||
|
|
||||||
<a name="A13"></a>
|
<a name="A14"></a>
|
||||||
|
|
||||||
|
#### from-client method
|
||||||
|
|
||||||
|
Thanks to Matt Perzel, the easy-install command now takes an optional 4th
|
||||||
|
parameter, which is the "nickname" of the gitolite server. It gets defined in
|
||||||
|
`~/.ssh/config`, and if not used it defaults to "gitolite".
|
||||||
|
|
||||||
|
So if you used the following command to install gitolite to 2 different
|
||||||
|
servers:
|
||||||
|
|
||||||
|
./src/gl-easy-install -q git my.1st.git.server admin_user1 gitolite_server_1
|
||||||
|
./src/gl-easy-install -q git my.2nd.git.server admin_user1 gitolite_server_2
|
||||||
|
|
||||||
|
you will find that `~/gitolite_server_1-admin` and `~/gitolite_server_2-admin`
|
||||||
|
have been created as respective clones. Or you can re-clone elsewhere:
|
||||||
|
|
||||||
|
cd ~/admin1; git clone gitolite_server_1:gitolite-admin.git
|
||||||
|
cd ~/admin2; git clone gitolite_server_2:gitolite-admin.git
|
||||||
|
|
||||||
|
<a name="A15"></a>
|
||||||
|
|
||||||
### upgrading
|
### upgrading
|
||||||
|
|
||||||
|
@ -197,11 +222,11 @@ arguments!
|
||||||
Also, remember that some new features may require additional settings in your
|
Also, remember that some new features may require additional settings in your
|
||||||
`~/.gitolite.rc` file.
|
`~/.gitolite.rc` file.
|
||||||
|
|
||||||
<a name="A14"></a>
|
<a name="A16"></a>
|
||||||
|
|
||||||
### uninstalling
|
### uninstalling
|
||||||
|
|
||||||
<a name="A15"></a>
|
<a name="A17"></a>
|
||||||
|
|
||||||
#### cleaning out a botched install
|
#### cleaning out a botched install
|
||||||
|
|
||||||
|
@ -219,7 +244,7 @@ here's how to clean the slate.
|
||||||
* remove `~/.gitolite`, `~/.gitolite.rc` and
|
* remove `~/.gitolite`, `~/.gitolite.rc` and
|
||||||
`~/repositories/gitolite-admin.git`
|
`~/repositories/gitolite-admin.git`
|
||||||
|
|
||||||
<a name="A16"></a>
|
<a name="A18"></a>
|
||||||
|
|
||||||
#### uninstalling gitolite completely
|
#### uninstalling gitolite completely
|
||||||
|
|
||||||
|
|
|
@ -13,10 +13,9 @@ In this document:
|
||||||
* <a href="#A9">files on client</a>
|
* <a href="#A9">files on client</a>
|
||||||
* <a href="#A10">why two keys on client</a>
|
* <a href="#A10">why two keys on client</a>
|
||||||
* <a href="#A11">some other tips and tricks</a>
|
* <a href="#A11">some other tips and tricks</a>
|
||||||
* <a href="#A12">two gitolite servers to manage?</a>
|
* <a href="#A12">giving shell access to gitolite users</a>
|
||||||
* <a href="#A13">giving shell access to gitolite users</a>
|
* <a href="#A13">losing your admin key</a>
|
||||||
* <a href="#A14">losing your admin key</a>
|
* <a href="#A14">simulating ssh-copy-id</a>
|
||||||
* <a href="#A15">simulating ssh-copy-id</a>
|
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
|
@ -421,28 +420,6 @@ That should do it.
|
||||||
|
|
||||||
<a name="A12"></a>
|
<a name="A12"></a>
|
||||||
|
|
||||||
#### two gitolite servers to manage?
|
|
||||||
|
|
||||||
* they can have the same key; no harm there (example, sitaram.pub)
|
|
||||||
|
|
||||||
* instead of just one ssh/config para, you now have two (assuming that the
|
|
||||||
remote user on both machines is called "git"):
|
|
||||||
|
|
||||||
host gitolite
|
|
||||||
user git
|
|
||||||
hostname server
|
|
||||||
identityfile ~/.ssh/sitaram
|
|
||||||
|
|
||||||
host gitolite2
|
|
||||||
user git
|
|
||||||
hostname server2
|
|
||||||
identityfile ~/.ssh/sitaram
|
|
||||||
|
|
||||||
* now access one server's repos as `gitolite:reponame.git` and the other
|
|
||||||
server's repos as `gitolite2:reponame.git`.
|
|
||||||
|
|
||||||
<a name="A13"></a>
|
|
||||||
|
|
||||||
#### giving shell access to gitolite users
|
#### giving shell access to gitolite users
|
||||||
|
|
||||||
We've managed (thanks to an idea from Jesse Keating) to make it possible for a
|
We've managed (thanks to an idea from Jesse Keating) to make it possible for a
|
||||||
|
@ -469,7 +446,7 @@ access would not manage to get himself shell access.
|
||||||
Giving someone shell access requires that you should have shell access in the
|
Giving someone shell access requires that you should have shell access in the
|
||||||
first place, so the simplest way is to enable it from the server side only.
|
first place, so the simplest way is to enable it from the server side only.
|
||||||
|
|
||||||
<a name="A14"></a>
|
<a name="A13"></a>
|
||||||
|
|
||||||
#### losing your admin key
|
#### losing your admin key
|
||||||
|
|
||||||
|
@ -479,7 +456,7 @@ gitolite-admin repository with a fresh key, take a look at the
|
||||||
of course. The top of the script has useful information on how to use it and
|
of course. The top of the script has useful information on how to use it and
|
||||||
what it needs.
|
what it needs.
|
||||||
|
|
||||||
<a name="A15"></a>
|
<a name="A14"></a>
|
||||||
|
|
||||||
#### simulating ssh-copy-id
|
#### simulating ssh-copy-id
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue