From 494ac82c844dc38eb5097186f2aecf5a1df3b185 Mon Sep 17 00:00:00 2001 From: merakor Date: Wed, 29 Apr 2020 12:49:25 +0000 Subject: kiss: revert to using rsync FossilOrigin-Name: 4f27649852246d628cbece77592203e613e6dc1d55306edf041f52f3ce08eb83 --- kiss | 55 ++++++++++--------------------------------------------- 1 file changed, 10 insertions(+), 45 deletions(-) diff --git a/kiss b/kiss index a813b87..5daa7ec 100755 --- a/kiss +++ b/kiss @@ -850,48 +850,6 @@ pkg_swap() { sed -i "$(esc "$PWD/$alt" "$2")" "../installed/$1/manifest" } -pkg_install_files() { - # Store the total lines in the manifest file for use in the - # installation counter output. - man_tot=$(wc -l < "$2/$pkg_db/${2##*/}/manifest") - - # Do a dictionary sort of the file so that we list directories first. - sort "$2/$pkg_db/${2##*/}/manifest" | - while read -r line; do i=$((i+1)) - # Grab the permissions so that we can preserve them. - rwx=$(stat -c %a "$tar_dir/$pkg_name/$line") - - # Copy files and create directories (preserving permissions), - # skipping anything located in /etc/. - # - # The 'test' will run with '-e' for no-overwrite and '-z' - # for overwrite. - case $line in /etc/*) ;; - */) [ -d "$KISS_ROOT/$line" ] || - install -o root -g root -m "$rwx" \ - -d "$KISS_ROOT/$line" - - chmod -s "$KISS_ROOT/$line" - ;; - - *) test "$1" "$KISS_ROOT/$line" || - if [ -h "$2/$line" ]; then - [ -d "$KISS_ROOT/$line" ] && continue - - cp -fPp "$2/$line" "$KISS_ROOT/${line%/*}" - chown -h root:root "$KISS_ROOT/$line" - else - install -o root -g root -m "$rwx" \ - "$2/$line" "$KISS_ROOT/$line" - fi - esac - - printf '%s %s (%s)\e[J\r' "$3" "$i/$man_tot" "$line" - done - - printf '\n' -} - pkg_etc() { [ -d "$tar_dir/$pkg_name/etc" ] || return 0 @@ -1066,9 +1024,16 @@ pkg_install() { cp -f "$sys_db/$pkg_name/manifest" "$mak_dir/m" 2>/dev/null ||: cp -f "$sys_db/$pkg_name/etcsums" "$mak_dir/c" 2>/dev/null ||: - # The sort command is used to list directories first. + # This is repeated multiple times. Better to make it a function. + pkg_rsync() { + rsync --chown=root:root --chmod=Du-s,Dg-s,Do-s \ + -WhHKa --no-compress --exclude /etc "${1:---}" \ + "$tar_dir/$pkg_name/" "$KISS_ROOT/" + } - pkg_install_files -z "$tar_dir/$pkg_name" "Installing file" + # Install the package by using 'rsync' and overwrite any existing files + # (excluding '/etc/'). + pkg_rsync --info=progress2 pkg_etc # Remove any leftover files if this is an upgrade. @@ -1098,7 +1063,7 @@ pkg_install() { done ||: log "$pkg_name" "Verifying installation" - pkg_install_files -e "$tar_dir/$pkg_name" "Checking file" + { pkg_rsync; pkg_rsync; } ||: # Reset 'trap' to its original value. Installation is done so # we no longer need to block 'Ctrl+C'. -- cgit v1.2.3