Initial import

This commit is contained in:
Saúl Ibarra Corretgé
2018-03-14 10:23:13 +01:00
commit 467a149cbb
37 changed files with 1010 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
Dir::Cache "";
Dir::Cache::archives "";
APT::Install-Recommends "false";
APT::Install-Suggests "false";

View File

View File

View File

@@ -0,0 +1,6 @@
#!/usr/bin/with-contenv sh
if [ $TZ ]; then
[ -f /usr/share/zoneinfo/$TZ ] && cp /usr/share/zoneinfo/$TZ /etc/localtime || echo "WARNING: $TZ is not a valid time zone."
[ -f /usr/share/zoneinfo/$TZ ] && echo "$TZ" > /etc/timezone
fi

View File

View File

View File

@@ -0,0 +1,4 @@
#!/bin/sh
rm -f /*.deb
rm -rf /var/lib/apt/lists/

View File

@@ -0,0 +1,8 @@
#!/bin/sh
export LC_ALL=C
export DEBIAN_FRONTEND=noninteractive
bin=$1
shift
exec "$bin" "$@"