/usr/lib/fai/get-config-dir-http is in fai-client 3.4.8ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | #!/bin/bash
# $Id$
#*********************************************************************
#
# get-config-dir-http -- get a tarball of the config dir
#
# This script is part of FAI (Fully Automatic Installation)
# Copyright (C) 2000-2010 Thomas Lange, lange@informatik.uni-koeln.de
# Universitaet zu Koeln
#
#*********************************************************************
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#*********************************************************************
### BEGIN SUBROUTINE INFO
# Provides-Var:
# Requires-Var: $FAI_CONFIG_SRC $FAI
# Suggests-Var:
# Short-Description: get config space via http
### END SUBROUTINE INFO
fdir=/var/lib/fai
cd $fdir
# determine basename of tar file to download (later used as class name)
file=${FAI_CONFIG_SRC##*/}
base=${file%%.*}
# get md5sum first
if wget -q -t5 -O $fdir/$file.md5 ${FAI_CONFIG_SRC}.md5; then
echo "Checksum file $file.md5 successfully downloaded."
else
echo "Checksum file ${FAI_CONFIG_SRC}.md5 failed to download. Aborting."
task_error 701
fi
# now download tarball of config space
echo -n "Getting configuration space tarball from $FAI_CONFIG_SRC ..."
wget -q -t 3 $FAI_CONFIG_SRC && echo "done"
task_error 702 $?
# check the md5 sum
echo -n "MD5 checksum of "
md5sum -c $file.md5 || echo "checksum mismatch. ERROR."
task_error 703 $?
# extraxt the downloaded file using ftar. Therefore define a class
# with the basename of the file
echo "Extracting config space from $file"
ftar -c $base -t $FAI -s $fdir .
|