15-initsetup: warn if /etc/runlevel.conf does not exist
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 15-initsetup
1 #!/bin/sh
2 # Filename:      /etc/grml/fai/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 /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 # but only save it as /etc/runlevel.conf.original if it's not the
20 # according livecd version, this should prevent from overriding
21 # /etc/runlevel.conf.original if re-running grml-live -b ...
22 if ! cmp /etc/runlevel.conf /etc/runlevel.conf.livecd 1>/dev/null || \
23    ! cmp /etc/runlevel.conf /etc/runlevel.conf.livecd.small 1>/dev/null ; then
24
25    # make sure to store old backup files if they differ as well
26    if [ -r $target/etc/runlevel.conf.original ] ; then
27       if ! cmp $target/etc/runlevel.conf $target/etc/runlevel.conf.original 1>/dev/null ; then
28          cp $target/etc/runlevel.conf.original $target/etc/runlevel.conf.original."$(date +%Y%m%d_%k:%M:%S)"
29       fi
30    fi
31
32    cp $target/etc/runlevel.conf $target/etc/runlevel.conf.original
33 fi
34
35 # if we have a small ISO let's adjust runlevel.conf:
36 if [ -n "$GRML_NAME" ] ; then
37    if echo "$GRML_NAME" | grep -q small ; then
38       cp $target/etc/runlevel.conf.livecd.small $target/etc/runlevel.conf
39    else
40       cp $target/etc/runlevel.conf.livecd $target/etc/runlevel.conf
41    fi
42 fi
43
44 ## END OF FILE #################################################################
45 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3