I just installed a Gerrit server and wish to get rid of the Need Verified +1 (Verified) permission. Our team would only like to +2 changes instead of doing both things.

I tried following the steps at http://review.coreboot.org/Documentation/access-control.html#category_CVRW

DELETE FROM approval_categories      WHERE category_id = 'VRIF';
DELETE FROM approval_category_values WHERE category_id = 'VRIF';

But I'm running a H2 database and I guess I'm just not sure exactly how to edit it without using Java.

link|improve this question

67% accept rate
I don't know Gerrit, but I guess you can access the database from the H2 Console if you know the database URL, user name, and password. – Thomas Mueller Sep 1 '11 at 14:33
Thanks for this. Sorry, I should have specified I'm not using Windows. This is running on Ubuntu Server 11 64-bit – Frank Sposaro Sep 1 '11 at 15:12
I downloaded the .zip and tried to issue java -cp h2*.jar org.h2.tools.Shell and is asked me for the URL and Driver, both of which I am unsure of. Gerrit listens on port 8080 by default, but I don't know if the actual H2 database is tied to that port. – Frank Sposaro Sep 1 '11 at 15:20
feedback

1 Answer

up vote 3 down vote accepted

You can use the gerrit gsql command to get interactive query support directly against the underlying SQL database: http://review.coreboot.org/Documentation/cmd-gsql.html

ssh -p 29418 review.example.com gerrit gsql

There you can issue the DELETE commands:

DELETE FROM approval_categories      WHERE category_id = 'VRIF';
DELETE FROM approval_category_values WHERE category_id = 'VRIF';
link|improve this answer
1  
Thank you. I did this and it works. – Frank Sposaro Oct 25 '11 at 17:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.