set -e
 cd $(dirname "$0")
 . lib/abort.sh
-. lib/apt_get_digested.sh
+. lib/apt_digested.sh
 . lib/constants_etc.sh  # PATH_ETC
 . lib/constants_releases.sh  # PREV_RELEASE, THIS_RELEASE
 . lib/expect_n_args.sh
 
 apt_update_to_full_upgrade() {
     prefixed_msg 'Updating package database …'
-    apt_get_digested '-q -q update'
+    apt_digested '-q -q update'
     prefixed_msg 'Autopurge!'
-    apt_get_digested '-q -q autopurge'
+    apt_digested '-q -q autopurge'
 
     prefixed_msg 'Soft-upgrading …'
-    apt_get_digested '-q -q --purge -o Dpkg::Options::=--force-confnew upgrade'
+    apt_digested '-q -q --purge -o Dpkg::Options::=--force-confnew upgrade'
     prefixed_msg 'Autopurge!'
-    apt_get_digested '-q -q autopurge'
+    apt_digested '-q -q autopurge'
 
     prefixed_msg 'Full-upgrading …'
-    apt_get_digested '-q -q --purge -o Dpkg::Options::=--force-confnew full-upgrade'
+    apt_digested '-q -q --purge -o Dpkg::Options::=--force-confnew full-upgrade'
     prefixed_msg 'Autopurge!'
-    apt_get_digested '-q -q autopurge'
+    apt_digested '-q -q autopurge'
 }
 PATH_ETC_APT="${PATH_ETC}/apt"
 PATH_ETC_APT_CONF=${PATH_ETC_APT}/apt.conf.d
 apt_update_to_full_upgrade
 
 prefixed_msg 'Autopurge!'
-apt_get_digested  '-q -q autopurge'
+apt_digested  '-q -q autopurge'
 
 prefixed_msg_exit
 
 cd "${ROOT}"
 . lib/abort.sh
 . lib/abort_if_offline.sh
-. lib/apt_get_digested.sh
+. lib/apt_digested.sh
 . lib/constants_etc.sh  # PATH_ETC
 . lib/constants_user.sh  # USERNAME
 . lib/copy_dirtrees_of_tags.sh
 }
 
 # NB: This needs to come before steps potentially overwriting /etc/network/interfaces.
-apt_get_digested '-q -q install network-manager'
+apt_digested '-q -q install network-manager'
 if [ "$(nmcli -f TYPE conn | grep -c 'wifi')" = "0" ]; then
     prefixed_msg "Checking for existing wifi config in ${PATH_NETWORK_INTERFACES} …"
     adopt_wifi_connection