Commit 564800e6 authored by Thomas Gambier's avatar Thomas Gambier 🚴🏼

vifib-server += nxd-fuse on Debian 9, Debian 10, Ubuntu 16.04

See merge request nexedi/slapos.package!132
parents cfabe250 c9ca5bea
......@@ -35,6 +35,16 @@
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "7"
notify: [ 'Mark to reboot' ]
# install nxd-fuse on old Debian and Ubuntu
- name: Install nxd-fuse
apt: name=nxd-fuse-dkms state=latest update_cache=yes
when: (ansible_distribution == "Debian" and ansible_distribution_major_version == "10") or
(ansible_distribution == "Debian" and ansible_distribution_major_version == "9") or
(ansible_distribution == "Ubuntu" and ansible_distribution_version == "16.04")
notify: [ 'Mark to reboot' ]
- name: create trigger reboot script
copy: src=slapos-trigger-reboot.sh dest=/usr/local/bin/slapos-trigger-reboot.sh mode=700
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment