You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
984 B
34 lines
984 B
#!/bin/bash
|
|
|
|
LOGPATH="/var/log"
|
|
|
|
# default is output to log. you can use OUTPUT="/dev/stdout" if you want to route events to standard output.
|
|
#OUTPUT="$LOGPATH/$LIVEKITNAME.log"
|
|
OUTPUT="/dev/stdout"
|
|
|
|
# if = "1", creates a second iso with a constant filename
|
|
# если ="1", создаёт второй iso с постоянным именем файла
|
|
BUILD_TEST_ISO="1"
|
|
|
|
# удаляет старые файлы iso для данного типа сборки
|
|
REMOVE_OLD_ISO="0"
|
|
|
|
# if = "1", creates a copy of minios-live in chroot /opt
|
|
# если ="1", создаёт копию minios-live в chroot /opt
|
|
DEV_SYSTEM="0"
|
|
|
|
# if ="1", creates backup in parent folder
|
|
# если ="1", создаёт резервную копию в родительской папке
|
|
CREATE_BACKUP="0"
|
|
|
|
DEBIAN_FRONTEND_TYPE="noninteractive"
|
|
#DEBIAN_FRONTEND_TYPE="dialog"
|
|
|
|
APT_CMD="apt-get"
|
|
|
|
APT_OPTIONS="-y" #--no-install-recommends"
|
|
|
|
#LIVE_TYPE="casper"
|
|
LIVE_TYPE="casper"
|
|
|
|
INSTALL_OPTIONAL="1"
|