Implement -D option to set configuration directory; fai.conf: don't set variables...
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 15-initsetup
1 #!/bin/bash
2 # Filename:      ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/15-initsetup
3 # Purpose:       configure init system for the live-system
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 ################################################################################
8
9 set -u
10 set -e
11
12 if ! [ -r $target/etc/runlevel.conf ] ; then
13    echo 'Warning: /etc/runlevel.conf does not exist...'
14    echo '... assuming we do not have file-rc, skipping 15-initsetup'
15    exit 0
16 fi
17
18 # keep a backup of the original runlevel.conf file for reference
19 if [ -r $target/etc/runlevel.conf.original ] ; then
20   # make sure to store old backup files if they differ as well
21   if ! cmp $target/etc/runlevel.conf $target/etc/runlevel.conf.original >/dev/null ; then
22     cp $target/etc/runlevel.conf.original $target/etc/runlevel.conf.original."$(date +%Y%m%d_%k:%M:%S)"
23   fi
24 fi
25
26 cp $target/etc/runlevel.conf $target/etc/runlevel.conf.original
27
28 # provide Grml's default file-rc configuration
29 fcopy /etc/runlevel.conf
30
31 # provide Grml's inittab configuration
32 fcopy /etc/inittab
33
34 ## END OF FILE #################################################################
35 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2