User FAQ
Jump to navigation
Jump to search
What's the official website for FAI?
http://www.informatik.uni-koeln.de/fai
What order are scripts executed in?
Scripts are executed in class definition order, and in numerical order within each class.
For example, if the classes FOO and BAR were defined (in that order), and $FAI_CONFIGDIR/scripts/FOO
contained S20
and S40
, and $FAI_CONFIGDIR/scripts/BAR
contained S30
, the order of execution would be:
- $FAI_CONFIGDIR/scripts/FOO/S20
- $FAI_CONFIGDIR/scripts/FOO/S40
- $FAI_CONFIGDIR/scripts/BAR/S30