Submitted both as #391 and #392 (the "drbd8-utils" update had already been fixed in develop for jessie)
I do have some more general suggestions which I don't know if you want to include or not.
The examples for configuration of various things show the "temporary" way of doing them, rather than the way which persists through a reboot, and I think the latter would be better.
* Configuring the nfs client on node2 would be better done by adding a line to /etc/fstab:
203.0.113.1:/srv/archip/ /srv/archip/ nfs defaults 0 0
and then doing "mount /srv/archip"
* Configuring the network would be best done by adding to /etc/network/interfaces:
auto eth1
iface eth1 inet manual
auto eth2
iface eth2 inet manual
auto br1
iface br1 inet manual
### node 1 only:
#post-up iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
bridge_ports eth1
bridge_stp off
bridge_fd 0
bridge_maxwait 0
auto br2
iface br2 inet manual
bridge_ports eth2
bridge_stp off
bridge_fd 0
bridge_maxwait 0
----
and then doing "ifup br1; ifup br2". Or for vlans, it's identical except replace "eth1" and "eth2" with "eth0.1" and "eth0.2" respectively.
What do you think? I realise these are things that a competent sysadmin could work out for themselves, but it's annoying if you reboot a node and suddenly find a load of stuff which needs to be redone.
Regards,
Brian.