diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2019-10-08 10:36:24 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2019-10-08 10:36:24 +0200 |
commit | 9974b47e4947bc54dffd59974ab860c5ddccca62 (patch) | |
tree | 082d140dd95f2b384824d33b22716d8787668967 | |
parent | bbc8b4c9896a98ea0a9b6c1fe6098aaa729ace06 (diff) |
conf/system: fix shebang not absolute.
Wrong shebang in some shell script prevents packaging to ends correctly.
Bugs-AGL: SPEC-2863
Change-Id: I63ae56ddc88f9f9dfa0734efff69c26c87800a07
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | conf/system/afm-system-setup.sh.in | 2 | ||||
-rw-r--r-- | conf/system/afm-user-setup.sh.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/conf/system/afm-system-setup.sh.in b/conf/system/afm-system-setup.sh.in index 65e75ed..4da558e 100644 --- a/conf/system/afm-system-setup.sh.in +++ b/conf/system/afm-system-setup.sh.in @@ -1,4 +1,4 @@ -#!bin/sh +#!/bin/sh pdir=@afm_platform_rundir@ diff --git a/conf/system/afm-user-setup.sh.in b/conf/system/afm-user-setup.sh.in index 076676f..058420d 100644 --- a/conf/system/afm-user-setup.sh.in +++ b/conf/system/afm-user-setup.sh.in @@ -1,4 +1,4 @@ -#!bin/sh +#!/bin/sh uid=$1 udir=/run/user/$uid |