Merge branch 'devel'

This commit is contained in:
udeved 2015-01-06 23:46:53 +01:00
commit ad28ddc4a4
2 changed files with 7 additions and 8 deletions

View file

@ -1,4 +1,4 @@
V=0.9.5.3
V=0.9.5.4
PREFIX = $(PREFIX)/local

View file

@ -30,6 +30,7 @@ display_settings(){
msg2 "manjaro_tools_conf: ${manjaro_tools_conf}"
fi
msg2 "iso_profile: ${iso_profile}"
msg2 "initsys: ${initsys}"
msg "OPTIONS:"
msg2 "arch: ${arch}"
@ -60,7 +61,7 @@ display_settings(){
msg2 "plymouth_theme: ${plymouth_theme}"
if ${auto_svc_conf};then
if [[ ${initsys} == "systemd" ]];then
if [ ${initsys} == "systemd" ];then
msg2 "start_systemd: ${start_systemd[*]}"
else
msg2 "start_openrc: ${start_openrc[*]}"
@ -74,18 +75,16 @@ display_settings(){
msg2 "code_name: ${code_name}"
msg2 "img_name: ${img_name}"
msg2 "install_dir: ${install_dir}"
msg2 "compression: ${compression}"
msg2 "iso_file: ${iso_file}"
msg "LIVECD:"
msg2 "username: ${username}"
msg2 "password: ${password}"
msg2 "encrypted password: $(gen_pw)"
msg2 "addgroups: ${addgroups}"
msg2 "hostname: ${hostname}"
if ${auto_svc_conf};then
if [[ ${initsys} == "systemd" ]];then
if [ ${initsys} == "systemd" ];then
msg2 "start_systemd_live: ${start_systemd_live[*]}"
else
msg2 "start_openrc_live: ${start_openrc_live[*]}"
@ -108,9 +107,6 @@ load_config "${SYSCONFDIR}/manjaro-tools.conf"
load_desktop_definition
displaymanager=$(cat ${PWD}/displaymanager)
initsys=$(cat ${PWD}/initsys)
clean_first=true
auto_svc_conf=true
high_compression=true
@ -199,6 +195,9 @@ iso_file="${target_dir}/${img_name}-${desktop}-${iso_version}-${arch}.iso"
iso_profile=${PWD##*/}
displaymanager=$(cat ${PWD}/displaymanager)
initsys=$(cat ${PWD}/initsys)
${high_compression} && iso_args+=(-x)
${clean_first} && iso_args+=(-f)