	#!/bin/sh
	# check if we are on real system
	if [ -z "${IPKG_INSTROOT}" ]; then
		echo "Enabling nordvpnlite service"
		/etc/init.d/nordvpnlite enable
		echo "Restarting rpcd for LuCI integration"
		/etc/init.d/rpcd restart
	fi
	exit 0
