-
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 #40: linbo_gui not downloaded on unregistered clients.
- Loading branch information
1 parent
0ef31d0
commit a09eea6
Showing
3 changed files
with
9 additions
and
3 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,9 @@ | ||
linuxmuster-linbo7 (4.0.4-0) lmn71; urgency=low | ||
|
||
* Fix #40: linbo_gui not downloaded on unregistered clients. | ||
|
||
-- Thomas Schmitt <[email protected]> Tue, 28 Dec 2021 20:19:00 +0100 | ||
|
||
linuxmuster-linbo7 (4.0.3-0) lmn71; urgency=low | ||
|
||
* Fix #32: Add global.reg to linuxmuster-win. | ||
|
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.3-0: Subterranean Homesick Blues | ||
LINBO 4.0.4-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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# (C) Klaus Knopper 2007 | ||
# License: GPL V2 | ||
# [email protected] | ||
# 20211023 | ||
# 20211228 | ||
# | ||
|
||
# Reset fb color mode | ||
|
@@ -95,7 +95,7 @@ get_linbo_gui(){ | |
print_status "Successfully mounted cache partition." | tee -a /cache/linbo.log | ||
fi | ||
# get network infos | ||
[ -s /tmp/network.ok ] && source /tmp/network.ok | ||
[ -s /tmp/dhcp.log ] && source /tmp/dhcp.log &> /dev/null | ||
if [ -z "$linbo_server" ]; then | ||
print_status "Fatal: Cannot read network infos. Continuing offline." | tee -a /cache/linbo.log | ||
offline="yes" | ||
|