Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Cosmetic | cabc1c5cec8943d614b98b7f0ca8599cf5e2682c | Catalin(ux) M. BOIE | 2021-10-21 17:16:33 |
Install dependencies before trying to build the rpm | 4df3dbf7e1f79b0c616d8dbeba8b1b30c9474f17 | Catalin(ux) M. BOIE | 2021-10-21 16:49:37 |
duilder fixes | 2afa9250c1da72997092847df5a2a18cddb8ccb9 | Catalin(ux) M. BOIE | 2021-10-21 15:59:24 |
worker: move dependencies path | 2e8902609a2d94e2eba5fb8ccda85de90ae23fb5 | Catalin(ux) M. BOIE | 2021-10-21 15:22:25 |
Lots of changes, too hard to split them; sorry about it | 77c26d9ce82d452ebdc1b609d71c5e931768805c | Catalin(ux) M. BOIE | 2021-10-21 06:05:51 |
Lots of changes to the rg daemons | 8b68e3967f650953d368dfb5ca5cdd2927e9c0de | Catalin(ux) M. BOIE | 2021-10-21 06:05:03 |
Hooks: Mostly cosmetic | 3633af7d937f7c9c7c0c33cdc3ad9897aab8becd | Catalin(ux) M. BOIE | 2021-10-21 06:04:02 |
Added RGFS for packages | e0573aadcff81694d38ee448326964bddf0c3c13 | Catalin(ux) M. BOIE | 2021-10-21 06:02:37 |
Container changes | cb3c4a84e2abc3a4b206925b60fdf4524e0379de | Catalin(ux) M. BOIE | 2021-10-21 06:01:25 |
Lots of html/css changes | bde37682fac058f68806b3342ba043a2f72458ba | Catalin(ux) M. BOIE | 2021-10-21 06:00:29 |
Lots of tests updated | 40e01f4db4d341d4e2dceb4407ea7d6ff523ac9e | Catalin(ux) M. BOIE | 2021-10-21 06:00:02 |
Big changes to add rpm packages repositories | 5e07ff440d6ad7f0ef9900a634b2f39f0e7fa1e4 | Catalin(ux) M. BOIE | 2021-10-21 05:59:26 |
Cosmetic | 02376344f7d7d321d824ab7978de2ad49c007167 | Catalin(ux) M. BOIE | 2021-05-23 12:57:06 |
Added FIDO2 support for SSH | 04186abe13896ad4f4ea7126691d0a2b1798de1a | Catalin(ux) M. BOIE | 2021-05-23 12:30:43 |
ssh: show the id of the key both on web and when connecting | ab95ccfa2819d6ac9f427209ee61c75aad8a3661 | Catalin(ux) M. BOIE | 2021-05-23 10:52:44 |
Some events are doing some queries, and we need to cover them in transaction, not only the subevents | 4768ffec303961971cc0c3732a24e858f47dd381 | Catalin(ux) M. BOIE | 2020-12-15 07:33:36 |
Added rate limit for ssh and git connections | b667130e6c5721a3d30193863a5defd8bbff50f1 | Catalin(ux) M. BOIE | 2020-11-30 10:49:27 |
cosmetic | abe44edadda9da7c639b7bd8c9e13e6058555669 | Catalin(ux) M. BOIE | 2020-11-30 10:21:01 |
gpg functions and test | ecb9e05c99a2b73edfba5014329e362d8c6e9246 | Catalin(ux) M. BOIE | 2020-11-09 07:38:11 |
Stats page is not rendered for bots. | 29ca3f62ac460b64eb0a10fbb8bdfdf4a1767dc5 | Catalin(ux) M. BOIE | 2020-10-13 05:48:43 |
File | Lines added | Lines deleted |
---|---|---|
scripts/worker.php | 1 | 5 |
File scripts/worker.php changed (mode: 100644) (index 9839920..57a5af0) | |||
... | ... | function start_worker($job) | |
1446 | 1446 | . ' if [ "${?}" != "0" ]; then' . "\n" | . ' if [ "${?}" != "0" ]; then' . "\n" |
1447 | 1447 | . ' ERR="Cannot disable network access for build user"' . "\n" | . ' ERR="Cannot disable network access for build user"' . "\n" |
1448 | 1448 | . ' fi' . "\n" | . ' fi' . "\n" |
1449 | . ' iptables -I OUTPUT -m owner --uid-owner build2 -j REJECT' . "\n" | ||
1450 | . ' if [ "${?}" != "0" ]; then' . "\n" | ||
1451 | . ' ERR="Cannot disable network access for build2 user"' . "\n" | ||
1452 | . ' fi' . "\n" | ||
1453 | 1449 | . 'fi' . "\n" | . 'fi' . "\n" |
1454 | 1450 | . "\n" | . "\n" |
1455 | 1451 | . 'while [ "${ERR}" = "" ]; do' . "\n" | . 'while [ "${ERR}" = "" ]; do' . "\n" |
... | ... | function start_worker($job) | |
1479 | 1475 | . "\n" | . "\n" |
1480 | 1476 | . ' rm -f ~/rg_op.err # it was owned by build user till now' . "\n" | . ' rm -f ~/rg_op.err # it was owned by build user till now' . "\n" |
1481 | 1477 | . ' # Moving everything to build2 dir. TODO: Why?' . "\n" | . ' # Moving everything to build2 dir. TODO: Why?' . "\n" |
1482 | . ' mv -f /mnt/target/rocketgit /mnt/build2' . "\n" | ||
1478 | . ' [ -d /mnt/target/rocketgit ] && mv -f /mnt/target/rocketgit /mnt/build2' . "\n" | ||
1483 | 1479 | . ' chown -R build2:build2 /mnt/build2 /mnt/rpmbuild' . "\n" | . ' chown -R build2:build2 /mnt/build2 /mnt/rpmbuild' . "\n" |
1484 | 1480 | . "\n" | . "\n" |
1485 | 1481 | . ' echo; echo "`date`: Running build_rgfs.sh script"' . "\n" | . ' echo; echo "`date`: Running build_rgfs.sh script"' . "\n" |