2019-12-04 15:22:57 +00:00
|
|
|
# Debian Jessie
|
2017-10-16 08:02:12 +00:00
|
|
|
|
|
|
|
Debian Jessie installation Notes:
|
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
- Add
|
2022-08-24 13:54:03 +00:00
|
|
|
|
|
|
|
```ini
|
|
|
|
GRUB_CMDLINE_LINUX="cgroup_enable=memory swapaccount=1"
|
|
|
|
```
|
|
|
|
|
|
|
|
to `/etc/default/grub`. Then update with
|
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
```ShellSession
|
2022-08-24 13:54:03 +00:00
|
|
|
sudo update-grub
|
|
|
|
sudo update-grub2
|
|
|
|
sudo reboot
|
2017-10-16 08:02:12 +00:00
|
|
|
```
|
2022-08-24 13:54:03 +00:00
|
|
|
|
2017-10-16 08:02:12 +00:00
|
|
|
- Add the [backports](https://backports.debian.org/Instructions/) which contain Systemd 2.30 and update Systemd.
|
2022-08-24 13:54:03 +00:00
|
|
|
|
|
|
|
```ShellSession
|
|
|
|
apt-get -t jessie-backports install systemd
|
|
|
|
```
|
|
|
|
|
2017-10-16 08:02:12 +00:00
|
|
|
(Necessary because the default Systemd version (2.15) does not support the "Delegate" directive in service files)
|
2022-08-24 13:54:03 +00:00
|
|
|
|
2017-10-16 08:02:12 +00:00
|
|
|
- Add the Ansible repository and install Ansible to get a proper version
|
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
```ShellSession
|
2017-10-16 08:02:12 +00:00
|
|
|
sudo add-apt-repository ppa:ansible/ansible
|
|
|
|
sudo apt-get update
|
2017-11-02 10:40:08 +00:00
|
|
|
sudo apt-get install ansible
|
2017-10-16 08:02:12 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
- Install Jinja2 and Python-Netaddr
|
|
|
|
|
2022-08-24 13:54:03 +00:00
|
|
|
```ShellSession
|
|
|
|
sudo apt-get install python-jinja2=2.8-1~bpo8+1 python-netaddr
|
|
|
|
```
|
|
|
|
|
2017-10-16 08:02:12 +00:00
|
|
|
Now you can continue with [Preparing your deployment](getting-started.md#starting-custom-deployment)
|