upload tizen1.0 source
[platform/framework/web/wrt.git] / wrt_policy_setter.sh
1 #!/bin/bash
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 EXPECTED_ARGS=1
18
19 if [ $# -ne $EXPECTED_ARGS ]
20 then
21     echo "Usage: `basename $0` {arg}, where arg could be WACPolicy UnrestrictedPolicy"
22     exit 1
23 fi
24
25 if [ $1 = "WACPolicy" ]
26 then
27     killall -9 wrt_engine_daemon
28     wrt_reset_db.sh
29     cp /usr/etc/ace/WACPolicy.xml /usr/etc/ace/demo.xml
30 elif [ $1 = "UnrestrictedPolicy" ]
31 then
32     killall -9 wrt_engine_daemon
33     wrt_reset_db.sh
34     cp /usr/etc/ace/UnrestrictedPolicy.xml /usr/etc/ace/demo.xml
35 else
36     echo "Invalid argument!"
37     exit 1
38 fi
39
40 echo "Policy changed. Please restart wrt_engine_daemon"