This repository has been archived on 2024-05-18. You can view files and clone it, but cannot push or open issues or pull requests.
|
#! /bin/bash
|
|
|
|
error=0; trap 'error=$(($?>$error?$?:$error))' ERR # save maximum error code
|
|
|
|
# Remove APT proxy
|
|
rm -f $target/etc/apt/apt.conf.d/02proxy
|
|
|
|
exit $error
|