List of commits:
Subject Hash Author Date (UTC)
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
Added rate limit options 60e939a52577a01603f9f386ffaf1a9712f99ab6 Catalin(ux) M. BOIE 2020-10-07 05:02:25
Improved bots list and clean old entries 9da0a014040753734beabfecb298b8956fc25fe3 Catalin(ux) M. BOIE 2020-10-05 06:34:43
builder: use secrets only if available 4fe47afc60435508ad90f62c51d489ac3c20b4d0 Catalin(ux) M. BOIE 2020-08-28 07:29:14
Commit 2e8902609a2d94e2eba5fb8ccda85de90ae23fb5 - worker: move dependencies path
Author: Catalin(ux) M. BOIE
Author date (UTC): 2021-10-21 15:22
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2021-10-21 15:22
Parent(s): 77c26d9ce82d452ebdc1b609d71c5e931768805c
Signer:
Signing key:
Signing status: N
Tree: 4945629fa3a3c4814ffd3c7ad5f90a70438108c5
File Lines added Lines deleted
TODO 2 0
scripts/worker.php 3 3
File TODO changed (mode: 100644) (index ee2da02..7de126e)
53 53 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!
54 54
55 55 == FOR OTHER RELEASE == == FOR OTHER RELEASE ==
56 [ ] builder: Should we add '.' to PATH. If I put 'configure' it will not be
57 executed, I have to put './configure'.
56 58 [ ] Offer RGFS for all user content. [ ] Offer RGFS for all user content.
57 59 [ ] "Me" and "My repositories" pages seems to do the same thing! [ ] "Me" and "My repositories" pages seems to do the same thing!
58 60 [ ] Do the regular expression pkg repo mapping is checked? [ ] Do the regular expression pkg repo mapping is checked?
File scripts/worker.php changed (mode: 100644) (index c6336cf..6732642)
... ... function start_worker_build_tools($job, &$reason, &$reason2)
573 573 . ' spec_deps=`rpmspec --parse "${spec_file}" | grep ^BuildRequires | cut -d: -f2 | tr ",\t\r\n" " "`' . "\n" . ' spec_deps=`rpmspec --parse "${spec_file}" | grep ^BuildRequires | cut -d: -f2 | tr ",\t\r\n" " "`' . "\n"
574 574 . ' xecho " DEBUG: name=${spec_name}, ver=${spec_ver}, rel=${spec_rel}, deps=[${spec_deps}]"' . "\n" . ' xecho " DEBUG: name=${spec_name}, ver=${spec_ver}, rel=${spec_rel}, deps=[${spec_deps}]"' . "\n"
575 575 . ' if [ "${spec_deps}" != "" ]; then' . "\n" . ' if [ "${spec_deps}" != "" ]; then' . "\n"
576 . ' xecho " Storing deps [${spec_deps}] into /mnt/target/rocketgit/_deps"' . "\n"
577 . ' echo "${spec_deps}" > /mnt/target/rocketgit/_deps' . "\n"
576 . ' xecho " Storing deps [${spec_deps}] into /mnt/tmp/_deps"' . "\n"
577 . ' echo "${spec_deps}" > /mnt/tmp/_deps' . "\n"
578 578 . ' fi' . "\n" . ' fi' . "\n"
579 579 . ' echo' . "\n" . ' echo' . "\n"
580 580 . '}' . "\n" . '}' . "\n"
 
... ... function start_worker($job)
1459 1459 . ' break' . "\n" . ' break' . "\n"
1460 1460 . ' fi' . "\n" . ' fi' . "\n"
1461 1461 . "\n" . "\n"
1462 . ' _deps=`cat /mnt/target/rocketgit/_deps 2>/dev/null`' . "\n"
1462 . ' _deps=`cat /mnt/tmp/_deps 2>/dev/null`' . "\n"
1463 1463 . ' if [ "${_deps}" != "" ]; then' . "\n" . ' if [ "${_deps}" != "" ]; then' . "\n"
1464 1464 . ' echo; echo "`date`: Installing dependencies [${_deps}]"' . "\n" . ' echo; echo "`date`: Installing dependencies [${_deps}]"' . "\n"
1465 1465 . ' export DEBIAN_FRONTEND=noninteractive' . "\n" . ' export DEBIAN_FRONTEND=noninteractive' . "\n"
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