Your comments

Looks like I was able to resolve my own issue. I was missing the following paramter in my service script


"-Dfile.encoding=UTF-8"


So I was essentially running


" -jar /etc/opt/ubooquity/ubooquity/Ubooquity.jar -webadmin -headless -port 80"


instead of:


"-Dfile.encoding=UTF-8 -jar /etc/opt/ubooquity/ubooquity/Ubooquity.jar -webadmin -headless -port 80"


After adding that parameter that I found on the following post, it did the trick (the metadata was applying too):


http://ubooquity.userecho.com/topics/117-help-how-to-for-ubuntu-14-headless/


If someone has an explanation on why that parameter is necessary or what does it exactly mean to someone who don't know squat 'bout Java, I'd appreciate it.