Skip to content

Commit

Permalink
Merge pull request #427 from yaazkal/linux-debian-distros
Browse files Browse the repository at this point in the history
Adds: Debian 9 (Stretch) as a release for linux jails
  • Loading branch information
cedwards authored Jul 23, 2021
2 parents 7c8c324 + f6b2e57 commit 47fed3a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions usr/local/share/bastille/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,13 @@ ubuntu_focal|focal|ubuntu-focal)
ensure_debootstrap
debootstrap --foreign --arch=amd64 --no-check-gpg focal "${bastille_releasesdir}"/Ubuntu_2004
;;
debian_stretch|stretch|debian-stretch)
check_linux_prerequisites
ensure_debootstrap
debootstrap --foreign --arch=amd64 --no-check-gpg stretch "${bastille_releasesdir}"/Debian9
echo "Increasing APT::Cache-Start"
echo "APT::Cache-Start 251658240;" > "${bastille_releasesdir}"/Debian9/etc/apt/apt.conf.d/00aptitude
;;
*)
usage
;;
Expand Down
8 changes: 8 additions & 0 deletions usr/local/share/bastille/create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -593,6 +593,10 @@ if [ -n "${LINUX_JAIL}" ]; then
## check for FreeBSD releases name
NAME_VERIFY=ubuntu_focal
;;
debian_stretch|stretch|debian-stretch)
## check for FreeBSD releases name
NAME_VERIFY=stretch
;;
*)
error_notify "Unknown Linux."
usage
Expand Down Expand Up @@ -651,6 +655,10 @@ if [ -z "${EMPTY_JAIL}" ]; then
NAME_VERIFY=Ubuntu_2004
validate_release
;;
debian_stretch|stretch|debian-stretch)
NAME_VERIFY=Debian9
validate_release
;;
*)
error_notify "Unknown Release."
usage
Expand Down

0 comments on commit 47fed3a

Please sign in to comment.