2e20424a47
- added subpackage with a test for fate#313276 OBS-URL: https://build.opensuse.org/request/show/215868 OBS-URL: https://build.opensuse.org/package/show/Base:System/sudo?expand=0&rev=69
15 lines
258 B
Bash
15 lines
258 B
Bash
#!/bin/sh
|
|
|
|
if [ $(id -u) -ne 0 ]; then
|
|
printf "Please run the test as root.\n"
|
|
exit 1
|
|
fi
|
|
|
|
if sudo -V | grep -q -- --with-sssd; then
|
|
printf "OK: Sudo has support for SSSD compiled in.\n"
|
|
exit 0
|
|
fi
|
|
|
|
printf "Error: SSSD support isn't compiled in.\n"
|
|
exit 1
|