diff options
author | José Bollo <jose.bollo@iot.bzh> | 2020-02-11 13:11:06 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2020-02-11 14:14:02 +0100 |
commit | 733369053bfa6b53479db613781bb68aa89b00e2 (patch) | |
tree | b42737d9bdc46e2b896a1d998e9dc5ec5285d554 | |
parent | b251a659e6de2585f9e29166be93060b640b8410 (diff) |
system setup: Fix settings on /run/userhalibut_8.0.6halibut/8.0.68.0.6halibut
The setting made fail the 'service user-runtime-dir@.service'.
It also had bad effect on starting of dashboard application.
Bug-AGL: SPEC-3175
Change-Id: Ic937c707fce4b3d2c03616055e140b65e4b29cfb
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r-- | conf/system/afm-system-setup.sh.in | 2 | ||||
-rw-r--r-- | conf/system/afm-user-setup.sh.in | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/conf/system/afm-system-setup.sh.in b/conf/system/afm-system-setup.sh.in index f70a530..ba4ff4c 100644 --- a/conf/system/afm-system-setup.sh.in +++ b/conf/system/afm-system-setup.sh.in @@ -10,7 +10,7 @@ dodir() { done } -dodir $pdir $pdir/display $pdir/apis $pdir/apis/ws $pdir/apis/link +dodir /run/user $pdir $pdir/display $pdir/apis $pdir/apis/ws $pdir/apis/link @create_platform_debug@ diff --git a/conf/system/afm-user-setup.sh.in b/conf/system/afm-user-setup.sh.in index e1c1070..1b619a0 100644 --- a/conf/system/afm-user-setup.sh.in +++ b/conf/system/afm-user-setup.sh.in @@ -15,8 +15,8 @@ dodir() { done } -dodir '-T -a User::App-Shared' "$bdir" "$udir" -dodir '-t -a User::App-Shared' "$udir/usrshr" +dodir '-T -a User::App-Shared' "$udir" +dodir '-t -a User::App-Shared' "$udir/usrshr" dodir '-T -a System::Shared' "$udir/apis" dodir '-t -a System::Shared' "$udir/apis/ws" "$udir/apis/link" |