* gitosis configuration question
@ 2011-03-08 18:46 Hillel (Sabba) Markowitz
2011-03-08 20:27 ` Drew Northup
2011-03-08 21:07 ` John Feuerstein
0 siblings, 2 replies; 5+ messages in thread
From: Hillel (Sabba) Markowitz @ 2011-03-08 18:46 UTC (permalink / raw)
To: git
When setting up gitosis, I want to have multiple repos available for a
particular group. However, the list of repos is too big for a single
line. The example.conf does not indicate if this is allowed. That is,
the example that it gives is
[group mygroup]
members = Bob Carol Ted Alice
writable = base cover pot lid
Is the following allowable?
[group new group]
members = Bob Carol Ted
members = Alice
writable = base
cover
pot
lid
Of course the actual list is much larger.
Also, from the example, would the following be allowed
[repo cover]
members = Bob Carol Ted Alice
Does the last example make the repo cover writable to that group?
--
Sabba - סבא הלל - Hillel
Hillel (Sabba) Markowitz | Said the fox to the fish, "Join me ashore"
SabbaHillel@gmail.com | The fish are the Jews, Torah is our water
http://sabbahillel.blogspot.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: gitosis configuration question
2011-03-08 18:46 gitosis configuration question Hillel (Sabba) Markowitz
@ 2011-03-08 20:27 ` Drew Northup
2011-03-08 20:53 ` Jens Lehmann
2011-03-08 21:51 ` Hillel (Sabba) Markowitz
2011-03-08 21:07 ` John Feuerstein
1 sibling, 2 replies; 5+ messages in thread
From: Drew Northup @ 2011-03-08 20:27 UTC (permalink / raw)
To: Hillel (Sabba) Markowitz; +Cc: git
On Tue, 2011-03-08 at 13:46 -0500, Hillel (Sabba) Markowitz wrote:
> When setting up gitosis, I want to have multiple repos available for a
> particular group. However, the list of repos is too big for a single
> line. The example.conf does not indicate if this is allowed. That is,
> the example that it gives is
Hillel,
Gitosis is basically no longer supported...
For Reference:
http://article.gmane.org/gmane.comp.version-control.git/160230
I hope this helps!
--
-Drew Northup
________________________________________________
"As opposed to vegetable or mineral error?"
-John Pescatore, SANS NewsBites Vol. 12 Num. 59
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: gitosis configuration question
2011-03-08 20:27 ` Drew Northup
@ 2011-03-08 20:53 ` Jens Lehmann
2011-03-08 21:51 ` Hillel (Sabba) Markowitz
1 sibling, 0 replies; 5+ messages in thread
From: Jens Lehmann @ 2011-03-08 20:53 UTC (permalink / raw)
To: Drew Northup; +Cc: Hillel (Sabba) Markowitz, git
Am 08.03.2011 21:27, schrieb Drew Northup:
>
> On Tue, 2011-03-08 at 13:46 -0500, Hillel (Sabba) Markowitz wrote:
>> When setting up gitosis, I want to have multiple repos available for a
>> particular group. However, the list of repos is too big for a single
>> line. The example.conf does not indicate if this is allowed. That is,
>> the example that it gives is
>
> Hillel,
> Gitosis is basically no longer supported...
Having said that: If you want to use it nonetheless, try using
backslashes:
[group new group]
members = Bob Carol Ted \
Alice
writable = base \
cover \
pot \
lid
Works fine at my dayjob.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: gitosis configuration question
2011-03-08 18:46 gitosis configuration question Hillel (Sabba) Markowitz
2011-03-08 20:27 ` Drew Northup
@ 2011-03-08 21:07 ` John Feuerstein
1 sibling, 0 replies; 5+ messages in thread
From: John Feuerstein @ 2011-03-08 21:07 UTC (permalink / raw)
To: Hillel (Sabba) Markowitz; +Cc: git
> [group mygroup]
> members = Bob Carol Ted Alice
> writable = base cover pot lid
>
> Is the following allowable?
>
> [group new group]
> members = Bob Carol Ted
> members = Alice
> writable = base
> cover
> pot
> lid
Gitosis is written in Python and uses the ConfigParser[1] module.
It allows line continuations in the style of RFC 822, see [2]:
foo = bar
baz
qux
Hope this helps,
John
[1] http://docs.python.org/library/configparser.html
[2] http://tools.ietf.org/html/rfc822.html#section-3.1.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: gitosis configuration question
2011-03-08 20:27 ` Drew Northup
2011-03-08 20:53 ` Jens Lehmann
@ 2011-03-08 21:51 ` Hillel (Sabba) Markowitz
1 sibling, 0 replies; 5+ messages in thread
From: Hillel (Sabba) Markowitz @ 2011-03-08 21:51 UTC (permalink / raw)
To: Drew Northup; +Cc: git
On Tue, Mar 8, 2011 at 3:27 PM, Drew Northup <drew.northup@maine.edu> wrote:
>
> On Tue, 2011-03-08 at 13:46 -0500, Hillel (Sabba) Markowitz wrote:
> > When setting up gitosis, I want to have multiple repos available for a
> > particular group. However, the list of repos is too big for a single
> > line. The example.conf does not indicate if this is allowed. That is,
> > the example that it gives is
>
> Hillel,
> Gitosis is basically no longer supported...
>
> For Reference:
> http://article.gmane.org/gmane.comp.version-control.git/160230
>
> I hope this helps!
>
> --
> -Drew Northup
> ________________________________________________
> "As opposed to vegetable or mineral error?"
> -John Pescatore, SANS NewsBites Vol. 12 Num. 59
>
Thanks. I had not been aware that it had been replaced with gitolite.
I will have to look it up and see what is available.
--
Sabba - סבא הלל - Hillel
Hillel (Sabba) Markowitz | Said the fox to the fish, "Join me ashore"
SabbaHillel@gmail.com | The fish are the Jews, Torah is our water
http://sabbahillel.blogspot.com
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-03-08 21:51 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-08 18:46 gitosis configuration question Hillel (Sabba) Markowitz
2011-03-08 20:27 ` Drew Northup
2011-03-08 20:53 ` Jens Lehmann
2011-03-08 21:51 ` Hillel (Sabba) Markowitz
2011-03-08 21:07 ` John Feuerstein
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).