diff -pruN 25-1/arch-chroot.in 26-1/arch-chroot.in
--- 25-1/arch-chroot.in	2022-07-03 12:01:26.000000000 +0000
+++ 26-1/arch-chroot.in	2022-07-29 22:50:36.000000000 +0000
@@ -5,7 +5,7 @@ shopt -s extglob
 m4_include(common)
 
 setup=chroot_setup
-unshare="$root_unshare"
+unshare=0
 
 usage() {
   cat <<EOF
@@ -82,7 +82,7 @@ while getopts ':hNu:' flag; do
       ;;
     N)
       setup=unshare_setup
-      unshare="$user_unshare"
+      unshare=1
       ;;
     u)
       userspec=$OPTARG
@@ -116,8 +116,12 @@ arch-chroot() {
   chroot_args=()
   [[ $userspec ]] && chroot_args+=(--userspec "$userspec")
 
-  SHELL=/bin/bash chroot "${chroot_args[@]}" -- "$chrootdir" "${args[@]}"
+  SHELL=/bin/bash $pid_unshare chroot "${chroot_args[@]}" -- "$chrootdir" "${args[@]}"
 }
 
 args=("$@")
-$unshare bash -c "$(declare_all); arch-chroot"
+if (( unshare )); then
+  $mount_unshare bash -c "$(declare_all); arch-chroot"
+else
+  arch-chroot
+fi
diff -pruN 25-1/common 26-1/common
--- 25-1/common	2022-07-03 12:01:26.000000000 +0000
+++ 26-1/common	2022-07-29 22:50:36.000000000 +0000
@@ -152,8 +152,8 @@ unshare_teardown() {
   unset CHROOT_ACTIVE_FILES
 }
 
-root_unshare="unshare --fork --pid"
-user_unshare="$root_unshare --mount --map-auto --map-root-user --setuid 0 --setgid 0"
+pid_unshare="unshare --fork --pid"
+mount_unshare="$pid_unshare --mount --map-auto --map-root-user --setuid 0 --setgid 0"
 
 # This outputs code for declaring all variables to stdout. For example, if
 # FOO=BAR, then running
diff -pruN 25-1/debian/changelog 26-1/debian/changelog
--- 25-1/debian/changelog	2022-07-05 05:35:20.000000000 +0000
+++ 26-1/debian/changelog	2022-08-05 22:08:20.000000000 +0000
@@ -1,3 +1,12 @@
+arch-install-scripts (26-1) unstable; urgency=medium
+
+  * New upstream version 26.
+  * d/control: Suggest pacman-package-manager and update description.
+  * d/rules:
+    - Drop removal of pacstrap, pacman is now in Debian. (Closes: #1016714)
+
+ -- Unit 193 <unit193@debian.org>  Fri, 05 Aug 2022 18:08:20 -0400
+
 arch-install-scripts (25-1) unstable; urgency=medium
 
   * d/watch: Update, GitHub no longer includes tags on releases page.
diff -pruN 25-1/debian/control 26-1/debian/control
--- 25-1/debian/control	2022-07-05 05:34:57.000000000 +0000
+++ 26-1/debian/control	2022-08-05 22:07:18.000000000 +0000
@@ -13,6 +13,7 @@ Package: arch-install-scripts
 Architecture: all
 Multi-Arch: foreign
 Depends: ${misc:Depends}
+Suggests: pacman-package-manager
 Description: scripts aimed at automating some menial tasks
  arch-install-scripts provides a small suite of scripts originally meant to
  automate some menial tasks during the installation of an Arch system.
@@ -20,5 +21,6 @@ Description: scripts aimed at automating
  Debian-based system.
  .
  This package contains:
- - genfstab: Automatically generate an fstab file
  - arch-chroot: Set up bind mounts and chroot into the target system.
+ - genfstab: Automatically generate an fstab file.
+ - pacstrap: Bootstrap Archlinux via pacman.
diff -pruN 25-1/debian/rules 26-1/debian/rules
--- 25-1/debian/rules	2021-08-11 22:40:51.000000000 +0000
+++ 26-1/debian/rules	2022-08-05 22:07:47.000000000 +0000
@@ -8,4 +8,3 @@
 
 override_dh_auto_install:
 	make PREFIX=/usr DESTDIR="$(CURDIR)/debian/arch-install-scripts" install
-	find debian/arch-install-scripts -name 'pacstrap*' -delete
diff -pruN 25-1/pacstrap.in 26-1/pacstrap.in
--- 25-1/pacstrap.in	2022-07-03 12:01:26.000000000 +0000
+++ 26-1/pacstrap.in	2022-07-29 22:50:36.000000000 +0000
@@ -17,7 +17,7 @@ copykeyring=1
 copymirrorlist=1
 pacmode=-Sy
 setup=chroot_setup
-unshare="$root_unshare"
+unshare=0
 
 usage() {
   cat <<EOF
@@ -67,7 +67,7 @@ while getopts ':C:cdGiMNU' flag; do
       ;;
     N)
       setup=unshare_setup
-      unshare="$user_unshare"
+      unshare=1
       ;;
     U)
       pacmode=-U
@@ -120,7 +120,7 @@ pacstrap() {
   fi
 
   msg 'Installing packages to %s' "$newroot"
-  if ! pacman -r "$newroot" $pacmode "${pacman_args[@]}"; then
+  if ! $pid_unshare pacman -r "$newroot" $pacmode "${pacman_args[@]}"; then
     die 'Failed to install packages to new root'
   fi
 
@@ -130,6 +130,10 @@ pacstrap() {
   fi
 }
 
-$unshare bash -c "$(declare_all); pacstrap"
+if (( unshare )); then
+  $mount_unshare bash -c "$(declare_all); pacstrap"
+else
+  pacstrap
+fi
 
 # vim: et ts=2 sw=2 ft=sh:
