diff options
Diffstat (limited to 'system/docker/docker.SlackBuild')
-rw-r--r-- | system/docker/docker.SlackBuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/system/docker/docker.SlackBuild b/system/docker/docker.SlackBuild index 9d54c1e59d..c84d20eb89 100644 --- a/system/docker/docker.SlackBuild +++ b/system/docker/docker.SlackBuild @@ -5,11 +5,11 @@ # Written by Vincent Batts <vbatts@hashbangbash.com> PRGNAM=docker -VERSION=${VERSION:-0.11.1} +VERSION=${VERSION:-1.0.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -GITHASH=${GITHASH:-fb99f99} +GITHASH=${GITHASH:-990021a} if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -47,9 +47,10 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/v${VERSION}.tar.gz || tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -find -L . \ +# the have symlinks in their testdata that goes outside the context of this build +find . ! -type l \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ + -o -perm 511 \) -exec chmod 755 {} \; -o ! -type l \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; |