X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;f=sudo.spec;h=51460d9f7f741cf60b7cc0e28b7f7f120cb713d9;hb=02cd30f3a95215bb14dbf28ef34d01ed58e6fd8a;hp=d6f3d0bf19d8b10410e2f3165b0bf1f209c66b41;hpb=dd082150340ab8e22557895225263a2a4b5daae5;p=packages%2Fsudo.git diff --git a/sudo.spec b/sudo.spec index d6f3d0b..51460d9 100644 --- a/sudo.spec +++ b/sudo.spec @@ -5,7 +5,13 @@ %bcond_without pam # disable PAM support %bcond_without selinux # build without SELinux support %bcond_with skey # enable skey (onetime passwords) support (conflicts with PAM) -# + +%if "%{pld_release}" == "ac" +%define pam_ver 0.80.1 +%else +%define pam_ver 0.99.7.1 +%endif + Summary: Allows command execution as root for specified users Summary(es.UTF-8): Permite que usuarios específicos ejecuten comandos como se fueran el root Summary(ja.UTF-8): 指定ユーザに制限付のroot権限を許可する @@ -14,33 +20,36 @@ Summary(pt_BR.UTF-8): Permite que usuários específicos executem comandos como Summary(ru.UTF-8): Позволяет определенным пользователям исполнять команды от имени root Summary(uk.UTF-8): Дозволяє вказаним користувачам виконувати команди від імені root Name: sudo -Version: 1.6.9p4 -Release: 1 +Version: 1.7.2p7 +Release: 3 Epoch: 1 License: BSD Group: Applications/System Source0: ftp://ftp.sudo.ws/pub/sudo/%{name}-%{version}.tar.gz -# Source0-md5: 5439d24b48db69d2b6b42e97b47fdfd6 +# Source0-md5: 3ac78668427a53e12d7639fdfab2f1af Source1: %{name}.pamd Source2: %{name}-i.pamd Source3: %{name}.logrotate -Patch0: %{name}-selinux.patch -Patch1: %{name}-ac.patch -Patch2: %{name}-pam-login.patch -Patch3: %{name}-libtool.patch +Patch0: %{name}-pam-login.patch +Patch1: %{name}-libtool.patch +Patch2: %{name}-env.patch URL: http://www.sudo.ws/sudo/ BuildRequires: autoconf >= 2.53 BuildRequires: automake -%{?with_kerberos5:BuildRequires: krb5-devel} +%{?with_kerberos5:BuildRequires: heimdal-devel} %{?with_selinux:BuildRequires: libselinux-devel} BuildRequires: libtool %{?with_ldap:BuildRequires: openldap-devel >= 2.3.0} %{?with_pam:BuildRequires: pam-devel} +BuildRequires: rpm >= 4.4.9-56 +BuildRequires: rpmbuild(macros) >= 1.402 %{?with_skey:BuildRequires: skey-devel >= 2.2-11} -Requires: pam >= 0.99.7.1 +Requires: pam >= %{pam_ver} Obsoletes: cu-sudo BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) +%define schemadir /usr/share/openldap/schema + %description Sudo (superuser do) allows a permitted user to execute a command as the superuser (real and effective uid and gid are set to 0 and root's @@ -110,30 +119,37 @@ Sudo (superuser do) дозволяє системному адміністрат пам'ятає пароль; використання одного конфігураційного файлу (sudoers) на багатьох машинах. +%package -n openldap-schema-sudo +Summary: Sudo LDAP schema +Group: Networking/Daemons +Requires(post,postun): sed >= 4.0 +Requires: openldap-servers +Requires: sed >= 4.0 + +%description -n openldap-schema-sudo +This package contains sudo.schema for openldap. + +%description -n openldap-schema-sudo -l pl.UTF-8 +Ten pakiet zawiera sudo.schema dla pakietu openldap. + %prep %setup -q -%{?with_selinux:%patch0 -p1} - # only local macros mv -f aclocal.m4 acinclude.m4 # kill libtool.m4 copy rm -f acsite.m4 +%patch0 -p1 %patch1 -p1 %patch2 -p1 -%patch3 -p1 %build -cp -f /usr/share/automake/config.sub . +%{__mv} install-sh install-custom-sh %{__libtoolize} +%{__mv} install-custom-sh install-sh +cp -f /usr/share/automake/config.sub . %{__aclocal} %{__autoconf} -# sparc64 2.4.x kernels have buggy sys32_utimes(somefile, NULL) syscall -# it's fixed in >= 2.4.31-0.3, but keep workaround not to require very -# fresh kernel -%ifarch sparc sparcv9 -export ac_cv_func_utimes=no -%endif %configure \ NROFFPROG=nroff \ --with-incpath=/usr/include/security \ @@ -147,49 +163,85 @@ export ac_cv_func_utimes=no --with-env-editor \ --with-secure-path="/bin:/sbin:/usr/bin:/usr/sbin" \ --with-loglen=320 \ - --disable-saved-ids \ --with%{!?with_kerberos5:out}-kerb5 \ --with%{!?with_ldap:out}-ldap \ --with%{!?with_skey:out}-skey \ + --with%{!?with_selinux:out}-selinux \ --with-long-otp-prompt %{__make} %install rm -rf $RPM_BUILD_ROOT -install -d $RPM_BUILD_ROOT{%{_sysconfdir}/{pam.d,logrotate.d},/var/{log,run/sudo}} +install -d $RPM_BUILD_ROOT{%{_sysconfdir}/{pam.d,logrotate.d},/var/{log,run/sudo},%{_mandir}/man8} -%{__make} install \ +%{__make} -j1 install \ DESTDIR=$RPM_BUILD_ROOT \ - install_uid=`id -u` \ - install_gid=`id -g` \ - sudoers_uid=`id -u` \ - sudoers_gid=`id -g` + install_uid=$(id -u) \ + install_gid=$(id -g) \ + sudoers_uid=$(id -u) \ + sudoers_gid=$(id -g) -install %{SOURCE1} $RPM_BUILD_ROOT/etc/pam.d/sudo -install %{SOURCE2} $RPM_BUILD_ROOT/etc/pam.d/sudo-i +cp -a %{SOURCE1} $RPM_BUILD_ROOT/etc/pam.d/sudo +cp -a %{SOURCE2} $RPM_BUILD_ROOT/etc/pam.d/sudo-i touch $RPM_BUILD_ROOT/var/log/sudo -install %{SOURCE3} $RPM_BUILD_ROOT/etc/logrotate.d/sudo +cp -a %{SOURCE3} $RPM_BUILD_ROOT/etc/logrotate.d/sudo chmod -R +r $RPM_BUILD_ROOT%{_prefix} rm -f $RPM_BUILD_ROOT%{_libdir}/sudo_noexec.la +%if %{with ldap} +install -d $RPM_BUILD_ROOT%{schemadir} +cp -a schema.OpenLDAP $RPM_BUILD_ROOT%{schemadir}/sudo.schema +%endif + %clean rm -rf $RPM_BUILD_ROOT +%post -n openldap-schema-sudo +%openldap_schema_register %{schemadir}/sudo.schema -d core +%service -q ldap restart + +%banner -e openldap-schema-sudo <<'EOF' +# banner on first install +if [ "$1" = "1" ]; the +NOTE: +In order for sudoRole LDAP queries to be efficient, the server must index +the attribute 'sudoUser', e.g. + + # Indices to maintain + index sudoUser eq +EOF +fi + +%postun -n openldap-schema-sudo +if [ "$1" = "0" ]; then + %openldap_schema_unregister %{schemadir}/sudo.schema + %service -q ldap restart +fi + %files %defattr(644,root,root,755) -%doc BUGS CHANGES HISTORY README TODO TROUBLESHOOTING sample.sudoers +%doc HISTORY README TROUBLESHOOTING sample.sudoers +%{?with_ldap:%doc README.LDAP sudoers2ldif} %attr(440,root,root) %verify(not md5 mtime size) %config(noreplace) %{_sysconfdir}/sudoers %attr(600,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/pam.d/sudo %attr(600,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/pam.d/sudo-i %attr(4755,root,root) %{_bindir}/sudo %attr(4755,root,root) %{_bindir}/sudoedit -%{?with_selinux:%attr(755,root,root) %{_sbindir}/sesh} %attr(755,root,root) %{_sbindir}/visudo +%{?with_selinux:%attr(755,root,root) %{_libdir}/sesh} %attr(755,root,root) %{_libdir}/sudo_noexec.so -%{_mandir}/man*/* +%{_mandir}/man5/sudoers.5* +%{?with_ldap:%{_mandir}/man5/sudoers.ldap.5*} +%{_mandir}/man8/sudo.8* +%{_mandir}/man8/sudoedit.8* +%{_mandir}/man8/visudo.8* %attr(600,root,root) %ghost /var/log/sudo -%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/* +%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/sudo %attr(700,root,root) %dir /var/run/sudo + +%files -n openldap-schema-sudo +%defattr(644,root,root,755) +%{schemadir}/*.schema