diff options
author | Chloe Kudryavtsev <toast@toastin.space> | 2019-03-16 20:33:35 -0400 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-04-02 15:07:16 +0000 |
commit | 7edadb1a5472a0be922306a2e4a713b9ad4704db (patch) | |
tree | b68dfa86961d39d4cdb8b97f08b0e00aba5d1209 /main | |
parent | 5124dc1e027b9e18fac93a84bb3357c0afebdd11 (diff) | |
download | aports-7edadb1a5472a0be922306a2e4a713b9ad4704db.tar.bz2 aports-7edadb1a5472a0be922306a2e4a713b9ad4704db.tar.xz |
main/alpine-baselayout: Properly initialize TZ
/etc/TZ has no meaning.
musl interprets the contents of $TZ.
-> set $TZ in profile.d, to be overriden by setup-alpine
Diffstat (limited to 'main')
-rw-r--r-- | main/alpine-baselayout/APKBUILD | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/main/alpine-baselayout/APKBUILD b/main/alpine-baselayout/APKBUILD index 044eb25333..e43435d656 100644 --- a/main/alpine-baselayout/APKBUILD +++ b/main/alpine-baselayout/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=alpine-baselayout -pkgver=3.1.0 -pkgrel=3 +pkgver=3.1.1 +pkgrel=0 pkgdesc="Alpine base dir structure and init scripts" url="https://git.alpinelinux.org/cgit/aports/tree/main/alpine-baselayout" arch="all" @@ -119,7 +119,6 @@ package() { "$srcdir"/kms.conf \ "$pkgdir"/etc/modprobe.d/ - echo "UTC" > "$pkgdir"/etc/TZ echo "localhost" > "$pkgdir"/etc/hostname cat > "$pkgdir"/etc/hosts <<-EOF 127.0.0.1 localhost localhost.localdomain |