summaryrefslogtreecommitdiffhomepage
path: root/themes/luci-theme-rosy/root
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2019-06-03 16:49:10 +0200
committerJo-Philipp Wich <jo@mein.io>2019-06-03 16:49:10 +0200
commit5fd071aadbcaa3b136a37fa2cbcb9799b0153e2a (patch)
tree48dba67a6604499cc6d7c1f1543fd43e8ffc90a4 /themes/luci-theme-rosy/root
parentc8b7e7631b35f00c51666670b66f6a32c188f1d8 (diff)
themes: don't reset theme on package upgrades
Fixes: #2743 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'themes/luci-theme-rosy/root')
-rwxr-xr-xthemes/luci-theme-rosy/root/etc/uci-defaults/30_luci-theme-rosy14
1 files changed, 9 insertions, 5 deletions
diff --git a/themes/luci-theme-rosy/root/etc/uci-defaults/30_luci-theme-rosy b/themes/luci-theme-rosy/root/etc/uci-defaults/30_luci-theme-rosy
index 2657a2977..ab0299a9c 100755
--- a/themes/luci-theme-rosy/root/etc/uci-defaults/30_luci-theme-rosy
+++ b/themes/luci-theme-rosy/root/etc/uci-defaults/30_luci-theme-rosy
@@ -1,7 +1,11 @@
#!/bin/sh
-uci batch <<-EOF
- set luci.themes.Rosy=/luci-static/rosy
- set luci.main.mediaurlbase=/luci-static/rosy
- commit luci
-EOF
+
+if [ "$PKG_UPGRADE" != 1 ]; then
+ uci batch <<-EOF
+ set luci.themes.Rosy=/luci-static/rosy
+ set luci.main.mediaurlbase=/luci-static/rosy
+ commit luci
+ EOF
+fi
+
exit 0