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
|
2017-10-16 08:02:12 +00:00
|
|
|
|
|
|
|
```GRUB_CMDLINE_LINUX="cgroup_enable=memory swapaccount=1"```
|
|
|
|
|
|
|
|
to /etc/default/grub. Then update with
|
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
```ShellSession
|
2017-10-16 08:02:12 +00:00
|
|
|
sudo update-grub
|
|
|
|
sudo update-grub2
|
|
|
|
sudo reboot
|
|
|
|
```
|
|
|
|
|
|
|
|
- Add the [backports](https://backports.debian.org/Instructions/) which contain Systemd 2.30 and update Systemd.
|
|
|
|
|
|
|
|
```apt-get -t jessie-backports install systemd```
|
|
|
|
|
|
|
|
(Necessary because the default Systemd version (2.15) does not support the "Delegate" directive in service files)
|
|
|
|
|
|
|
|
- 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
|
|
|
|
|
2017-10-30 12:47:39 +00:00
|
|
|
```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)
|