Picking up on this thread because I'm working through the exact same issue trying to get VeraConcierge to run on my Synology NAS. I've installed java no problem and when I run java -jar ConciergeServer.jar I get:
Dec 5, 2017 1:39:26 AM V:InstallManager:OS:Linux
Which could imply success, but the server is not running although I've open the appropriate ports. So I've been working through the install.sh file and have modified it as follows:
#!/bin/sh
sudo cp conciergeserver /usr/local/etc/rc.d/conciergeserver
sudo chmod 755 /usr/local/etc/rc.d/conciergeserver
#sudo update-rc.d conciergeserver defaults ← update-rc.d command not found
sudo synoservice --enable /usr/local/etc/rc.d/conciergeserver ← Service [conciergeserver] does not exist
sleep 5
xdg-open
https://localhost:8989As you can see from the <-- notes, there are two critical issues. If I just execute
/usr/local/etc/rc.d/conciergeserver
I receive the error: line 25: /lib/lsb/init-functions: No such file or directory
At this point it seems like this software is just incompatible with the Synology NAS, unless this looks like an easier problem to someone who is better trained than me. I don't suppose it would be easier to create a docker container that I could execute on the NAS as I did for HA-Bridge before realizing Google Home no longer supports scanning locally for Hue emulators? Thanks in advance.
Marc