base-files: fix syntax error in the INSTALL script.

This commit is contained in:
Juan RP 2015-06-03 10:49:53 +02:00
parent 428c34d1f0
commit d56c479cb8
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ post)
echo "Creating system directories/symlinks..."
make_system_dirs
# Enable shadow passwd/groups.
if [ -x bin/pwconv && -x bin/grpconv -a "$(id -u)" -eq 0 ]; then
if [ -x bin/pwconv -a -x bin/grpconv -a "$(id -u)" -eq 0 ]; then
pwconv && grpconv
fi
;;

View File

@ -1,6 +1,6 @@
# Template file for 'base-files'
pkgname=base-files
version=0.126
version=0.125
revision=1
bootstrap=yes
depends="xbps-triggers"