1.0.141
All checks were successful
Build / Build project (push) Successful in 1m33s

This commit is contained in:
Alexander Zhirov 2025-05-31 15:16:21 +03:00
parent 588257617c
commit 999c2762ca
Signed by: alexander
GPG key ID: C8D8BE544A27C511
7 changed files with 128 additions and 0 deletions

29
files/scripts/1.8_x86-64 Normal file
View file

@ -0,0 +1,29 @@
case $SUITE in
1.8_x86-64|4.8_arm|1.7_x86-64|4.7_arm|novorossiysk|sevastopol|smolensk|3.8_s390x|12.8_x86-64)
default_mirror $USER_MIRROR
;;
orel)
default_mirror https://dl.astralinux.ru/astra/stable/2.12_x86-64/repository
;;
esac
mirror_style release
download_style apt
finddebs_style from-indices
variants - buildd fakechroot minbase
keyring /usr/share/apt/astra-archive.gpg
if [ -z $CUSTOM_COMPONENTS ]; then
default_components 'main|contrib|non-free|non-free-firmware'
fi
# include common settings
if [ -e "$DEBOOTSTRAP_DIR/scripts/debian-common" ]; then
. "$DEBOOTSTRAP_DIR/scripts/debian-common"
elif [ -e /debootstrap/debian-common ]; then
. /debootstrap/debian-common
elif [ -e "$DEBOOTSTRAP_DIR/debian-common" ]; then
. "$DEBOOTSTRAP_DIR/debian-common"
else
error 1 NOCOMMON "File not found: debian-common"
fi

29
files/scripts/orel Normal file
View file

@ -0,0 +1,29 @@
case $SUITE in
1.8_x86-64|4.8_arm|1.7_x86-64|4.7_arm|novorossiysk|sevastopol|smolensk)
default_mirror $USER_MIRROR
;;
orel)
default_mirror https://dl.astralinux.ru/astra/stable/2.12_x86-64/repository
;;
esac
mirror_style release
download_style apt
finddebs_style from-indices
variants - buildd fakechroot minbase
keyring /usr/share/apt/astra-archive.gpg
if [ -z $CUSTOM_COMPONENTS ]; then
default_components 'main|contrib|non-free'
fi
# include common settings
if [ -e "$DEBOOTSTRAP_DIR/scripts/debian-common" ]; then
. "$DEBOOTSTRAP_DIR/scripts/debian-common"
elif [ -e /debootstrap/debian-common ]; then
. /debootstrap/debian-common
elif [ -e "$DEBOOTSTRAP_DIR/debian-common" ]; then
. "$DEBOOTSTRAP_DIR/debian-common"
else
error 1 NOCOMMON "File not found: debian-common"
fi