diff --git a/frontend/views/MainPanel.js b/frontend/views/MainPanel.js index 0cdfeb9..da6c686 100644 --- a/frontend/views/MainPanel.js +++ b/frontend/views/MainPanel.js @@ -101,9 +101,9 @@ module.exports = kind({ {kind: Divider, content: 'Result'}, {kind: BodyText, name: 'result', content: 'Nothing selected...'} ]}, - {kind: LunaService, name: 'statusCheck', service: 'luna://org..hbchannel.service', method: 'exec', onResponse: 'onStatusCheck', onError: 'onStatusCheck'}, - {kind: LunaService, name: 'exec', service: 'luna://org..hbchannel.service', method: 'exec', onResponse: 'onExec', onError: 'onExec'}, - {kind: LunaService, name: 'init', service: 'luna://org..hbchannel.service', method: 'exec', onResponse: 'onInit', onError: 'onInit'}, + {kind: LunaService, name: 'statusCheck', service: 'luna://org.webosbrew.hbchannel.service', method: 'exec', onResponse: 'onStatusCheck', onError: 'onStatusCheck'}, + {kind: LunaService, name: 'exec', service: 'luna://org.webosbrew.hbchannel.service', method: 'exec', onResponse: 'onExec', onError: 'onExec'}, + {kind: LunaService, name: 'init', service: 'luna://org.webosbrew.hbchannel.service', method: 'exec', onResponse: 'onInit', onError: 'onInit'}, ], bindings: [], @@ -177,7 +177,7 @@ module.exports = kind({ autostartToggle: function (sender) { if (sender.active) { - this.exec('mkdir -p /var/lib//init.d && ln -sf ' + applyPath + ' ' + linkPath); + this.exec('mkdir -p /var/lib/webosbrew/init.d && ln -sf ' + applyPath + ' ' + linkPath); } else { this.exec('rm -rf ' + linkPath); }