Tips and tricks: Difference between revisions

From FAIWiki
Jump to navigation Jump to search
(additional FAI soubroutines)
 
No edit summary
Line 2: Line 2:


To enable class specific soubroutines, create a hook 'defvar.DEFAULT.source' with following content:
To enable class specific soubroutines, create a hook 'defvar.DEFAULT.source' with following content:
for class in ${classes}
for class in ${classes}
do
do

Revision as of 09:44, 17 August 2005

If the pre-defined FAI soubroutines don't fit or you need additional soubroutines, place a file called 'soubroutines' in your FAI tree/hooks and it will be sourced by any installation.

To enable class specific soubroutines, create a hook 'defvar.DEFAULT.source' with following content:

for class in ${classes} do

 [ -r ${FAI}/hooks/subroutines.${class} ] && \
 { echo "Reading subroutines.${class}." ; . ${FAI}/hooks/subroutines.${class} ; }

done return 0