diff options
author | Vincent Batts <vbatts@hashbangbash.com> | 2014-06-25 23:25:27 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-06-25 23:25:27 +0700 |
commit | fe4b965a7eb917fddf2ae9e82712413078a8d2cd (patch) | |
tree | 8bcd65eb27fd91575e39f85dfba58b01979fd09f /system/docker/docker.SlackBuild | |
parent | 772a4143deb3a76b6ccd496c4d1017ed2d21f702 (diff) | |
download | slackbuilds-fe4b965a7eb917fddf2ae9e82712413078a8d2cd.tar.gz |
system/docker: Updated for version 1.0.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
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 {} \; |