blob: 9d1170dbc8a310f8f86f12fe4dcb386de443deed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
# lh_bootstrap(1) - bootstrap a Debian system
set -e
# Source common functions
for FUNCTION in /usr/share/live-helper/functions/*.sh
do
. ${FUNCTION}
done
# Reading configuration files
Read_conffile config/common
Read_conffile config/bootstrap
Set_defaults
# Bootstrapping system
lh_bootstrap_"${LH_BOOTSTRAP}"
|