-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #56: Gui will not be downloaded after cache partition was formatt…
…ed (final attempt).
- Loading branch information
1 parent
94724b1
commit 3e01312
Showing
6 changed files
with
38 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
linuxmuster-linbo7 (4.0.11-0) lmn71-testing; urgency=low | ||
|
||
* Fix #56: Gui will not be downloaded after cache partition was formatted (final attempt). | ||
* Reverted commits for #54. | ||
* Refactored gui_ctl. | ||
|
||
-- Thomas Schmitt <[email protected]> Wed, 23 Feb 2022 16:22:00 +0100 | ||
|
||
linuxmuster-linbo7 (4.0.10-0) lmn71-testing; urgency=low | ||
|
||
* Fix #56: Gui will not be downloaded after cache partition was formatted. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
LINBO 4.0.10-0: Subterranean Homesick Blues | ||
LINBO 4.0.11-0: Subterranean Homesick Blues |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
# License: GPL V2 | ||
# | ||
# [email protected] | ||
# 20220221 | ||
# 20220223 | ||
# | ||
|
||
# If you don't have a "standalone shell" busybox, enable this: | ||
|
@@ -246,11 +246,6 @@ copytocache(){ | |
echo "Saving start.conf in cache." | ||
cp -a /start.conf /cache | ||
fi | ||
if [ -d /icons ]; then | ||
echo "Saving icons in cache." | ||
mkdir -p /cache/icons | ||
rsync /icons/* /cache/icons | ||
fi | ||
# save hostname for offline use | ||
if [ -s /tmp/network.ok ]; then | ||
source /tmp/network.ok | ||
|
@@ -626,14 +621,6 @@ network(){ | |
# strip leading and trailing spaces and escapes | ||
export linbocmd="$(awk '{$1=$1}1' /linbocmd | sed -e 's|\\||g')" | ||
fi | ||
# also look for other needed files | ||
for i in "torrent-client.conf" "multicast.list"; do | ||
rsync -L "$server::linbo/$i" "/$i" &> /dev/null | ||
done | ||
# and (optional) the GUI icons | ||
for i in linbo_wallpaper.png $(grep -i ^iconname /start.conf | awk -F\= '{ print $2 }' | awk '{ print $1 }'); do | ||
rsync -L "$server::linbo/icons/$i" /icons &> /dev/null | ||
done | ||
# save downloaded stuff to cache | ||
copytocache | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters