Fix upgrade script number 26/136726/1 accepted/tizen/4.0/unified/20170816.012948 accepted/tizen/4.0/unified/20170816.015633 accepted/tizen/4.0/unified/20170829.020530 accepted/tizen/unified/20170705.163019 submit/tizen/20170704.073704 submit/tizen/20170705.025248 submit/tizen_4.0/20170811.094300 submit/tizen_4.0/20170814.115522 submit/tizen_4.0/20170828.100004 submit/tizen_4.0/20170828.110004 submit/tizen_4.0_unified/20170814.115522
authorsangwan.kwon <sangwan.kwon@samsung.com>
Fri, 30 Jun 2017 08:01:59 +0000 (17:01 +0900)
committersangwan kwon <sangwan.kwon@samsung.com>
Mon, 3 Jul 2017 04:55:06 +0000 (04:55 +0000)
* Accordig to OS upgrade team's guide, this script would be run as 240.

Change-Id: I96d0a68915acc21cf82f48ff5704fc11a1989653
Signed-off-by: sangwan.kwon <sangwan.kwon@samsung.com>
(cherry picked from commit ec1709d20c9c6a243f1b2b1976819e4017601c18)

packaging/libwebappenc.spec
scripts/200.wae.sh.in [deleted file]
scripts/240.wae.sh.in [new file with mode: 0755]
scripts/CMakeLists.txt

index 101e64b73c6df332b693abde3edaabe876585a29..94dd937a92708f26ead02fb387a48717d6d8937b 100644 (file)
@@ -103,7 +103,7 @@ fi
 %dir %attr(770, %user_name, %group_name) %{rw_share_dir}/wae/app_dek
 %attr(660, %user_name, %group_name) %{rw_share_dir}/wae/app_dek/*
 
-%attr(775,root,root) %{upgrade_script_dir}/200.wae.sh
+%attr(775,root,root) %{upgrade_script_dir}/240.wae.sh
 %{upgrade_data_dir}/wae/app_dek/*
 
 %files devel
diff --git a/scripts/200.wae.sh.in b/scripts/200.wae.sh.in
deleted file mode 100755 (executable)
index 29d9497..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-PATH=/bin:/usr/bin:/sbin:/usr/sbin
-
-# Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
-#
-#    Licensed under the Apache License, Version 2.0 (the "License");
-#    you may not use this file except in compliance with the License.
-#    You may obtain a copy of the License at
-#
-#        http://www.apache.org/licenses/LICENSE-2.0
-#
-#    Unless required by applicable law or agreed to in writing, software
-#    distributed under the License is distributed on an "AS IS" BASIS,
-#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-#    See the License for the specific language governing permissions and
-#    limitations under the License.
-#
-# @file        200.wae.sh.in
-# @author      Kyungwook Tak (k.tak@samsung.com)
-# @brief       Platform upgrade support
-
-WAE_DIR=@RW_SHARE_DIR@/wae
-
-cp -rf @UPGRADE_DATA_DIR@/wae $WAE_DIR
-
-chsmack -a "@SMACK_DOMAIN@" $WAE_DIR -r
-chown -R @USER_NAME@:@GROUP_NAME@ $WAE_DIR
-chmod 770 $WAE_DIR
-chmod 770 $WAE_DIR/app_dek
-chmod 660 $WAE_DIR/app_dek/*
diff --git a/scripts/240.wae.sh.in b/scripts/240.wae.sh.in
new file mode 100755 (executable)
index 0000000..68f99f9
--- /dev/null
@@ -0,0 +1,30 @@
+#!/bin/bash
+PATH=/bin:/usr/bin:/sbin:/usr/sbin
+
+# Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+#
+#    Licensed under the Apache License, Version 2.0 (the "License");
+#    you may not use this file except in compliance with the License.
+#    You may obtain a copy of the License at
+#
+#        http://www.apache.org/licenses/LICENSE-2.0
+#
+#    Unless required by applicable law or agreed to in writing, software
+#    distributed under the License is distributed on an "AS IS" BASIS,
+#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#    See the License for the specific language governing permissions and
+#    limitations under the License.
+#
+# @file        240.wae.sh.in
+# @author      Kyungwook Tak (k.tak@samsung.com)
+# @brief       Platform upgrade support
+
+WAE_DIR=@RW_SHARE_DIR@/wae
+
+cp -rf @UPGRADE_DATA_DIR@/wae $WAE_DIR
+
+chsmack -a "@SMACK_DOMAIN@" $WAE_DIR -r
+chown -R @USER_NAME@:@GROUP_NAME@ $WAE_DIR
+chmod 770 $WAE_DIR
+chmod 770 $WAE_DIR/app_dek
+chmod 660 $WAE_DIR/app_dek/*
index f4098fc6658dc80e8d0ac328efc15058095335c6..092010356330e7c1135594083e76f8adfed26a85 100644 (file)
@@ -12,5 +12,5 @@
 #    See the License for the specific language governing permissions and
 #    limitations under the License.
 #
-CONFIGURE_FILE(200.wae.sh.in 200.wae.sh @ONLY)
-INSTALL(FILES 200.wae.sh DESTINATION ${UPGRADE_SCRIPT_DIR})
+CONFIGURE_FILE(240.wae.sh.in 240.wae.sh @ONLY)
+INSTALL(FILES 240.wae.sh DESTINATION ${UPGRADE_SCRIPT_DIR})