List of commits:
Subject Hash Author Date (UTC)
Some ssh and anonymous rights fixes. 9bb20c348a4933056d8f67bd151eb35cf0325835 Catalin(ux) M. BOIE 2011-07-05 22:00:00
Another round of fixes. 45749c46f79f75b29d83ee2d115f987c7765e8c4 Catalin(ux) M. BOIE 2011-07-05 20:01:10
Another round of bulk updates. 6077961d5c443b8a830dc08b3b0ebf37eaf594b3 Catalin(ux) M. BOIE 2011-07-04 22:12:40
Bump version to 0.7. e44064dab5c6f2fa625bb121483a51ec1960cad9 Catalin(ux) M. BOIE 2011-07-03 16:26:47
Lots of changes. 8876190d55995ed98a528edc786e0e9136a0535d Catalin(ux) M. BOIE 2011-07-03 00:03:42
Make %setup quiet as rpmlint told me. b272b9915498fb0a811be2e2687554bbaf887bf1 Catalin(ux) M. BOIE 2011-07-01 03:26:57
Bump version to 0.3 f626f3c66b7b51af2013e16e954e945ba84c12bb Catalin(ux) M. BOIE 2011-07-01 03:25:44
Added logrotate support b827ee7c179d5b72f6ac3ac255edb6de6decb91a Catalin(ux) M. BOIE 2011-07-01 03:25:13
More bulk updates 6dc2b24ebde74bbb64ef2893e2ddb8b7b9456219 Catalin(ux) M. BOIE 2011-07-01 03:16:01
Bulk changes e3771b115feb49698383730893ced1bac5670cac Catalin(ux) M. BOIE 2011-06-29 21:50:03
Ignore Changelog-last file. 32260f93743a577cbaf7cefd335517e4a42edcf0 Catalin(ux) M. BOIE 2011-06-27 21:20:53
Ignore *.out files. 265ba83a2df891cdcc7b35801a46cfc2583983ee Catalin(ux) M. BOIE 2011-06-27 21:20:23
Added shadow-utils as dependency fot user/groupadd. f5816c0bd992881439706041986a3a178eaf69bd Catalin(ux) M. BOIE 2011-06-27 21:08:32
More rpm fixes. 701daf680d15dc69a2a8709f6de5167b55ce02c2 Catalin(ux) M. BOIE 2011-06-27 21:01:24
Add rocketgit user and group. 1b2f9e1e16ed98d5eadd575a87bf0ff738d710c4 Catalin(ux) M. BOIE 2011-06-27 20:59:59
Other bulk stuff. 6cbfef4abe177ad8dad6bdc5ba3fb1d0e2270a9b Catalin(ux) M. BOIE 2011-06-27 19:50:32
Ignore *.log files. a87bc5c123478e429f430684a0962c8301e7cf90 Catalin(ux) M. BOIE 2011-06-27 19:49:58
Exclude from tar some bogus files. 77766d5276226ab0d6a03985a462daef3c91856a Catalin(ux) M. BOIE 2011-06-27 19:49:26
Lots of stuff. c1778920e66c4561f63632030fff66bff71d4395 Catalin(ux) M. BOIE 2011-06-27 17:33:14
Another round of fixes. 3c6df6f5a6053d322f93814b3a8ccc8555951d9f Catalin(ux) M. BOIE 2011-05-04 03:22:27
Commit 9bb20c348a4933056d8f67bd151eb35cf0325835 - Some ssh and anonymous rights fixes.
Author: Catalin(ux) M. BOIE
Author date (UTC): 2011-07-05 22:00
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2011-07-05 22:00
Parent(s): 45749c46f79f75b29d83ee2d115f987c7765e8c4
Signing key:
Tree: 45851ad3fed379c7bffafcdfd654e435bfe74094
File Lines added Lines deleted
README 1 1
inc/keys.inc.php 1 1
inc/repo.inc.php 2 1
inc/rights.inc.php 5 3
rocketgit.spec.in 1 1
tests/keys.php 2 2
File README changed (mode: 100644) (index 436de0b..8552860)
56 56 # setsebool -P httpd_can_network_memcache on # setsebool -P httpd_can_network_memcache on
57 57 # setsebool -P httpd_can_sendmail on # setsebool -P httpd_can_sendmail on
58 58
59 . Edit firewall to permit port git, http and https
59 . Edit firewall to permit port ssh, git, http and https
File inc/keys.inc.php changed (mode: 100644) (index d3f2811..c47dedb)
... ... function rg_keys_regen($db)
158 158 } }
159 159 while (($row = rg_sql_fetch_array($res))) { while (($row = rg_sql_fetch_array($res))) {
160 160 rg_log("Writing key [" . $row['key'] . "] for uid " . $row['uid']); rg_log("Writing key [" . $row['key'] . "] for uid " . $row['uid']);
161 $buf = "command=\"/usr/bin/php " . $rg_scripts . "/remote.php"
161 $buf = "command=\"/usr/bin/php " . $rg_scripts . "/scripts/remote.php"
162 162 . " " . $row['uid'] . "\"" . " " . $row['uid'] . "\""
163 163 . "," . $rg_ssh_paras . "," . $rg_ssh_paras
164 164 . " " . $row['key'] . "\n"; . " " . $row['key'] . "\n";
File inc/repo.inc.php changed (mode: 100644) (index 20d39e9..fbd06b8)
... ... function rg_repo_allow($db, $ri, $rg_ui, $needed_rights)
150 150 } else { } else {
151 151 $rr = rg_repo_rights_get($db, $ri, $rg_ui['uid'], 0); $rr = rg_repo_rights_get($db, $ri, $rg_ui['uid'], 0);
152 152 if ($rr['ok'] != 1) { if ($rr['ok'] != 1) {
153 rg_repo_set_error("No access!");
153 rg_repo_set_error("Cannot get rights!");
154 154 return FALSE; return FALSE;
155 155 } }
156 156 $db_rights = $rr['rights']; $db_rights = $rr['rights'];
 
... ... function rg_repo_rights_get($db, $ri, $uid, $flags)
485 485
486 486 $ret['rights'] = rg_rights_combine($dr, $r['rights']); $ret['rights'] = rg_rights_combine($dr, $r['rights']);
487 487 rg_log("\tFinal rights($dr + " . $r['rights'] . ")=" . $ret['rights']); rg_log("\tFinal rights($dr + " . $r['rights'] . ")=" . $ret['rights']);
488 $ret['ok'] = 1;
488 489
489 490 return $ret; return $ret;
490 491 } }
File inc/rights.inc.php changed (mode: 100644) (index 9d20553..d102dba)
... ... function rg_rights_get($db, $type, $obj_id, $uid)
164 164
165 165 $ret['ok'] = 1; $ret['ok'] = 1;
166 166 $ret['exists'] = 0; $ret['exists'] = 0;
167 $row = rg_sql_fetch_array($res);
167 $rows = rg_sql_num_rows($res);
168 if ($rows > 0)
169 $row = rg_sql_fetch_array($res);
168 170 rg_sql_free_result($res); rg_sql_free_result($res);
169 if (isset($row['rights'])) {
171 if ($rows > 0) {
170 172 $ret['rights'] = $row['rights']; $ret['rights'] = $row['rights'];
171 173 $ret['exists'] = 1; $ret['exists'] = 1;
172 174 } }
173 175
174 rg_log("\tRights: " . $ret['rights']);
176 rg_log("\tdb rights: " . $ret['rights'] . ".");
175 177
176 178 return $ret; return $ret;
177 179 } }
File rocketgit.spec.in changed (mode: 100644) (index df7e6d9..972c810)
... ... Light and fast Git hosting solution, similar with Gitorious/GitHub/etc.
17 17
18 18 %pre %pre
19 19 getent group rocketgit || groupadd -r rocketgit getent group rocketgit || groupadd -r rocketgit
20 getent passwd rocketgit || useradd -r -g rocketgit -s /sbin/nologin -m -d /home/rocketgit -c "RocketGit user" rocketgit
20 getent passwd rocketgit || useradd -r -g rocketgit -s /bin/bash -m -d /home/rocketgit -c "RocketGit user" rocketgit
21 21 semanage fcontext -a -t httpd_log_t "/var/log/rocketgit-web(/.*)?" || : semanage fcontext -a -t httpd_log_t "/var/log/rocketgit-web(/.*)?" || :
22 22
23 23 %post %post
File tests/keys.php changed (mode: 100644) (index cda4317..3ed68e7)
... ... if ($c === FALSE) {
56 56 echo "Cannot regenerate file: " . rg_keys_error() . "!\n"; echo "Cannot regenerate file: " . rg_keys_error() . "!\n";
57 57 exit(1); exit(1);
58 58 } }
59 $e = "command=\"/usr/bin/php " . $rg_scripts . "/remote.php 1\"," . $rg_ssh_paras . " aaa 'bbb' first_key\n"
60 . "command=\"/usr/bin/php " . $rg_scripts . "/remote.php 2\"," . $rg_ssh_paras . " aaa 'bbb' second_key\n";
59 $e = "command=\"/usr/bin/php " . $rg_scripts . "/scripts/remote.php 1\"," . $rg_ssh_paras . " aaa 'bbb' first_key\n"
60 . "command=\"/usr/bin/php " . $rg_scripts . "/scripts/remote.php 2\"," . $rg_ssh_paras . " aaa 'bbb' second_key\n";
61 61 if (strcmp($c, $e) != 0) { if (strcmp($c, $e) != 0) {
62 62 echo "Generated file does not seems OK\n"; echo "Generated file does not seems OK\n";
63 63 exit(1); exit(1);
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/catalinux/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/catalinux/rocketgit

Clone this repository using git:
git clone git://git.rocketgit.com/user/catalinux/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main