mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/boypt/openssh-rpms.git
synced 2026-09-20 08:03:38 +08:00
- Add `Dockerfile.rockylinux` to build Rocky Linux images - Modify `pullsrc.sh`, add an environment variable to using proxy for Github. - Modify `version.env`, sync environment variable. - Modify `README.md`, sync doc. - Modify `.github/workflows/build-images.yml`, sync Rocky Linux image.
21 lines
526 B
Bash
21 lines
526 B
Bash
# custom defined components
|
|
OPENSSLSRC=openssl-3.0.15.tar.gz
|
|
OPENSSHSRC=openssh-9.9p1.tar.gz
|
|
PKGREL=1
|
|
ASKPASSSRC=x11-ssh-askpass-1.2.4.1.tar.gz
|
|
|
|
# for EL5 only
|
|
PERLSRC=perl-5.38.2.tar.gz
|
|
|
|
# version numbers extracting
|
|
OPENSSHVER=${OPENSSHSRC%%.tar.gz}
|
|
OPENSSHVER=${OPENSSHVER##openssh-}
|
|
OPENSSLVER=${OPENSSLSRC%%.tar.gz}
|
|
OPENSSLVER=${OPENSSLVER##openssl-}
|
|
PERLVER=${PERLSRC%%.tar.gz}
|
|
PERLVER=${PERLVER##perl-}
|
|
|
|
# Github Proxy, this arg is very useful for Chinese users.
|
|
# You can try this: https://github.akams.cn/
|
|
GH_PROXY=""
|