Displaying 1 result from an estimated 1 matches for "skip_xxx".
Did you mean:
skip_xdp
2002 May 30
0
[Bug 260] New: Expanded features in spec file.
...@@
# Disable IPv6 (avoids DNS hangs on some glibc versions)
%define noip6 0
+# Do we want ssh suid root? (1=yes 0=no)
+%define suidssh 0
+
+# Do we want kerberos5 support (1=yes 0=no)
+%define kerberos5 0
+
# Reserve options to override askpass settings with:
# rpm -ba|--rebuild --define 'skip_xxx 1'
%{?skip_x11_askpass:%define no_x11_askpass 1}
@@ -184,15 +190,22 @@
%if %{noip6}
--with-ipv4-default \
%endif
+%if ! %{suidssh}
+ --disable-suid-ssh \
+%endif
%if %{rescue}
--without-pam --with-md5-passwords
%else
+%if %{kerberos5}
--with-pam --with-kerbero...