Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Debian jessie (EOL) #100

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions Vagrant/README.md
Expand Up @@ -19,8 +19,8 @@ Vagrant boxes are pulled from [Vagrant Cloud](https://app.vagrantup.com/).

The following Vagrant boxes are made available

- Debian 8.x (Jessie): `imscp_debian_jessie` (VirtualBox, LXC)
- Debian 9.x (Stretch): `imscp_debian_stretch` (VirtualBox, LXC)
- Debian 10.x (Buster): `imscp_debian_buster` (VirtualBox, LXC)
- Ubuntu 16.04 (Xenial Xerus): `imscp_ubuntu_xenial` (VirtualBox only)
- Ubuntu 18.04 (Bionic Beaver): `imscp_ubuntu_bionic` (VirtualBox only)

Expand Down Expand Up @@ -92,11 +92,11 @@ vagrant up <vagrant_box_name>
where `<vagrant_box_name>` must be one of names listed in the `Vagrant boxes`
section above.

For instance, to create a `Debian Jessie` Vagrant box, you must run:
For instance, to create a `Debian Buster` Vagrant box, you must run:

```shell
cd <imscp_archive_dir>/Vagrant
vagrant up imscp_debian_jessie
vagrant up imscp_debian_Buster
```

Note that if you don't pass a name, a `Debian Stretch` Vagrant box will be
Expand Down
20 changes: 10 additions & 10 deletions Vagrant/Vagrantfile
Expand Up @@ -28,44 +28,44 @@ Vagrant.configure("2") do |config|

## Vagrant boxes definitions

# Debian 8.x/Jessie
config.vm.define "imscp_debian_jessie", autostart: false do |node|
node.vm.box = "debian/jessie64"
# Debian 9.x/Stretch (default if no box name passed-in to vagrant CLI)
config.vm.define 'imscp_debian_stretch', autostart: true do |node|
node.vm.box = "debian/stretch64"

# VirtualBox provider configuration
node.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id,
"--memory", "1024",
"--name", "imscp_debian_jessie",
"--name", "imscp_debian_stretch",
#"--natdnshostresolver1", "on"
]
end

# LXC provider configuration
node.vm.provider :lxc do |lxc, override|
lxc.customize "cgroup.memory.limit_in_bytes", "1024M"
lxc.container_name = "imscp_debian_jessie"
lxc.container_name = "imscp_debian_stretch"
override.vm.network = ""
end
end

# Debian 9.x/Stretch (default if no box name passed-in to vagrant CLI)
config.vm.define 'imscp_debian_stretch', autostart: true do |node|
node.vm.box = "debian/stretch64"
# Debian 10.x/Buster
config.vm.define "imscp_debian_buster", autostart: false do |node|
node.vm.box = "debian/buster64"

# VirtualBox provider configuration
node.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id,
"--memory", "1024",
"--name", "imscp_debian_stretch",
"--name", "imscp_debian_buster",
#"--natdnshostresolver1", "on"
]
end

# LXC provider configuration
node.vm.provider :lxc do |lxc, override|
lxc.customize "cgroup.memory.limit_in_bytes", "1024M"
lxc.container_name = "imscp_debian_stretch"
lxc.container_name = "imscp_debian_buster"
override.vm.network = ""
end
end
Expand Down