List of commits:
Subject Hash Author Date (UTC)
More debug help 74f45188bffd7630d0c08648433749a3ef23c9af Catalin(ux) M. BOIE 2021-11-15 17:34:58
worker: Fixed a stupid bug leading to wrong distro upgrade command d9bc215557cd9a6f30dbc90434dc3aba46e39979 Catalin(ux) M. BOIE 2021-11-14 16:16:43
Silence an 'unpack' exception when we do not have enough bytes. add562b15d94501a0585001db526b241c251b6e6 Catalin(ux) M. BOIE 2021-11-14 11:25:01
Run struct and fixes under the same lock d046942317c73351473a18eb833318aec3f4d907 Catalin(ux) M. BOIE 2021-11-14 08:18:05
spec file small updates 7aef02df6ed5f6ce4d39cd2a926a79bcdc1a3c5a Catalin(ux) M. BOIE 2021-11-14 06:33:35
Typo b0087441b4d637c7bf6ed64b6c243ad2ec8f1493 Catalin(ux) M. BOIE 2021-11-14 06:15:00
spec: Added 'Replaces: rocketgit' to easy upgrade, fixed fixfiles c380f40fe86ddf70b99030a6f0be93d91137b909 Catalin(ux) M. BOIE 2021-11-14 06:14:25
Fixed non debug case of rg_debug_html 523f6784671e5f810b8435ad66ad21ea548219d8 Catalin(ux) M. BOIE 2021-11-14 05:58:37
Fix rate limit types 0de3ee35d0d0e46521d64a596232765fb5d618a3 Catalin(ux) M. BOIE 2021-11-14 05:58:03
commented request_slowlog_timeout 505877b567807e11f25695de58725f316f10043e Catalin(ux) M. BOIE 2021-11-13 17:32:46
systemctl git.socket rethinking 3c71e58760f6abc69db661098840c277d4fc13fb Catalin(ux) M. BOIE 2021-11-13 17:25:52
PHP FALSE verus NULL correction 42f8bc560a0ec2203f0974e203e6c33ec26aa983 Catalin(ux) M. BOIE 2021-11-13 16:31:33
.spec: some minor corrections 70c3a23f507d57c729e0d710ec99060e0e88c238 Catalin(ux) M. BOIE 2021-11-13 16:22:11
Rework locking for struct update da8c09e15e485563d9573de3aff2a7ad999d2527 Catalin(ux) M. BOIE 2021-11-13 16:15:45
gpg: specify rsa 4096 instead of default because it does not work on f34 eccdc02a82ce87f426eebc995988f907d914a3c7 Catalin(ux) M. BOIE 2021-11-13 16:15:15
Cosmetic 0b0a9f2d1922d4d28052c6b1fbe737cc4302ce73 Catalin(ux) M. BOIE 2021-11-13 16:14:37
PHP8 corrections 51f2cabc7298b5006bf8f0d215c1a338bee92cdb Catalin(ux) M. BOIE 2021-11-13 16:13:13
.spec: require openldap-servers to test LDAP 84e469d5d9fe81509ff3421bdb6517786ea96628 Catalin(ux) M. BOIE 2021-11-06 20:09:07
Cosmetic a4543d8257235dc5c93dd5eecdfb9caa3c2acafa Catalin(ux) M. BOIE 2021-11-02 07:04:36
Fixed partion create logic c8897c0e6f31a0ab917d2320018c5920e0abd36b Catalin(ux) M. BOIE 2021-11-02 06:01:58
Commit 74f45188bffd7630d0c08648433749a3ef23c9af - More debug help
Author: Catalin(ux) M. BOIE
Author date (UTC): 2021-11-15 17:34
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2021-11-15 17:34
Parent(s): d9bc215557cd9a6f30dbc90434dc3aba46e39979
Signing key:
Tree: 776f4452700c2c193f4f199787387d9695968713
File Lines added Lines deleted
TODO 4 0
scripts/worker.php 2 1
File TODO changed (mode: 100644) (index 26efbee..a1757bd)
60 60 Seems we are cloning the namespace, before knowing if the user can push! Seems we are cloning the namespace, before knowing if the user can push!
61 61
62 62 == FOR OTHER RELEASE == == FOR OTHER RELEASE ==
63 [ ] Validate that URL is UTF-8.
64 [ ] worker: prevent http:// instalation of packages.
65 [ ] SELinux: upgrade: I think I remove the module after the installation of
66 the new one!
63 67 [ ] We may want to not log at all the first line when a bot connects and the load is big. [ ] We may want to not log at all the first line when a bot connects and the load is big.
64 68 [ ] dnf install: [ ] dnf install:
65 69 Error in POSTIN scriptlet in rpm package catab+rocketgit Error in POSTIN scriptlet in rpm package catab+rocketgit
File scripts/worker.php changed (mode: 100644) (index 073a328..a8d4a1e)
... ... function start_worker($job)
1291 1291 rg_log_debug('clone: ' . print_r($r, TRUE)); rg_log_debug('clone: ' . print_r($r, TRUE));
1292 1292 @file_put_contents($job['main'] . '/root/T_clone', time() - $_s); @file_put_contents($job['main'] . '/root/T_clone', time() - $_s);
1293 1293 if ($r['ok'] !== 1) { if ($r['ok'] !== 1) {
1294 rg_log('Cannot clone: ' . $r['stderr']);
1294 1295 $reason = 'git clone error; contact admin'; $reason = 'git clone error; contact admin';
1295 1296 $reason2 = $r['errmsg'] . ': ' . $r['stderr']; $reason2 = $r['errmsg'] . ': ' . $r['stderr'];
1296 1297 break; break;
 
... ... function start_worker($job)
1626 1627 rg_exec('umount ' . $emain . '/root', '', FALSE, FALSE, FALSE); rg_exec('umount ' . $emain . '/root', '', FALSE, FALSE, FALSE);
1627 1628
1628 1629 // Any error above must retrigger the build on other worker // Any error above must retrigger the build on other worker
1629 if ($err) {
1630 if (!empty($reason)) {
1630 1631 rg_log('error: ' . $reason); rg_log('error: ' . $reason);
1631 1632 rg_log('error2: ' . $reason2); rg_log('error2: ' . $reason2);
1632 1633 @file_put_contents($job['main'] . '/error.log', $reason); @file_put_contents($job['main'] . '/error.log', $reason);
Date/time (UTC) Type Misc Labels
2021-11-15 17:43 build fedora-35-x86_64 worker/r1 builder/color=fff worker_elap/159s wait_time/273s date/2021-11-15 time/17:35
2021-11-15 17:39 build fedora-34-x86_64 worker/r1 builder/color=fff worker_elap/206s wait_time/1s date/2021-11-15 time/17:35
2021-11-15 17:46 build rocky-8-x86_64 worker/r1 builder/color=fff worker_elap/136s wait_time/498s date/2021-11-15 time/17:35
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