summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorwchang kim <wchang.kim@samsung.com>2016-08-16 11:32:41 +0900
committerwchang kim <wchang.kim@samsung.com>2016-08-16 11:32:41 +0900
commit5f46e4e2b2d70b0ff2959f6cea9722210875b6d6 (patch)
treeec44684c8dc72df37c1d0d85d66175fd3f361700 /scripts
parent4d47f99b2e37f14b324d7e46826a765f0360fe54 (diff)
downloadsystem-plugin-5f46e4e2b2d70b0ff2959f6cea9722210875b6d6.tar.gz
system-plugin-5f46e4e2b2d70b0ff2959f6cea9722210875b6d6.tar.bz2
system-plugin-5f46e4e2b2d70b0ff2959f6cea9722210875b6d6.zip
Description : Change the mount method in service file.
Adding mount-user.sh. mount-user.sh gets the PARTLABEL from /dev/disk/by-partlabel for user and mount it. Change-Id: Ib08023dc41a2268cef8751281c6e113eaf067204
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mount-user.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/mount-user.sh b/scripts/mount-user.sh
new file mode 100644
index 0000000..34ca172
--- /dev/null
+++ b/scripts/mount-user.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+PATH=/bin:/usr/bin:/sbin:/usr/sbin
+
+USER_DISK=`ls /dev/disk/by-partlabel/ | grep -i user`
+USER_MNT=/opt/usr
+
+/usr/bin/mount PARTLABEL=$USER_DISK $USER_MNT