You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
983 B

  1. # Debian Jessie
  2. Debian Jessie installation Notes:
  3. - Add
  4. ```ini
  5. GRUB_CMDLINE_LINUX="cgroup_enable=memory swapaccount=1"
  6. ```
  7. to `/etc/default/grub`. Then update with
  8. ```ShellSession
  9. sudo update-grub
  10. sudo update-grub2
  11. sudo reboot
  12. ```
  13. - Add the [backports](https://backports.debian.org/Instructions/) which contain Systemd 2.30 and update Systemd.
  14. ```ShellSession
  15. apt-get -t jessie-backports install systemd
  16. ```
  17. (Necessary because the default Systemd version (2.15) does not support the "Delegate" directive in service files)
  18. - Add the Ansible repository and install Ansible to get a proper version
  19. ```ShellSession
  20. sudo add-apt-repository ppa:ansible/ansible
  21. sudo apt-get update
  22. sudo apt-get install ansible
  23. ```
  24. - Install Jinja2 and Python-Netaddr
  25. ```ShellSession
  26. sudo apt-get install python-jinja2=2.8-1~bpo8+1 python-netaddr
  27. ```
  28. Now you can continue with [Preparing your deployment](getting-started.md#starting-custom-deployment)