diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-02-28 20:07:23 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-02-28 20:10:46 +0100 |
commit | ae33f9100e3b67a8ce07e5ad8b1f0ee73867df6a (patch) | |
tree | 9180f8dbd75ff481dae22f5944455f9b6218a0e1 /conf/system/afm-system-setup.service | |
parent | a44174a09215e7b4dd56084662cc2a068404ffea (diff) |
Refactor user session management
Change-Id: Ib6ba886df110d8a23e3760e1818263ec757b9c7c
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'conf/system/afm-system-setup.service')
-rw-r--r-- | conf/system/afm-system-setup.service | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/conf/system/afm-system-setup.service b/conf/system/afm-system-setup.service index 260975c..d624aeb 100644 --- a/conf/system/afm-system-setup.service +++ b/conf/system/afm-system-setup.service @@ -1,9 +1,9 @@ [Unit] Description=Initiate afm-system-setup -Before=weston.service +Before=weston.service afs-supervisor.service afm-system-daemon.service [Service] -Type=one-shot -ExecStart=-/bin/sh -c "/bin/mkdir -m 755 -Z '*' /run/platform" -ExecStart=-/bin/sh -c "/bin/mkdir -m 755 -Z '*' /run/platform/display" -ExecStart=-/bin/sh -c "/bin/mkdir -m 755 -Z '*' /run/platform/apis" -ExecStart=-/bin/sh -c "/bin/mkdir -m 755 -Z '*' /run/platform/apis/ws" +Type=oneshot +ExecStart=-/bin/sh -c "/bin/mkdir -m 755 /run/platform; /usr/bin/chsmack -a '*' /run/platform" +ExecStart=-/bin/sh -c "/bin/mkdir -m 755 /run/platform/display; /usr/bin/chsmack -a '*' /run/platform/display" +ExecStart=-/bin/sh -c "/bin/mkdir -m 755 /run/platform/apis; /usr/bin/chsmack -a '*' /run/platform/apis" +ExecStart=-/bin/sh -c "/bin/mkdir -m 755 /run/platform/apis/ws; /usr/bin/chsmack -a '*' /run/platform/apis/ws" |