changing the current install script to the following below made it work on systemd too. according to https://unix.stackexchange.com/questions/39370/how-to-reload-udev-rules-without-reboot the other lines should provide the restart.
#!/bin/sh
oldpwd=$(pwd)
cd $(dirname $0)
sudo cp 60-openocd.rules /etc/udev/rules.d/
sudo cp 66-wiced-JTAG.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules
sudo udevadm trigger --action=add
cd $oldpwd
changing the current install script to the following below made it work on systemd too. according to https://unix.stackexchange.com/questions/39370/how-to-reload-udev-rules-without-reboot the other lines should provide the restart.
#!/bin/sh
oldpwd=$(pwd)
cd $(dirname $0)
sudo cp 60-openocd.rules /etc/udev/rules.d/
sudo cp 66-wiced-JTAG.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules
sudo udevadm trigger --action=add
cd $oldpwd