Merge remote-tracking branch 'rsa/tizen_2.2' into tizen
[platform/framework/web/wrt-installer.git] / wrt_preinstall_widgets.sh
1 #!/bin/sh
2 # Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 #
4 #    Licensed under the Apache License, Version 2.0 (the "License");
5 #    you may not use this file except in compliance with the License.
6 #    You may obtain a copy of the License at
7 #
8 #        http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #    Unless required by applicable law or agreed to in writing, software
11 #    distributed under the License is distributed on an "AS IS" BASIS,
12 #    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #    See the License for the specific language governing permissions and
14 #    limitations under the License.
15 #
16
17 _working_dir="/opt/usr/apps/.preinstallWidgets"
18
19 install_widgets() {
20         _wgt_list=`find $_working_dir -name '*.wgt'`
21         for list in $_wgt_list
22         do
23                 echo "Install $list"
24                 wrt-installer -i $list
25         done
26
27 }
28
29 if [ ! -d $_working_dir ]; then
30         echo "There is no preinstall widget directory - $_working_dir"
31         exit 1
32 fi
33
34 install_widgets
35
36 touch /opt/usr/apps/.preinstallWidgets/preinstallDone