Skip to content

Commit

Permalink
do copy and edit fai.conf only if /etc/fai exists
Browse files Browse the repository at this point in the history
sometimes a client do not have fai install
  • Loading branch information
Thomas Lange committed Oct 25, 2017
1 parent e45a853 commit 1b928c7
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions examples/simple/scripts/DEBIAN/40-misc
Expand Up @@ -41,13 +41,10 @@ ln -fs /proc/mounts $target/etc/mtab

rm -f $target/etc/dpkg/dpkg.cfg.d/fai $target/etc/dpkg/dpkg.cfg.d/unsafe-io

if [ $FAI_ACTION = "install" -o $FAI_ACTION = "dirinstall" ] ; then
[ -f /etc/fai/fai.conf ] && cp /etc/fai/fai.conf $target/etc/fai/fai.conf
if [ -d /etc/fai ]; then
ainsl -a /etc/fai/fai.conf "FAI_CONFIG_SRC=$FAI_CONFIG_SRC"
fcopy -Miv /etc/fai/fai.conf
fi

ainsl -a /etc/fai/fai.conf "FAI_CONFIG_SRC=$FAI_CONFIG_SRC"

fcopy -Miv /etc/fai/fai.conf
fcopy -iv /etc/rc.local

exit $error

0 comments on commit 1b928c7

Please sign in to comment.