Sat, 06 Oct 2012 16:24:01 +0200
Update to new vendor software version and adjust patch code accordingly.
Unfortunately the vendor has apparently failed to properly test this
release which depends on missing object symbols in libsasl2.a(common.o):
undefined reference to `sasl_randcreate'
undefined reference to `sasl_mkchal'
undefined reference to `sasl_utf8verify'
undefined reference to `sasl_rand'
undefined reference to `sasl_churn'
undefined reference to `sasl_encode64'
undefined reference to `sasl_decode64'
undefined reference to `sasl_erasebuffer'
undefined reference to `sasl_randfree'
undefined reference to `sasl_strlower'
undefined reference to `get_fqhostname'
...yet to be patched.
michael@456 | 1 | ## |
michael@456 | 2 | ## sudoers -- global sudoers(5) specification |
michael@456 | 3 | ## Hint: general structure is "who where = (as_whom) what" |
michael@456 | 4 | ## |
michael@456 | 5 | |
michael@456 | 6 | #includedir @l_prefix@/etc/sudo/sudoers.d |
michael@456 | 7 | |
michael@456 | 8 | # - allow root (first entry) and |
michael@456 | 9 | # - anybody in group "wheel" (second entry) |
michael@456 | 10 | # - to run on all hosts |
michael@456 | 11 | # - under any user |
michael@456 | 12 | # - without password request |
michael@456 | 13 | # - with set environment variables |
michael@456 | 14 | # - any command |
michael@456 | 15 | root ALL = (ALL) NOPASSWD: SETENV: ALL |
michael@456 | 16 | %wheel ALL = (ALL) NOPASSWD: SETENV: ALL |
michael@456 | 17 |