diff options
author | Corentin Lecouvey <corentin.lecouvey@open.eurogiciel.org> | 2014-11-26 16:37:40 +0100 |
---|---|---|
committer | Corentin Lecouvey <corentin.lecouvey@open.eurogiciel.org> | 2014-11-26 16:37:40 +0100 |
commit | f699733036470d61d2a191c8597025f52e5c549f (patch) | |
tree | 3e559be0747cda13707f1b7d8b16cfc8ce052ec7 | |
parent | a0f1c0c04b586fc3b446916b92664e3625d4c9d1 (diff) | |
download | meta-f699733036470d61d2a191c8597025f52e5c549f.tar.gz meta-f699733036470d61d2a191c8597025f52e5c549f.tar.bz2 meta-f699733036470d61d2a191c8597025f52e5c549f.zip |
add 'guest' user to vconf_bt group
bluetooth vconf keys are installed by bluetooth-frwk with vconf_bt group owner.
bt-service daemon which runs as 'guest' user can not access those vconf keys.
So after 'guest' user creation, I add it to vconf_bt group.
By this way, bt-service will be available to check and update bluetooth vconf keys.
Change-Id: I2cd7a94f6042a986e1776978c60b288e4c2f61e1
Signed-off-by: Corentin Lecouvey <corentin.lecouvey@open.eurogiciel.org>
-rw-r--r-- | scripts/common-base.post | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/common-base.post b/scripts/common-base.post index e34f86c..939706b 100644 --- a/scripts/common-base.post +++ b/scripts/common-base.post @@ -14,5 +14,6 @@ for user in alice bob carol guest; do generic_base_fix_user_homedir $user done - +######### add 'guest' user that runs bt-service daemon to vconf_bt group +/usr/sbin/groupmod -A guest vconf_bt |