diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-28 09:39:27 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-28 09:40:35 +0200 |
commit | 70eeae24c66c30e96e3b03fc2f8149501e6a74f9 (patch) | |
tree | 5e6ad49742314ada6a63e5759196ac38cad332fb /hosts/freebsd-jenkins | |
parent | c81964fb9b3e70edcfdfb700b8e2f92d06e3ee56 (diff) | |
download | jenkins.debian.net-70eeae24c66c30e96e3b03fc2f8149501e6a74f9.tar.xz |
reproducible freebsd: remove traces of /usr/obj usage
Diffstat (limited to 'hosts/freebsd-jenkins')
-rw-r--r-- | hosts/freebsd-jenkins/usr/local/etc/sudoers | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/hosts/freebsd-jenkins/usr/local/etc/sudoers b/hosts/freebsd-jenkins/usr/local/etc/sudoers index d09b6696..978b0b84 100644 --- a/hosts/freebsd-jenkins/usr/local/etc/sudoers +++ b/hosts/freebsd-jenkins/usr/local/etc/sudoers @@ -97,13 +97,11 @@ jenkins ALL= NOPASSWD: /usr/bin/make -j ? buildworld, \ /usr/bin/make -j ? installworld, \ /usr/bin/make -j ? installkernel, \ /usr/bin/make -j ? distribution, \ - /bin/rm -r /usr/src /usr/obj, \ - /bin/rm -r /usr/obj, \ + /bin/rm -rf /usr/src, \ /bin/rm -r /srv/reproducible-results/* /srv/reproducible-results/*.tar.xz, \ /bin/chflags -R noschg /srv/reproducible-results/*, \ - /bin/mkdir /usr/obj, \ - /bin/mkdir /usr/src /usr/obj, \ - /usr/sbin/chown jenkins /usr/src /usr/obj, \ + /bin/mkdir /usr/src, \ + /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 |