more updates march
This commit is contained in:
2
jitsi/base/rootfs/etc/apt/apt.conf.d/99local
Normal file
2
jitsi/base/rootfs/etc/apt/apt.conf.d/99local
Normal file
@@ -0,0 +1,2 @@
|
||||
APT::Install-Recommends "false";
|
||||
APT::Install-Suggests "false";
|
||||
0
jitsi/base/rootfs/etc/cont-finish.d/.gitkeep
Normal file
0
jitsi/base/rootfs/etc/cont-finish.d/.gitkeep
Normal file
0
jitsi/base/rootfs/etc/cont-init.d/.gitkeep
Normal file
0
jitsi/base/rootfs/etc/cont-init.d/.gitkeep
Normal file
10
jitsi/base/rootfs/etc/cont-init.d/01-set-timezone
Normal file
10
jitsi/base/rootfs/etc/cont-init.d/01-set-timezone
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/usr/bin/with-contenv bash
|
||||
|
||||
if [[ ! -z "$TZ" ]]; then
|
||||
if [[ -f /usr/share/zoneinfo/$TZ ]]; then
|
||||
ln -sf /usr/share/zoneinfo/$TZ /etc/localtime
|
||||
echo "$TZ" > /etc/timezone
|
||||
else
|
||||
echo "WARNING: $TZ is not a valid time zone."
|
||||
fi
|
||||
fi
|
||||
0
jitsi/base/rootfs/etc/fix-attrs.d/.gitkeep
Normal file
0
jitsi/base/rootfs/etc/fix-attrs.d/.gitkeep
Normal file
0
jitsi/base/rootfs/etc/services.d/.gitkeep
Normal file
0
jitsi/base/rootfs/etc/services.d/.gitkeep
Normal file
3
jitsi/base/rootfs/usr/bin/apt-cleanup
Executable file
3
jitsi/base/rootfs/usr/bin/apt-cleanup
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
rm -rf /var/lib/apt/lists/
|
||||
8
jitsi/base/rootfs/usr/bin/apt-dpkg-wrap
Executable file
8
jitsi/base/rootfs/usr/bin/apt-dpkg-wrap
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
export LC_ALL=C
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
bin=$1
|
||||
shift
|
||||
exec "$bin" "$@"
|
||||
Reference in New Issue
Block a user