mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
core/filesystem to 2015.02-1
This commit is contained in:
parent
13c2304b10
commit
ea2f95fbb0
5 changed files with 9 additions and 6 deletions
|
@ -5,8 +5,8 @@
|
|||
# - modifed os-release
|
||||
|
||||
pkgname=filesystem
|
||||
pkgver=2014.10
|
||||
pkgrel=3
|
||||
pkgver=2015.02
|
||||
pkgrel=1
|
||||
pkgdesc='Base filesystem'
|
||||
arch=('i686' 'x86_64')
|
||||
license=('GPL')
|
||||
|
@ -22,7 +22,7 @@ source=('group' 'issue' 'nsswitch.conf' 'securetty' 'host.conf' 'ld.so.conf'
|
|||
'passwd' 'shadow' 'fstab' 'crypttab' 'hosts' 'motd' 'os-release' 'resolv.conf'
|
||||
'shells' 'gshadow' 'profile' 'modprobe.d.usb-load-ehci-first' 'archlinux.7.txt'
|
||||
'locale.sh')
|
||||
md5sums=('d46cb1adf8175888cc827a3dad8857d2'
|
||||
md5sums=('4d7417d2bf8872665c0907f09ae37c34'
|
||||
'7813c481156f6b280a3ba91fc6236368'
|
||||
'9e4533df61f0c82d6b2e2371f7376282'
|
||||
'4c4540eeb748bf1f71d631b8c1dcf0b3'
|
||||
|
@ -37,11 +37,11 @@ md5sums=('d46cb1adf8175888cc827a3dad8857d2'
|
|||
'52db9503314f639b8f47bd9a251a6ea9'
|
||||
'6f48288b6fcaf0065fcb7b0e525413e0'
|
||||
'22518e922891f9359f971f4f5b4e793c'
|
||||
'09bce9236c3729d31aaa528bcf5d198e'
|
||||
'69e460404f45bdb7288d1de662e56dd9'
|
||||
'0b6f835598c7640184e476057b3c7722'
|
||||
'a8a962370cd0128465d514e6a1f74130'
|
||||
'2e193c4a37245f2323ebe87f1a673563'
|
||||
'2caa30a2c91580dc12f053231f237608')
|
||||
'71ed98c52e11ada1f936ac8cb14eecd9')
|
||||
|
||||
lint() {
|
||||
# ensure that passwd is sync'd to shadow and group is sync'd to gshadow.
|
||||
|
|
|
@ -24,6 +24,7 @@ post_upgrade() {
|
|||
_addgroup network -g 90
|
||||
_addgroup games -g 50
|
||||
_addgroup uucp -g 14
|
||||
_addgroup proc -g 26
|
||||
_addgroup http -g 33
|
||||
_adduser http -u 33 -d /srv/http -g http -s /usr/bin/nologin
|
||||
_addgroup scanner -g 96
|
||||
|
|
|
@ -17,6 +17,7 @@ utmp:x:20:
|
|||
locate:x:21:
|
||||
rfkill:x:24:
|
||||
smmsp:x:25:
|
||||
proc:x:26:
|
||||
http:x:33:
|
||||
games:x:50:
|
||||
lock:x:54:
|
||||
|
|
|
@ -17,6 +17,7 @@ utmp:x::
|
|||
locate:::
|
||||
rfkill:x::
|
||||
smmsp:::
|
||||
proc:::
|
||||
http:::
|
||||
games:::
|
||||
lock:::
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
if [ -z "$LANG" ]; then
|
||||
if [ -n "$XDG_CONFIG_HOME" ] && [ -r "$XDG_CONFIG_HOME/locale.conf" ]; then
|
||||
. "$XDG_CONFIG_HOME/locale.conf"
|
||||
elif [ -n $HOME ] && [ -r $HOME/.config/locale.conf ]; then
|
||||
elif [ -n "$HOME" ] && [ -r "$HOME/.config/locale.conf" ]; then
|
||||
. "$HOME/.config/locale.conf"
|
||||
elif [ -r /etc/locale.conf ]; then
|
||||
. /etc/locale.conf
|
||||
|
|
Loading…
Reference in a new issue