X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=src%2Fpackage-manager-abstractions;h=e56ec48f1cd12e8c04000c99d898e76fc5b1b4db;hb=5811d8d38638af3d6f06437cdb66111abe106778;hp=34e32a6e43ea4922b2cf862079b1dedc14c67562;hpb=31565958031fc7e309693b9aadadc374d687e2d8;p=distro-functions diff --git a/src/package-manager-abstractions b/src/package-manager-abstractions index 34e32a6..e56ec48 100644 --- a/src/package-manager-abstractions +++ b/src/package-manager-abstractions @@ -48,6 +48,31 @@ if command -v yum &> /dev/null; then } elif command -v apt-get &>/dev/null; then + plock-wait() { + local i + i=0 + while fuser /var/lib/dpkg/lock &>/dev/null; do + sleep 1 + i=$(( i+1 )) + if (( i > 300 )); then + echo "error: timed out waiting for /var/lib/dpkg/lock" >&2 + return 1 + fi + done + } + pcheck() { + for arg; do + if [[ $1 == -* ]]; then + shift + else + break + fi + done + if dpkg -s -- "$@" |& grep -Fx "Status: install ok installed" &>/dev/null; then + return 1 + fi + return 0 + } pp() { # package policy apt-cache policy $@ } @@ -63,39 +88,69 @@ elif command -v apt-get &>/dev/null; then esac } pupdate() { - local s f; [[ $EUID != 0 ]] && s=sudo + local now t s f cachetime limittime; [[ $EUID != 0 ]] && s=sudo # update package list if its more than an 2 hours old f=/var/cache/apt/pkgcache.bin - if [[ ! -r $f ]] \ - || (( $(( $(date +%s) - $(stat -c %Y $f ) )) > 60*60*2 )); then + if [[ -r $f ]]; then + cachetime=$(stat -c %Y $f ) + else + cachetime=0 + fi + now=$(date +%s) + limittime=$(( now - 60*60*2 )) + for f in /etc/apt/sources.list /etc/apt/sources.list.d/*.list; do + if [[ -r $f ]]; then + t=$(stat -c %Y $f ) + if (( t > limittime )); then + limittime=$t + fi + fi + done + if (( cachtime > limittime )); then $s apt-get update fi } pi() { - if dpkg -s -- "$@" | grep -Fx "Status: install ok installed" &>/dev/null; then - return 0 - fi - while fuser /var/lib/dpkg/lock &>/dev/null; do sleep 1; done + pcheck "$@" || return 0 pupdate - local s; [[ $EUID != 0 ]] && s=sudo - $s $PI_PREFIX apt-get -y --allow-downgrades install --purge --auto-remove "$@" + if [[ $- != *i* ]]; then + echo pi "$*" + fi + if [[ $EUID == 0 ]]; then + DEBIAN_FRONTEND=noninteractive apt-get -y install --purge --auto-remove "$@" + else + sudo DEBIAN_FRONTEND=noninteractive apt-get -y install --purge --auto-remove "$@" + fi + } pi-nostart() { - if dpkg -s -- "$@" &>/dev/null; then - return 0 - fi - while fuser /var/lib/dpkg/lock &>/dev/null; do sleep 1; done + local ret= + pcheck "$@" || return 0 + plock-wait pupdate - local s; [[ $EUID != 0 ]] && s=sudo local f=/usr/sbin/policy-rc.d - $s dd of=$f </dev/null </dev/null </dev/null; do sleep 1; done - $s apt-get -y remove --allow-downgrades --purge --auto-remove "$@" + local needed=false + for arg; do + if dpkg -s -- "$arg" &>/dev/null; then + needed=true + break + fi + done + $needed || return 0 + plock-wait + $s apt-get -y remove --purge --auto-remove "$@" # seems slightly redundant, but it removes more stuff sometimes. - $s apt-get -y --allow-downgrades autoremove + $s apt-get -y autoremove } pup() { # upgrade - while fuser /var/lib/dpkg/lock &>/dev/null; do sleep 1; done + plock-wait pupdate local s; [[ $EUID != 0 ]] && s=sudo - $s apt-get -y dist-upgrade --allow-downgrades --purge --auto-remove "$@" - $s apt-get -y autoremove --allow-downgrades - $s checkrestart + $s apt-get -y dist-upgrade --purge --auto-remove "$@" + $s apt-get -y autoremove + if [[ -e /usr/sbin/checkrestart ]]; then + $s /usr/sbin/checkrestart -p + fi } # package info pl() { @@ -135,6 +200,11 @@ EOF fi } pfile() { + # -a = search all repos + local -a arg + if [[ $1 != -a ]]; then + arg=(--filter-origins "$(positive-origins)") + fi local file=$1 # ucfq can tell us about config files which are not tracked # with apt-file. but, for at least a few files I tested @@ -145,10 +215,12 @@ EOF # if [[ $file == /* ]] && ! ucfq -w $file | grep ::: &>/dev/null; then # ucfq $file - if [[ $file == */* ]]; then - apt-file find -x "$file"\$ + if [[ $file == /* ]]; then + dpkg -S "$file" + elif [[ $file == */* ]]; then + apt-file "${arg[@]}" find -x "$file"\$ else - apt-file find -x /"$file"\$ + apt-file "${arg[@]}" find -x /"$file"\$ update-alternatives --list "$file" 2>/dev/null fi }