Numbering upgrade script 31/102231/1
authorKyungwook Tak <k.tak@samsung.com>
Mon, 5 Dec 2016 08:10:20 +0000 (17:10 +0900)
committerKyungwook Tak <k.tak@samsung.com>
Mon, 5 Dec 2016 08:10:20 +0000 (17:10 +0900)
wae-upgrade.sh -> 200.wae.sh

Change-Id: I77f59c43be20cdb7eb808ca5e7a754287bcdfcb0
Signed-off-by: Kyungwook Tak <k.tak@samsung.com>
packaging/libwebappenc.spec
scripts/200.wae.sh.in [new file with mode: 0755]
scripts/CMakeLists.txt
scripts/wae-upgrade.sh.in [deleted file]

index 9f8faefa03d2770e4f375647b54e642fe9813869..760f3e299552ae0e9013c0c2ef37bfe22b085ef8 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}/wae-upgrade.sh
+%attr(775,root,root) %{upgrade_script_dir}/200.wae.sh
 %{upgrade_data_dir}/wae/app_dek/*
 
 %files devel
diff --git a/scripts/200.wae.sh.in b/scripts/200.wae.sh.in
new file mode 100755 (executable)
index 0000000..5552f74
--- /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        200.wae.sh.in
+# @author      Kyungwook Tak (k.tak@samsung.com)
+# @brief       Platform upgrade support
+
+WAE_DIR=@RW_SHARE_DIR@/wae
+
+mv @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 c73467eedcb31b46bae489ffef81c0ecdbf567b3..f4098fc6658dc80e8d0ac328efc15058095335c6 100644 (file)
@@ -12,5 +12,5 @@
 #    See the License for the specific language governing permissions and
 #    limitations under the License.
 #
-CONFIGURE_FILE(wae-upgrade.sh.in wae-upgrade.sh @ONLY)
-INSTALL(FILES wae-upgrade.sh DESTINATION ${UPGRADE_SCRIPT_DIR})
+CONFIGURE_FILE(200.wae.sh.in 200.wae.sh @ONLY)
+INSTALL(FILES 200.wae.sh DESTINATION ${UPGRADE_SCRIPT_DIR})
diff --git a/scripts/wae-upgrade.sh.in b/scripts/wae-upgrade.sh.in
deleted file mode 100755 (executable)
index 652962b..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        wae-upgrade.sh.in
-# @author      Kyungwook Tak (k.tak@samsung.com)
-# @brief       Platform upgrade support
-
-WAE_DIR=@RW_SHARE_DIR@/wae
-
-mv @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/*