Where to post fixes for "lfscritp" file?

Asked by Howard C Rosenorn

Where do we post fixes for the "lfscript" file? Here are my current fixes. The first two fix problems from "UNEXPECTED ERROR OCCURED" to "Read-only file system" errors. The last fix keeps wget from getting hung up on ssl certificates (https).

--- Line 676 ---
OLD: mount -o remount,ro /sources/src
NEW: mount -o remount,ro,bind "${SOURCESDIR}" /sources/src

--- Line 714 ---
OLD: mount -o remount,ro /sources/buildmgr/packages
NEW: mount -o remount,ro,bind "${PACKSDIR}" /sources/buildmgr/packages

--- Line 779 ---
OLD: wget ${url} || DLERROR="$?"
NEW: wget --no-check-certificate ${url} || DLERROR="$?"

Question information

Language:
English Edit question
Status:
Solved
For:
LFScript Edit question
Assignee:
No assignee Edit question
Solved by:
Howard C Rosenorn
Solved:
Last query:
Last reply:
Revision history for this message
Marcel van den Boer (synthehol) said :
#1

You can post fixes here or email them to <email address hidden>.

I've applied the top two lines as is. The wget fix, I've applied to line 312 in stead. Not checking for certificates should be pretty safe as long as md5 checksums are performed on the downloaded files.

Revision history for this message
Howard C Rosenorn (hrosenorn) said :
#2

Thank you again!