manjaro-tools/lib/util.sh

812 lines
20 KiB
Bash
Raw Normal View History

2014-10-08 00:11:53 +02:00
#!/bin/bash
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
2016-02-27 00:39:58 +01:00
# $1: section
2016-05-23 03:03:00 +02:00
parse_section() {
2016-09-15 23:58:18 +02:00
local is_section=0
while read line; do
[[ $line =~ ^\ {0,}# ]] && continue
[[ -z "$line" ]] && continue
if [ $is_section == 0 ]; then
if [[ $line =~ ^\[.*?\] ]]; then
line=${line:1:$((${#line}-2))}
section=${line// /}
if [[ $section == $1 ]]; then
is_section=1
continue
fi
continue
fi
elif [[ $line =~ ^\[.*?\] && $is_section == 1 ]]; then
break
else
pc_key=${line%%=*}
pc_key=${pc_key// /}
pc_value=${line##*=}
pc_value=${pc_value## }
eval "$pc_key='$pc_value'"
fi
done < "$2"
2016-05-23 03:03:00 +02:00
}
get_repos() {
2016-09-15 23:58:18 +02:00
local section repos=() filter='^\ {0,}#'
while read line; do
[[ $line =~ "${filter}" ]] && continue
[[ -z "$line" ]] && continue
if [[ $line =~ ^\[.*?\] ]]; then
line=${line:1:$((${#line}-2))}
section=${line// /}
case ${section} in
"options") continue ;;
*) repos+=("${section}") ;;
esac
fi
done < "$1"
echo ${repos[@]}
2016-05-23 03:03:00 +02:00
}
2016-02-27 00:39:58 +01:00
2016-05-23 03:03:00 +02:00
check_user_repos_conf(){
2016-09-15 23:58:18 +02:00
local repositories=$(get_repos "$1") uri='file://'
for repo in ${repositories[@]}; do
msg2 "parsing repo [%s] ..." "${repo}"
parse_section "${repo}" "$1"
[[ ${pc_value} == $uri* ]] && die "Using local repositories is not supported!"
done
2016-05-23 03:03:00 +02:00
}
2016-05-20 19:42:16 +02:00
get_pac_mirrors_conf(){
2016-09-15 23:58:18 +02:00
local conf="$tmp_dir/pacman-mirrors-$1.conf"
cp "${DATADIR}/pacman-mirrors.conf" "$conf"
sed -i "$conf" \
-e "s|Branch = stable|Branch = $1|"
2016-09-15 23:58:18 +02:00
echo "$conf"
}
2016-06-09 18:03:38 +02:00
read_build_list(){
2016-09-15 23:58:18 +02:00
local _space="s| ||g" \
_clean=':a;N;$!ba;s/\n/ /g' \
_com_rm="s|#.*||g"
2016-09-15 23:58:18 +02:00
build_list=$(sed "$_com_rm" "$1.list" \
| sed "$_space" \
| sed "$_clean")
}
2016-06-09 18:03:38 +02:00
# $1: list_dir
show_build_lists(){
2016-09-15 23:58:18 +02:00
local list temp
for item in $(ls $1/*.list); do
temp=${item##*/}
list=${list:-}${list:+|}${temp%.list}
done
echo $list
2015-06-06 09:48:56 +02:00
}
2016-06-09 13:27:45 +02:00
# $1: make_conf_dir
2016-06-09 21:58:18 +02:00
show_build_profiles(){
2016-09-15 23:58:18 +02:00
local arch temp
for item in $(ls $1/*.conf); do
temp=${item##*/}
arch=${arch:-}${arch:+|}${temp%.conf}
done
echo $arch
}
2016-06-09 18:03:38 +02:00
# $1: list_dir
# $2: build list
eval_build_list(){
2016-09-15 23:58:18 +02:00
eval "case $2 in
$(show_build_lists $1)) is_build_list=true; read_build_list $1/$2 ;;
*) is_build_list=false ;;
esac"
2015-06-06 09:48:56 +02:00
}
2016-02-27 18:01:45 +01:00
in_array() {
2016-09-15 23:58:18 +02:00
local needle=$1; shift
local item
for item in "$@"; do
[[ $item = $needle ]] && return 0 # Found
done
return 1 # Not Found
2016-02-27 18:01:45 +01:00
}
2015-02-18 04:28:11 +01:00
get_timer(){
2016-09-15 23:58:18 +02:00
echo $(date +%s)
2015-02-18 04:28:11 +01:00
}
2015-09-20 12:40:49 +02:00
2015-02-18 04:28:11 +01:00
# $1: start timer
elapsed_time(){
2016-09-15 23:58:18 +02:00
echo $(echo $1 $(get_timer) | awk '{ printf "%0.2f",($2-$1)/60 }')
2015-02-18 04:28:11 +01:00
}
show_elapsed_time(){
2016-09-15 23:58:18 +02:00
info "Time %s: %s minutes" "$1" "$(elapsed_time $2)"
}
2016-07-15 00:50:50 +02:00
get_project(){
2016-09-15 23:58:18 +02:00
local project
case "$1" in
'community'|'minimal') project='manjarolinux-community' ;;
'official') project='manjarolinux' ;;
'sonar') project='sonargnulinux' ;;
esac
echo ${project}
}
lock() {
2016-09-15 23:58:18 +02:00
eval "exec $1>"'"$2"'
if ! flock -n $1; then
stat_busy "$3"
flock $1
stat_done
fi
}
slock() {
2016-09-15 23:58:18 +02:00
eval "exec $1>"'"$2"'
if ! flock -sn $1; then
stat_busy "$3"
flock -s $1
stat_done
fi
}
2014-11-12 02:19:58 +01:00
check_root() {
2016-09-15 23:58:18 +02:00
(( EUID == 0 )) && return
if type -P sudo >/dev/null; then
exec sudo -- "$@"
else
exec su root -c "$(printf ' %q' "$@")"
fi
2014-11-12 02:19:58 +01:00
}
2015-06-03 16:09:26 +02:00
copy_mirrorlist(){
2016-09-15 23:58:18 +02:00
cp -a /etc/pacman.d/mirrorlist "$1/etc/pacman.d/"
}
2015-06-03 16:09:26 +02:00
copy_keyring(){
2016-09-15 23:58:18 +02:00
if [[ -d /etc/pacman.d/gnupg ]] && [[ ! -d $1/etc/pacman.d/gnupg ]]; then
cp -a /etc/pacman.d/gnupg "$1/etc/pacman.d/"
fi
2015-06-01 21:19:28 +02:00
}
load_vars() {
2016-09-15 23:58:18 +02:00
local var
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
[[ -f $1 ]] || return 1
2016-09-15 23:58:18 +02:00
for var in {SRC,SRCPKG,PKG,LOG}DEST MAKEFLAGS PACKAGER CARCH GPGKEY; do
[[ -z ${!var} ]] && eval $(grep -a "^${var}=" "$1")
done
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
return 0
}
2015-06-12 11:09:29 +02:00
prepare_dir(){
2016-09-15 23:58:18 +02:00
[[ ! -d $1 ]] && mkdir -p $1
2015-06-12 11:09:29 +02:00
}
version_gen(){
2016-09-15 23:58:18 +02:00
local y=$(date +%Y) m=$(date +%m) ver
ver=${y:2}.$m
echo $ver
2015-11-17 17:03:37 +01:00
}
# $1: chroot
get_branch(){
2016-09-15 23:58:18 +02:00
echo $(cat "$1/etc/pacman-mirrors.conf" | grep '^Branch = ' | sed 's/Branch = \s*//g')
}
# $1: chroot
# $2: branch
set_branch(){
2016-09-15 23:58:18 +02:00
info "Setting mirrorlist branch: %s" "$2"
sed -e "s|/stable|/$2|g" -i "$1/etc/pacman.d/mirrorlist"
}
init_common(){
2016-09-15 23:58:18 +02:00
[[ -z ${target_branch} ]] && target_branch='stable'
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${target_arch} ]] && target_arch=$(uname -m)
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${cache_dir} ]] && cache_dir='/var/cache/manjaro-tools'
2015-05-21 22:44:32 +02:00
2016-09-15 23:58:18 +02:00
[[ -z ${chroots_dir} ]] && chroots_dir='/var/lib/manjaro-tools'
2015-05-21 22:44:32 +02:00
2016-09-15 23:58:18 +02:00
[[ -z ${log_dir} ]] && log_dir='/var/log/manjaro-tools'
2016-09-15 23:58:18 +02:00
[[ -z ${build_mirror} ]] && build_mirror='http://mirror.netzspielplatz.de/manjaro/packages'
2016-09-15 23:58:18 +02:00
[[ -z ${tmp_dir} ]] && tmp_dir='/tmp/manjaro-tools'
2016-09-15 23:58:18 +02:00
[[ -z ${host} ]] && host="sourceforge.net"
}
init_buildtree(){
2016-09-15 23:58:18 +02:00
tree_dir=${cache_dir}/pkgtree
2015-06-09 00:02:32 +02:00
2016-09-15 23:58:18 +02:00
tree_dir_abs=${tree_dir}/packages-archlinux
2015-06-09 00:02:32 +02:00
2016-09-15 23:58:18 +02:00
[[ -z ${repo_tree[@]} ]] && repo_tree=('core' 'extra' 'community' 'multilib' 'openrc')
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${host_tree} ]] && host_tree='https://github.com/manjaro'
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${host_tree_abs} ]] && host_tree_abs='https://projects.archlinux.org/git/svntogit'
}
2015-02-09 23:38:12 +01:00
init_buildpkg(){
2016-09-15 23:58:18 +02:00
chroots_pkg="${chroots_dir}/buildpkg"
2016-09-15 23:58:18 +02:00
list_dir_pkg="${SYSCONFDIR}/pkg.list.d"
2016-09-15 23:58:18 +02:00
make_conf_dir="${SYSCONFDIR}/make.conf.d"
2016-09-15 23:58:18 +02:00
[[ -d ${USERCONFDIR}/pkg.list.d ]] && list_dir_pkg=${USERCONFDIR}/pkg.list.d
2016-09-15 23:58:18 +02:00
[[ -z ${build_list_pkg} ]] && build_list_pkg='default'
2015-11-30 21:35:30 +01:00
2016-09-15 23:58:18 +02:00
cache_dir_pkg=${cache_dir}/pkg
}
2015-02-09 23:38:12 +01:00
get_iso_label(){
2016-09-15 23:58:18 +02:00
local label="$1"
label="${label//_}" # relace all _
label="${label//-}" # relace all -
label="${label^^}" # all uppercase
label="${label::8}" # limit to 8 characters
echo ${label}
}
get_codename(){
2016-09-15 23:58:18 +02:00
source /etc/lsb-release
echo "${DISTRIB_CODENAME}"
}
init_buildiso(){
2016-09-15 23:58:18 +02:00
chroots_iso="${chroots_dir}/buildiso"
2016-09-15 23:58:18 +02:00
list_dir_iso="${SYSCONFDIR}/iso.list.d"
2016-09-15 23:58:18 +02:00
[[ -d ${USERCONFDIR}/iso.list.d ]] && list_dir_iso=${USERCONFDIR}/iso.list.d
2016-09-15 23:58:18 +02:00
[[ -z ${build_list_iso} ]] && build_list_iso='default'
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
cache_dir_iso="${cache_dir}/iso"
2015-11-30 21:35:30 +01:00
2016-09-15 23:58:18 +02:00
##### iso settings #####
2016-09-15 23:58:18 +02:00
[[ -z ${dist_release} ]] && dist_release=$(version_gen)
2014-12-03 22:59:30 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${dist_codename} ]] && dist_codename=$(get_codename)
2014-12-03 22:59:30 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${dist_branding} ]] && dist_branding="MJRO"
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${dist_name} ]] && dist_name="Manjaro"
2016-09-15 23:58:18 +02:00
iso_name=${dist_name,,}
2016-09-15 23:58:18 +02:00
iso_label=$(get_iso_label "${dist_branding}${dist_release//.}")
2016-09-15 23:58:18 +02:00
[[ -z ${iso_publisher} ]] && iso_publisher='Manjaro Linux <http://www.manjaro.org>'
2015-05-11 12:47:02 +02:00
2016-09-15 23:58:18 +02:00
[[ -z ${iso_app_id} ]] && iso_app_id='Manjaro Linux Live/Rescue CD'
2015-05-11 12:47:02 +02:00
2016-09-15 23:58:18 +02:00
[[ -z ${iso_compression} ]] && iso_compression='xz'
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${iso_checksum} ]] && iso_checksum='md5'
2016-09-15 23:58:18 +02:00
[[ -z ${initsys} ]] && initsys="systemd"
2016-09-15 23:58:18 +02:00
[[ -z ${kernel} ]] && kernel="linux44"
2016-09-15 23:58:18 +02:00
[[ -z ${use_overlayfs} ]] && use_overlayfs='true'
2016-09-15 23:58:18 +02:00
[[ -z ${profile_repo} ]] && profile_repo='manjaro-tools-iso-profiles'
[[ -z ${sfs_mode} ]] && sfs_mode="sfs"
2016-09-15 23:58:18 +02:00
mhwd_repo="/opt/pkg"
}
2015-11-12 00:31:51 +01:00
init_deployiso(){
2016-09-15 23:58:18 +02:00
[[ -z ${account} ]] && account="[SetUser]"
2015-11-12 00:31:51 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${limit} ]] && limit=100
2015-11-12 00:31:51 +01:00
}
load_config(){
2016-09-15 23:58:18 +02:00
[[ -f $1 ]] || return 1
2016-09-15 23:58:18 +02:00
manjaro_tools_conf="$1"
2016-09-15 23:58:18 +02:00
[[ -r ${manjaro_tools_conf} ]] && source ${manjaro_tools_conf}
2016-09-15 23:58:18 +02:00
init_common
2016-09-15 23:58:18 +02:00
init_buildtree
2016-09-15 23:58:18 +02:00
init_buildpkg
2016-09-15 23:58:18 +02:00
init_buildiso
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
init_deployiso
2015-11-12 00:31:51 +01:00
2016-09-15 23:58:18 +02:00
return 0
}
2016-02-25 18:07:13 +01:00
is_valid_bool(){
2016-09-15 23:58:18 +02:00
case $1 in
'true'|'false') return 0 ;;
*) return 1 ;;
esac
2016-02-25 18:07:13 +01:00
}
check_profile_vars(){
2016-09-15 23:58:18 +02:00
if ! is_valid_bool "${autologin}";then
die "autologin only accepts true/false value!"
fi
if ! is_valid_bool "${multilib}";then
die "multilib only accepts true/false value!"
fi
if ! is_valid_bool "${nonfree_mhwd}";then
die "nonfree_mhwd only accepts true/false value!"
fi
if ! is_valid_bool "${plymouth_boot}";then
die "plymouth_boot only accepts true/false value!"
fi
if ! is_valid_bool "${pxe_boot}";then
die "pxe_boot only accepts true/false value!"
fi
if ! is_valid_bool "${netinstall}";then
die "netinstall only accepts true/false value!"
fi
if ! is_valid_bool "${chrootcfg}";then
die "chrootcfg only accepts true/false value!"
2016-09-15 23:58:18 +02:00
fi
2016-09-27 18:30:28 +02:00
if ! is_valid_bool "${geoip}";then
die "geoip only accepts true/false value!"
fi
2016-02-25 18:07:13 +01:00
}
get_svc(){
2016-09-15 23:58:18 +02:00
local service=${displaymanager}
case $service in
'sddm'|'lxdm') service="$service" ;;
*) ${plymouth_boot} && service="$service-plymouth" ;;
esac
echo $service
}
load_profile_config(){
2016-09-15 23:58:18 +02:00
[[ -f $1 ]] || return 1
2016-09-15 23:58:18 +02:00
profile_conf="$1"
2016-09-15 23:58:18 +02:00
[[ -r ${profile_conf} ]] && source ${profile_conf}
2016-09-15 23:58:18 +02:00
[[ -z ${displaymanager} ]] && displaymanager="none"
2016-09-15 23:58:18 +02:00
[[ -z ${autologin} ]] && autologin="true"
[[ ${displaymanager} == 'none' ]] && autologin="false"
2015-06-06 13:43:00 +02:00
2016-09-15 23:58:18 +02:00
[[ -z ${multilib} ]] && multilib="true"
2016-09-15 23:58:18 +02:00
[[ -z ${pxe_boot} ]] && pxe_boot="true"
2016-09-15 23:58:18 +02:00
[[ -z ${plymouth_boot} ]] && plymouth_boot="true"
2016-08-27 00:56:46 +02:00
# [[ ${initsys} == 'openrc' ]] && plymouth_boot="false"
2016-09-15 23:58:18 +02:00
[[ -z ${nonfree_mhwd} ]] && nonfree_mhwd="true"
2016-09-15 23:58:18 +02:00
[[ -z ${efi_boot_loader} ]] && efi_boot_loader="grub"
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${hostname} ]] && hostname="manjaro"
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${username} ]] && username="manjaro"
2015-05-21 22:44:32 +02:00
2016-09-15 23:58:18 +02:00
[[ -z ${plymouth_theme} ]] && plymouth_theme="manjaro-elegant"
2015-05-21 22:44:32 +02:00
2016-09-15 23:58:18 +02:00
[[ -z ${password} ]] && password="manjaro"
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${login_shell} ]] && login_shell='/bin/bash'
2016-09-15 23:58:18 +02:00
if [[ -z ${addgroups} ]];then
addgroups="video,power,disk,storage,optical,network,lp,scanner,wheel"
fi
2014-12-17 02:14:15 +01:00
2016-09-15 23:58:18 +02:00
if [[ -z ${enable_systemd[@]} ]];then
enable_systemd=('bluetooth' 'cronie' 'ModemManager' 'NetworkManager' 'org.cups.cupsd' 'tlp' 'tlp-sleep')
fi
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${disable_systemd[@]} ]] && disable_systemd=('pacman-init')
2015-09-12 13:03:47 +02:00
2016-09-15 23:58:18 +02:00
if [[ -z ${enable_openrc[@]} ]];then
enable_openrc=('acpid' 'bluetooth' 'cgmanager' 'consolekit' 'cronie' 'cupsd' 'dbus' 'syslog-ng' 'NetworkManager')
fi
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
[[ -z ${disable_openrc[@]} ]] && disable_openrc=()
2015-09-12 13:03:47 +02:00
2016-09-15 23:58:18 +02:00
if [[ -z ${enable_systemd_live[@]} ]];then
enable_systemd_live=('manjaro-live' 'mhwd-live' 'pacman-init' 'mirrors-live')
fi
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
if [[ -z ${enable_openrc_live[@]} ]];then
enable_openrc_live=('manjaro-live' 'mhwd-live' 'pacman-init' 'mirrors-live')
fi
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
if [[ ${displaymanager} != "none" ]]; then
enable_openrc+=('xdm')
enable_systemd+=("$(get_svc)")
fi
2016-09-15 23:58:18 +02:00
[[ -z ${tracker_url} ]] && tracker_url='udp://mirror.strits.dk:6969'
2016-09-15 23:58:18 +02:00
[[ -z ${piece_size} ]] && piece_size=21
2016-09-15 23:58:18 +02:00
[[ -z ${netinstall} ]] && netinstall='false'
[[ -z ${chrootcfg} ]] && chrootcfg='false'
#[[ -z ${netgroups} ]] && -- needs to be hardcoded for now, until a standard has been established
# will be unlocked again after everything has been established.
netgroups="https://raw.githubusercontent.com/manjaro/manjaro-tools-iso-profiles/master/shared/netinst"
2016-09-15 23:58:18 +02:00
[[ -z ${geoip} ]] && geoip='true'
2016-09-15 23:58:18 +02:00
[[ -z ${smb_workgroup} ]] && smb_workgroup=''
2016-09-15 23:58:18 +02:00
check_profile_vars
2016-02-25 18:07:13 +01:00
2016-09-15 23:58:18 +02:00
return 0
}
2015-01-11 21:09:01 +01:00
2016-09-18 12:21:18 +02:00
get_edition(){
local result=$(find ${run_dir} -maxdepth 2 -name "$1") path
[[ -z $result ]] && die "%s is not a valid profile or build list!" "$1"
path=${result%/*}
echo ${path##*/}
}
reset_profile(){
unset displaymanager
unset autologin
unset multilib
unset pxe_boot
unset plymouth_boot
unset nonfree_mhwd
unset efi_boot_loader
unset hostname
unset username
unset plymouth_theme
unset password
unset addgroups
unset enable_systemd
unset disable_systemd
unset enable_openrc
unset disable_openrc
unset enable_systemd_live
unset enable_openrc_live
unset packages_custom
unset packages_mhwd
unset login_shell
unset tracker_url
unset piece_size
unset netinstall
unset chrootcfg
unset netgroups
unset geoip
}
check_profile(){
local keyfiles=("${profile_dir}/mkinitcpio.conf"
"${profile_dir}/Packages-Root"
"${profile_dir}/Packages-Live")
local keydirs=("${profile_dir}/root-overlay"
"${profile_dir}/live-overlay")
local has_keyfiles=false has_keydirs=false
for f in ${keyfiles[@]}; do
if [[ -f $f ]];then
has_keyfiles=true
else
has_keyfiles=false
break
fi
done
for d in ${keydirs[@]}; do
if [[ -d $d ]];then
has_keydirs=true
else
has_keydirs=false
break
fi
done
if ! ${has_keyfiles} && ! ${has_keydirs};then
die "Profile [%s] sanity check failed!" "${profile_dir}"
fi
local files=$(ls ${profile_dir}/Packages*)
for f in ${files[@]};do
case $f in
${profile_dir}/Packages-Root|${profile_dir}/Packages-Live|${profile_dir}/Packages-Mhwd) continue ;;
*) packages_custom="$f" ;;
esac
done
[[ -f "${profile_dir}/Packages-Mhwd" ]] && packages_mhwd=${profile_dir}/Packages-Mhwd
if ! ${netinstall}; then
chrootcfg="false"
fi
}
get_shared_list(){
local path
case ${edition} in
sonar|netrunner) path=${run_dir}/shared/${edition}/Packages-Desktop ;;
*) path=${run_dir}/shared/manjaro/Packages-Desktop ;;
esac
echo $path
}
# $1: file name
load_pkgs(){
info "Loading Packages: [%s] ..." "${1##*/}"
local _init _init_rm
case "${initsys}" in
'openrc')
_init="s|>openrc||g"
_init_rm="s|>systemd.*||g"
;;
*)
_init="s|>systemd||g"
_init_rm="s|>openrc.*||g"
;;
esac
local _multi _nonfree_default _nonfree_multi _arch _arch_rm _nonfree_i686 _nonfree_x86_64
case "${target_arch}" in
"i686")
_arch="s|>i686||g"
_arch_rm="s|>x86_64.*||g"
_multi="s|>multilib.*||g"
_nonfree_multi="s|>nonfree_multilib.*||g"
_nonfree_x86_64="s|>nonfree_x86_64.*||g"
if ${nonfree_mhwd};then
_nonfree_default="s|>nonfree_default||g"
_nonfree_i686="s|>nonfree_i686||g"
else
_nonfree_default="s|>nonfree_default.*||g"
_nonfree_i686="s|>nonfree_i686.*||g"
fi
;;
*)
_arch="s|>x86_64||g"
_arch_rm="s|>i686.*||g"
_nonfree_i686="s|>nonfree_i686.*||g"
if ${multilib};then
_multi="s|>multilib||g"
if ${nonfree_mhwd};then
_nonfree_default="s|>nonfree_default||g"
_nonfree_x86_64="s|>nonfree_x86_64||g"
_nonfree_multi="s|>nonfree_multilib||g"
else
_nonfree_default="s|>nonfree_default.*||g"
_nonfree_multi="s|>nonfree_multilib.*||g"
_nonfree_x86_64="s|>nonfree_x86_64.*||g"
fi
else
_multi="s|>multilib.*||g"
if ${nonfree_mhwd};then
_nonfree_default="s|>nonfree_default||g"
_nonfree_x86_64="s|>nonfree_x86_64||g"
_nonfree_multi="s|>nonfree_multilib.*||g"
else
_nonfree_default="s|>nonfree_default.*||g"
_nonfree_x86_64="s|>nonfree_x86_64.*||g"
_nonfree_multi="s|>nonfree_multilib.*||g"
fi
fi
;;
esac
local _edition _edition_rm
case "${edition}" in
'sonar')
_edition="s|>sonar||g"
_edition_rm="s|>manjaro.*||g"
;;
*)
_edition="s|>manjaro||g"
_edition_rm="s|>sonar.*||g"
;;
esac
local _blacklist="s|>blacklist.*||g" \
_kernel="s|KERNEL|$kernel|g" \
_used_kernel=${kernel:5:2} \
_space="s| ||g" \
_clean=':a;N;$!ba;s/\n/ /g' \
_com_rm="s|#.*||g" \
_purge="s|>cleanup.*||g" \
_purge_rm="s|>cleanup||g"
local list="$1"
if [[ "$list" == "${packages_custom}" ]];then
sort -u $(get_shared_list) ${packages_custom} > ${tmp_dir}/packages-desktop.list
list=${tmp_dir}/packages-desktop.list
fi
packages=$(sed "$_com_rm" "$list" \
| sed "$_space" \
| sed "$_blacklist" \
| sed "$_purge" \
| sed "$_init" \
| sed "$_init_rm" \
| sed "$_arch" \
| sed "$_arch_rm" \
| sed "$_nonfree_default" \
| sed "$_multi" \
| sed "$_nonfree_i686" \
| sed "$_nonfree_x86_64" \
| sed "$_nonfree_multi" \
| sed "$_kernel" \
| sed "$_edition" \
| sed "$_edition_rm" \
| sed "$_clean")
if [[ $1 == "${packages_mhwd}" ]]; then
local _used_kernel=${kernel:5:2}
[[ ${_used_kernel} < "42" ]] && local _amd="s|xf86-video-amdgpu||g"
packages_cleanup=$(sed "$_com_rm" "$1" \
| grep cleanup \
| sed "$_purge_rm" \
| sed "$_kernel" \
| sed "$_clean" \
| sed "$_amd")
fi
}
2016-08-21 15:20:29 +02:00
user_own(){
2016-09-15 23:58:18 +02:00
local flag=$2
chown ${flag} "${OWNER}:$(id --group ${OWNER})" "$1"
2016-08-21 15:20:29 +02:00
}
2015-02-16 20:32:47 +01:00
clean_dir(){
2016-09-15 23:58:18 +02:00
if [[ -d $1 ]]; then
msg "Cleaning [%s] ..." "$1"
rm -r $1/*
fi
2015-02-16 20:32:47 +01:00
}
2015-12-05 19:37:40 +01:00
write_repo_conf(){
2016-09-15 23:58:18 +02:00
local repos=$(find $USER_HOME -type f -name ".buildiso")
local path name
[[ -z ${repos[@]} ]] && run_dir=${DATADIR}/iso-profiles && return 1
for r in ${repos[@]}; do
path=${r%/.*}
name=${path##*/}
echo "run_dir=$path" > ${USERCONFDIR}/$name.conf
done
2015-12-05 19:37:40 +01:00
}
2015-01-13 13:41:28 +01:00
load_user_info(){
2016-09-15 23:58:18 +02:00
OWNER=${SUDO_USER:-$USER}
2015-01-13 13:41:28 +01:00
2016-09-15 23:58:18 +02:00
if [[ -n $SUDO_USER ]]; then
eval "USER_HOME=~$SUDO_USER"
else
USER_HOME=$HOME
fi
2015-02-09 23:38:12 +01:00
2016-09-15 23:58:18 +02:00
USERCONFDIR="$USER_HOME/.config/manjaro-tools"
prepare_dir "${USERCONFDIR}"
2015-01-13 13:41:28 +01:00
}
2015-02-14 10:49:16 +01:00
2015-12-05 19:37:40 +01:00
load_run_dir(){
2016-09-15 23:58:18 +02:00
[[ -f ${USERCONFDIR}/$1.conf ]] || write_repo_conf
[[ -r ${USERCONFDIR}/$1.conf ]] && source ${USERCONFDIR}/$1.conf
return 0
2015-12-05 19:37:40 +01:00
}
2015-05-22 16:51:45 +02:00
show_version(){
2016-09-15 23:58:18 +02:00
msg "manjaro-tools"
msg2 "version: %s" "${version}"
2015-05-22 16:51:45 +02:00
}
show_config(){
2016-09-15 23:58:18 +02:00
if [[ -f ${USERCONFDIR}/manjaro-tools.conf ]]; then
msg2 "user_config: %s" "${USERCONFDIR}/manjaro-tools.conf"
else
msg2 "manjaro_tools_conf: %s" "${manjaro_tools_conf}"
fi
msg2 "log_dir: %s" "${log_dir}"
2015-05-22 16:51:45 +02:00
}
2015-05-31 23:32:50 +02:00
# $1: chroot
kill_chroot_process(){
2016-09-15 23:58:18 +02:00
# enable to have more debug info
#msg "machine-id (etc): $(cat $1/etc/machine-id)"
#[[ -e $1/var/lib/dbus/machine-id ]] && msg "machine-id (lib): $(cat $1/var/lib/dbus/machine-id)"
#msg "running processes: "
#lsof | grep $1
local prefix="$1" flink pid name
for root_dir in /proc/*/root; do
flink=$(readlink $root_dir)
if [ "x$flink" != "x" ]; then
if [ "x${flink:0:${#prefix}}" = "x$prefix" ]; then
# this process is in the chroot...
pid=$(basename $(dirname "$root_dir"))
name=$(ps -p $pid -o comm=)
info "Killing chroot process: %s (%s)" "$name" "$pid"
kill -9 "$pid"
fi
fi
done
2015-05-31 23:32:50 +02:00
}
2015-06-01 01:09:05 +02:00
2015-06-01 23:15:29 +02:00
create_min_fs(){
2016-09-15 23:58:18 +02:00
msg "Creating install root at %s" "$1"
mkdir -m 0755 -p $1/var/{cache/pacman/pkg,lib/pacman,log} $1/{dev,run,etc}
mkdir -m 1777 -p $1/tmp
mkdir -m 0555 -p $1/{sys,proc}
2015-06-01 15:52:03 +02:00
}
2015-06-09 01:14:58 +02:00
2015-06-15 10:51:40 +02:00
is_valid_init(){
2016-09-15 23:58:18 +02:00
case $1 in
'openrc'|'systemd') return 0 ;;
*) return 1 ;;
esac
}
2015-11-26 12:26:21 +01:00
2015-11-27 12:22:38 +01:00
is_valid_arch_pkg(){
2016-09-15 23:58:18 +02:00
eval "case $1 in
$(show_build_profiles "${make_conf_dir}")) return 0 ;;
*) return 1 ;;
esac"
2015-11-27 12:22:38 +01:00
}
is_valid_arch_iso(){
2016-09-15 23:58:18 +02:00
case $1 in
'i686'|'x86_64') return 0 ;;
*) return 1 ;;
esac
2015-11-27 12:22:38 +01:00
}
2015-11-28 17:37:13 +01:00
is_valid_branch(){
2016-09-15 23:58:18 +02:00
case $1 in
'stable'|'testing'|'unstable') return 0 ;;
*) return 1 ;;
esac
2015-11-28 17:37:13 +01:00
}
run(){
2016-09-15 23:58:18 +02:00
if ${is_build_list};then
for item in ${build_list[@]};do
$1 $item
done
else
$1 $2
fi
2015-11-28 17:37:13 +01:00
}