	#!/bin/sh
	# check if we are on real system
	if [ -z "${IPKG_INSTROOT}" ]; then
		/etc/init.d/vpn-policy-routing enable
		if ! /bin/ubus -S call system board | /bin/grep 'Turris' | /bin/grep -q '15.05' ; then
			rm -rf /etc/hotplug.d/iface/70-vpn-policy-routing
		fi
	fi
	exit 0
