11 lines
281 B
Bash
Executable File
11 lines
281 B
Bash
Executable File
#! /bin/bash
|
|
|
|
[ "$cmdlineclasses" ] || exit 0
|
|
|
|
# define the classes given on the cmdline (using -c)
|
|
# Note: In the FAI example config, this script has very low priority, but for
|
|
# me it make more sense to make it higher priority than the host classes.
|
|
echo $cmdlineclasses
|
|
|
|
exit 0
|