forked from pool/aaa_base
This commit is contained in:
parent
c05f99310c
commit
42506fbfb7
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 9 17:21:41 CET 2009 - ro@suse.de
|
||||||
|
|
||||||
|
- touch and chmod some files only if they do not exist before
|
||||||
|
leave them alone otherwise
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 4 11:30:08 CET 2009 - meissner@suse.de
|
Wed Mar 4 11:30:08 CET 2009 - meissner@suse.de
|
||||||
|
|
||||||
|
@ -166,17 +166,25 @@ touch etc/mtab
|
|||||||
if test ! -d var/log ; then
|
if test ! -d var/log ; then
|
||||||
mkdir -p var/log
|
mkdir -p var/log
|
||||||
fi
|
fi
|
||||||
touch var/log/faillog
|
if test ! -e var/log/faillog ; then
|
||||||
chmod 600 var/log/faillog
|
touch var/log/faillog
|
||||||
touch root/.bash_history
|
chmod 600 var/log/faillog
|
||||||
chmod 600 root/.bash_history
|
chown root:root var/log/faillog
|
||||||
chown root:root var/log/faillog
|
fi
|
||||||
touch var/log/lastlog
|
if test ! -e root/.bash_history ; then
|
||||||
chmod 644 var/log/lastlog
|
touch root/.bash_history
|
||||||
chown root:tty var/log/lastlog
|
chmod 600 root/.bash_history
|
||||||
touch var/log/wtmp
|
fi
|
||||||
chmod 664 var/log/wtmp
|
if test ! -e var/log/lastlog ; then
|
||||||
chown root:tty var/log/wtmp
|
touch var/log/lastlog
|
||||||
|
chmod 644 var/log/lastlog
|
||||||
|
chown root:tty var/log/lastlog
|
||||||
|
fi
|
||||||
|
if test ! -e var/log/wtmp ; then
|
||||||
|
touch var/log/wtmp
|
||||||
|
chmod 664 var/log/wtmp
|
||||||
|
chown root:tty var/log/wtmp
|
||||||
|
fi
|
||||||
if test -e usr/sbin/usrdel.local -a ! -e usr/sbin/userdel.local ; then
|
if test -e usr/sbin/usrdel.local -a ! -e usr/sbin/userdel.local ; then
|
||||||
cp usr/sbin/usrdel.local usr/sbin/userdel.local
|
cp usr/sbin/usrdel.local usr/sbin/userdel.local
|
||||||
fi
|
fi
|
||||||
|
@ -28,7 +28,7 @@ Recommends: cron logrotate
|
|||||||
PreReq: /usr/bin/sed /usr/bin/grep /bin/mv /bin/cat /bin/ls /bin/date /usr/bin/cmp /bin/fillup /sbin/insserv udev net-tools
|
PreReq: /usr/bin/sed /usr/bin/grep /bin/mv /bin/cat /bin/ls /bin/date /usr/bin/cmp /bin/fillup /sbin/insserv udev net-tools
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 11.2
|
Version: 11.2
|
||||||
Release: 14
|
Release: 15
|
||||||
Summary: SUSE Linux Base Package
|
Summary: SUSE Linux Base Package
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Source: aaa_base.tar.bz2
|
Source: aaa_base.tar.bz2
|
||||||
@ -139,6 +139,9 @@ rm -f /root/.gnupg/secring.gpg.aaa_save
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Mar 09 2009 ro@suse.de
|
||||||
|
- touch and chmod some files only if they do not exist before
|
||||||
|
leave them alone otherwise
|
||||||
* Wed Mar 04 2009 meissner@suse.de
|
* Wed Mar 04 2009 meissner@suse.de
|
||||||
- MALLOC_CHECK_=3 (bnc#481582)
|
- MALLOC_CHECK_=3 (bnc#481582)
|
||||||
* Mon Feb 23 2009 ro@suse.de
|
* Mon Feb 23 2009 ro@suse.de
|
||||||
|
Loading…
Reference in New Issue
Block a user