c3cc4f2279f231833225a702d9c6fdb5fd09e709
[automated-distro-installer] / fai-wrapper
1 #!/bin/bash
2 # Copyright (C) 2016 Ian Kelling
3
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 # For using some fai commands outside of fai.
19 # to set fai classes, export CLASS_CLASSNAME=true
20 ifclass() {
21 local var=${1/#/CLASS_}
22 [[ $HOSTNAME == $1 || ${!var} ]]
23 }
24 fai-setclass() {
25 for class in "$@"; do
26 # export class vars with CLASS_ in front to avoid name collisions.
27 classes+=" $class"
28 export CLASS_$class=true
29 done
30 classes="${classes# }"
31 export classes
32 }
33 eval-fai-classfile() {
34 file=$1
35 fai-setclass $(bash -l $file)
36 }
37 export -f ifclass
38 classes=DEFAULT # used by fcopy
39 export CLASS_DEFAULT=true
40 eval-fai-classfile /a/bin/fai/fai/config/class/50-host-classes
41 export FAI_ROOT=/
42 export FAI=/a/bin/fai/fai/config