diff options
author | Anders Kaseorg <andersk@mit.edu> | 2016-12-10 15:40:08 -0500 |
---|---|---|
committer | Mattia Rizzolo <mattia@debian.org> | 2016-12-10 23:52:45 +0100 |
commit | 2cf1bec3efcc9b50aa6eb3cb48d8780538116297 (patch) | |
tree | e6c13e20518db13705aba45f29d69f12acfae03b /hosts/freebsd-jenkins/usr/local/etc | |
parent | f639c1ca1f06682eb29756df2e00f63a4e6c1fdd (diff) | |
download | jenkins.debian.net-2cf1bec3efcc9b50aa6eb3cb48d8780538116297.tar.xz |
reproducible FreeBSD: Fix tar argument order for tar 1.28
--no-recursion now only applies to the following arguments. See
https://bugs.debian.org/829738.
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
Signed-off-by: Mattia Rizzolo <mattia@debian.org>
Diffstat (limited to 'hosts/freebsd-jenkins/usr/local/etc')
-rw-r--r-- | hosts/freebsd-jenkins/usr/local/etc/sudoers | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/freebsd-jenkins/usr/local/etc/sudoers b/hosts/freebsd-jenkins/usr/local/etc/sudoers index 5408368a..06e26d9f 100644 --- a/hosts/freebsd-jenkins/usr/local/etc/sudoers +++ b/hosts/freebsd-jenkins/usr/local/etc/sudoers @@ -104,7 +104,7 @@ jenkins ALL= NOPASSWD: /usr/bin/make -j ? buildworld, \ /usr/sbin/chown jenkins /usr/src, \ /usr/bin/find /srv/reproducible-results/* -newer /srv/reproducible-results/* -exec touch *, \ /usr/bin/find /srv/reproducible-results/* -print0, \ - /usr/bin/tar --null -T - --no-recursion -cJf *.tar.xz, \ + /usr/bin/tar --no-recursion --null -T - -cJf *.tar.xz, \ /usr/sbin/service ntpd start, \ /usr/sbin/service ntpd stop, \ /usr/sbin/service ntpd status, \ |