diff options
author | wchang kim <wchang.kim@samsung.com> | 2016-06-28 15:33:27 +0900 |
---|---|---|
committer | wchang kim <wchang.kim@samsung.com> | 2016-06-28 15:33:27 +0900 |
commit | d0b08988e334877e07c0082d61c4c392f90a290f (patch) | |
tree | 76edd30b958dd7b6f14622651d7b19cb48766905 | |
parent | 21f58d3066413942e364ce3cb26e6624d122db4d (diff) | |
download | system-plugin-d0b08988e334877e07c0082d61c4c392f90a290f.tar.gz system-plugin-d0b08988e334877e07c0082d61c4c392f90a290f.tar.bz2 system-plugin-d0b08988e334877e07c0082d61c4c392f90a290f.zip |
Description : Fixed to fail umount /opt.submit/tizen/20160628.215737accepted/tizen/wearable/20160629.021623accepted/tizen/tv/20160629.021511accepted/tizen/mobile/20160629.021617accepted/tizen/ivi/20160629.021543accepted/tizen/common/20160629.222718
When /opt is busy, umouting /opt is failed.
This is workaround for this issue.
Change-Id: I6b93f493e733cde193d7b81268c78aec7f325d1a
Signed-off-by: Woochang Kim <wchang.kim@samsung.com>
-rw-r--r-- | units/umount-opt.service | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/units/umount-opt.service b/units/umount-opt.service index 9ed8170..dcf6c13 100644 --- a/units/umount-opt.service +++ b/units/umount-opt.service @@ -8,4 +8,4 @@ Requires=local-fs-pre.target [Service] Type=oneshot RemainAfterExit=yes -ExecStart=/bin/umount /opt +ExecStart=/bin/umount -l /opt |