99-disable-multiarch 258 B

123456789101112
  1. #!/bin/sh
  2. set -e
  3. echo "Disabling multiarch in APT"
  4. # Note that we cannot do "dpkg --remove-architecture amd64"
  5. # as we have amd64 packages installed, that we want to keep.
  6. echo 'APT::Architectures {"i386";};' \
  7. > /etc/apt/apt.conf.d/13architectures