Installing a Custom Operating System with HP Insight Control for Linux
Manuals
Brands
HP Manuals
Software
HP Insight Control for Linux Media Kit
4
5
6
7
8
9
10
11
12
13
12
Sou
rcing
in t
he
G
UID.
va
rs
file
This
example
bash
script sources
the
GUID
.vars
f
ile
.
if [ $#
-
ne 1 ]
then
echo "usage: $0 variables_file" 1>&2
exit 1
else
VARS_FILE=$1
fi
# Source in the file containing the variables.
. $VARS_FILE
1
...
...
10
11
12
13