Re: [gitorious] quotas

2013-01-24 Thread Marius Mårnes Mathiesen
Ken Dreyer writes: Hi folks, I just had a developer fill up my Gitorious partition with a very large git repo. The problem was compounded by the fact that I neglected to put /var/gitorious on its own partition... whoops. I remedied that in hindsight :) Ouch! I'm trying to brainstorm the

Re: [gitorious] (script/poller)`gem_original_require': no such file to load -- daemons (LoadError)

2013-01-24 Thread Marius Mårnes Mathiesen
samuk Henrique writes: The error above occurs when i try to run the poller start script (even with -f option), but I already executed the command `gem install daemons`. Also when i run `bundle install` it returns: Errno::EPERM: Operation not permitted -

Re: [gitorious] quotas

2013-01-24 Thread anapsix
Would a pre-receive hook get file sizes from client when push is initiated? If so, calculating available space (quota allowance) and rejecting push based on that would be trivial.. -- -- To post to this group, send email to gitorious@googlegroups.com To unsubscribe from this group, send email

Re: [gitorious] quotas

2013-01-24 Thread Ken Dreyer
On Thu, Jan 24, 2013 at 4:14 AM, Marius Mårnes Mathiesen marius.mathie...@gmail.com wrote: Another approach could be to use eg. btrfs and set up subvolumes for new projects in the repository root, assuming you're running with un-sharded paths. Let's say a user creates a project gitorious and

Re: [gitorious] quotas

2013-01-24 Thread Ken Dreyer
On Thu, Jan 24, 2013 at 6:35 AM, anapsix anastas.seme...@gmail.com wrote: Would a pre-receive hook get file sizes from client when push is initiated? If so, calculating available space (quota allowance) and rejecting push based on that would be trivial.. Yes, I was wondering the same thing.