1105 lines
40 KiB
RPMSpec
1105 lines
40 KiB
RPMSpec
%define utmp_groupid 17
|
|
|
|
Name: initscripts
|
|
Version: 2.4
|
|
Release: 1mamba
|
|
Summary: Common tools used by initscripts-sysv5 and systemd in sysv5 mode
|
|
Group: System/Configuration
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: http://www.openmamba.org/packages.html
|
|
Source: https://gitlab.mambasoft.it/openmamba/initscripts.git/v%{version}/initscripts-%{version}.tar.bz2
|
|
Patch0: %{name}-1.3.33-initlog_deprecated_warning.patch
|
|
Patch1: initscripts-1.6.11-gcc-4.7.patch
|
|
License: GPL
|
|
## AUTOBUILDREQ-BEGIN
|
|
BuildRequires: glibc-devel
|
|
BuildRequires: libpopt-devel
|
|
## AUTOBUILDREQ-END
|
|
Requires(post):coreutils
|
|
Requires(post):tzdata
|
|
Requires(post):grep
|
|
Requires: make
|
|
Requires: sed
|
|
Requires(post):kbd >= 1.15.3-3mamba
|
|
Requires: gawk
|
|
Requires: e2fsprogs
|
|
Requires: gzip
|
|
Requires: findutils
|
|
Requires: psmisc
|
|
Provides: /etc/init.d
|
|
Obsoletes: initscripts-sysv5 < 2.4
|
|
|
|
%description
|
|
The initscripts package contains the basic system scripts used to boot your openmamba system, change runlevels, manage system services and network interfaces, and shut the system down cleanly.
|
|
|
|
%debug_package
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch1 -p1
|
|
|
|
%build
|
|
%make CC=%{_target_platform}-gcc
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
|
%makeinstall
|
|
|
|
%ifnarch %{ix86} x86_64
|
|
# don't blacklist framebuffer drivers for non x86 archs which don't have VESA/BIOS
|
|
rm -f %{buildroot}%{_prefix}/lib/modprobe.d/blacklist-framebuffer.conf
|
|
# RTC clock is kept as localtime on PCs only due to windows
|
|
#sed -i "s|UTC=0|UTC=1|" %{buildroot}%{_sysconfdir}/sysconfig/clock
|
|
%endif
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
|
|
|
%pre
|
|
[ -L /etc/sysconfig/network-scripts ] && rm -f /etc/sysconfig/network-scripts
|
|
:
|
|
|
|
%post
|
|
if [ $1 -ge 1 ]; then
|
|
# create utmp group
|
|
groupadd utmp -g %{utmp_groupid} 2>/dev/null || :
|
|
|
|
# create default lastlog and *tmp files
|
|
[ -e /var/log/lastlog ] || touch /var/log/lastlog
|
|
chgrp utmp /var/log/lastlog
|
|
chmod 664 /var/log/lastlog
|
|
|
|
# [ -e /var/run/utmp ] || touch /var/run/utmp
|
|
# chgrp utmp /var/run/utmp
|
|
# chmod 664 /var/run/utmp
|
|
|
|
[ -e /var/log/btmp ] || touch /var/log/btmp
|
|
chgrp utmp /var/log/btmp
|
|
chmod 600 /var/log/btmp
|
|
|
|
[ -e /var/log/wtmp ] || touch /var/log/wtmp
|
|
|
|
# create /etc/locale.conf with LANG settings, obsoleting /etc/sysconfig/i18n
|
|
[ "$LANG" -a ! -e /etc/locale.conf ] && {
|
|
[ -e /etc/sysconfig/i18n ] && . /etc/sysconfig/i18n
|
|
cat >> /etc/locale.conf << _EOF
|
|
LANG=${LANG}
|
|
LC_COLLATE=C
|
|
_EOF
|
|
}
|
|
|
|
[ -e %{_sysconfdir}/rpm/macros.lang ] && sed -i "s|,|:|g" %{_sysconfdir}/rpm/macros.lang
|
|
|
|
# create /etc/rpm/macros.lang to install only translations in current LANG plus en
|
|
[ "$LANG" -a ! -e %{_sysconfdir}/rpm/macros.lang ] && {
|
|
cat >> %{_sysconfdir}/rpm/macros.lang << _EOF
|
|
`echo -n %`_install_langs en:${LANG/_*}:${LANG/.*}
|
|
_EOF
|
|
}
|
|
|
|
[ -e /etc/vconsole.conf ] || {
|
|
. /etc/sysconfig/keyboard
|
|
. /etc/sysconfig/console
|
|
[ $CONSOLE_UNICODEMAP ] || CONSOLE_UNICODEMAP=8859-1_to_uni
|
|
cat > $MOUNTDIR/etc/vconsole.conf << _EOF
|
|
KEYMAP=${KEYMAP/.*}
|
|
FONT=${CONSOLE_FONT/.*}
|
|
FONT_MAP=${CONSOLE_UNICODEMAP}
|
|
FONT_UNIMAP=
|
|
UNICODE=1
|
|
_EOF
|
|
}
|
|
|
|
grep "UNICODE=" /etc/vconsole.conf >/dev/null || {
|
|
cat >> /etc/vconsole.conf << _EOF
|
|
UNICODE=1
|
|
_EOF
|
|
}
|
|
|
|
# /etc/sysctl.conf is no longer used since systemd
|
|
[ -e %{_sysconfdir}/sysctl.conf ] && \
|
|
mv %{_sysconfdir}/sysctl.conf %{_sysconfdir}/sysctl.d/10-user.conf
|
|
|
|
# systemd wants /etc/localtime as a symlink to /usr/share/timezone/..
|
|
if [ -e %{_sysconfdir}/timezone -a ! -L %{_sysconfdir}/localtime ]; then
|
|
TMZ=`cat %{_sysconfdir}/timezone`
|
|
[ -e %{_datadir}/zoneinfo/$TMZ ] && {
|
|
rm -f %{_sysconfdir}/localtime
|
|
ln -sf %{_datadir}/zoneinfo/$TMZ %{_sysconfdir}/localtime
|
|
}
|
|
fi
|
|
fi
|
|
:
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%dir %{_initrddir}
|
|
%{_sysconfdir}/init.d
|
|
%attr(0755,root,root) %config(noreplace) %{_initrddir}/rc.local
|
|
%dir %{_sysconfdir}/rc.d
|
|
%{_sysconfdir}/rc?.d
|
|
%dir %{_sysconfdir}/rc.d/rc?.d
|
|
%dir %{_sysconfdir}/modules.d
|
|
%{_sysconfdir}/sysconfig/functions
|
|
%{_sysconfdir}/sysconfig/rc
|
|
%{_bindir}/doexec
|
|
%{_bindir}/ipcalc
|
|
%{_bindir}/usleep
|
|
%{_sbindir}/console_init
|
|
%{_sbindir}/service
|
|
%{_sbindir}/consoletype
|
|
%{_sbindir}/genhostid
|
|
%{_sbindir}/getkey
|
|
%{_sbindir}/minilogd
|
|
%{_prefix}/lib/modprobe.d/lp.conf
|
|
%{_prefix}/lib/modprobe.d/rtl8192ce.conf
|
|
%ifarch %{ix86} x86_64
|
|
%{_prefix}/lib/modprobe.d/blacklist-framebuffer.conf
|
|
%endif
|
|
%{_prefix}/lib/modprobe.d/blacklist-net.conf
|
|
%{_prefix}/lib/sysctl.d/40-openmamba.conf
|
|
%ghost %attr(0600,root,utmp) %{_var}/log/btmp
|
|
%ghost %attr(0664,root,utmp) %{_var}/log/lastlog
|
|
%ghost %attr(0644,root,root) %{_var}/log/wtmp
|
|
#%ghost %attr(0664,root,utmp) %{_var}/run/utmp
|
|
#%dir %{_var}/run/netreport
|
|
%dir %{_var}/spool/gdm
|
|
%attr(4755,root,root) %{_sbindir}/usernetctl
|
|
%{_mandir}/man1/consoletype.*
|
|
%{_mandir}/man1/doexec.*
|
|
%{_mandir}/man1/genhostid.*
|
|
%{_mandir}/man1/getkey.*
|
|
%{_mandir}/man1/ipcalc.*
|
|
%{_mandir}/man1/netreport.*
|
|
%{_mandir}/man1/usleep.*
|
|
%{_mandir}/man8/usernetctl.*
|
|
%doc COPYING
|
|
|
|
%changelog
|
|
* Thu Aug 26 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 2.4-1mamba
|
|
- update to 2.4
|
|
|
|
* Sun Nov 29 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 2.3-2mamba
|
|
- fix symlinks declared as dirs
|
|
|
|
* Tue Apr 02 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 2.3-1mamba
|
|
- update to 2.3
|
|
|
|
* Sun Mar 17 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 2.2-1mamba
|
|
- update to 2.2
|
|
|
|
* Fri Aug 24 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 2.1-3mamba
|
|
- fix syntax of macros.lang (user : instead of , as separator)
|
|
|
|
* Thu Aug 23 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 2.1-2mamba
|
|
- install rpm macros.lang files with current language and en in %_install_langs
|
|
- mv /etc/sysctl.conf to /etc/sysctl.d/10-user.conf as of systemd
|
|
|
|
* Wed Dec 20 2017 Silvan Calarco <silvan.calarco@mambasoft.it> 2.1-1mamba
|
|
- update to 2.1
|
|
|
|
* Wed Jun 29 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 2.0-3mamba
|
|
- require grep in %post script
|
|
|
|
* Thu Aug 21 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 2.0-2mamba
|
|
- move obsoleted /etc/inittab to -sys5 legacy package
|
|
|
|
* Mon Apr 21 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 2.0-1mamba
|
|
- update to 2.0
|
|
|
|
* Tue Apr 08 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.93-3mamba
|
|
- move /etc/sysconfig/rc back to main package until initscripts requiring it are updated
|
|
|
|
* Sat Apr 05 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.93-2mamba
|
|
- move obsolete sysconfig files to -sysv5 subpackage
|
|
|
|
* Thu May 02 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.93-1mamba
|
|
- update to 1.6.93
|
|
|
|
* Fri Apr 19 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.92-1mamba
|
|
- update to 1.6.92
|
|
|
|
* Fri Mar 29 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.91-1mamba
|
|
- update to 1.6.91
|
|
- initscripts: make /etc/localtime a symlink to /usr/share/zoneinfo/.. as wanted by systemd
|
|
|
|
* Tue Mar 26 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.90-3mamba
|
|
- initscripts-sysv5: recreate /etc/rcsysinit.d as a symlink to /etc/rc.d/rcsysinit.d if broken
|
|
- moved some %post commands from initcripts-sysv5 to initscripts
|
|
|
|
* Fri Mar 22 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.90-2mamba
|
|
- move post scripts to sysv5 subpackage
|
|
|
|
* Fri Mar 22 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.90-1mamba
|
|
- update to 1.6.90
|
|
|
|
* Tue Mar 19 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.11-2mamba
|
|
- initscript moved to initscript-sysv5 new package for systemd default support
|
|
|
|
* Sat Sep 08 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.11-1mamba
|
|
- update to 1.6.11
|
|
|
|
* Thu Aug 23 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.10-1mamba
|
|
- update to 1.6.10
|
|
|
|
* Mon Apr 16 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.9-3mamba
|
|
- require(post) kbd
|
|
|
|
* Tue Mar 06 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.9-2mamba
|
|
- Configure RTC clock as UTC for non x86 architectures (where windows dual-boot requires local time)
|
|
|
|
* Thu Feb 16 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.9-1mamba
|
|
- update to 1.6.9
|
|
|
|
* Mon Dec 26 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.8-1mamba
|
|
- update to 1.6.8
|
|
- move here /etc/vconsole.conf creation/update script from kbd package
|
|
- add UNICODE=1 if missing in /etc/vconsole.conf as required by /sbin/console_init
|
|
|
|
* Fri Dec 09 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.7-1mamba
|
|
- update to 1.6.7
|
|
|
|
* Wed Nov 30 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.6-1mamba
|
|
- update to 1.6.6
|
|
|
|
* Sun Oct 30 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.5-1mamba
|
|
- update to 1.6.5
|
|
|
|
* Fri Oct 21 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.4-1mamba
|
|
- update to 1.6.4
|
|
|
|
* Sun Oct 16 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.3-1mamba
|
|
- update to 1.6.3
|
|
|
|
* Sat Oct 08 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.2-1mamba
|
|
- update to 1.6.2
|
|
- add provide /etc/init.d to avoid lsb-core removal because of failing /etc/init.d requirement due to the fact that it is a symlink
|
|
|
|
* Thu Oct 06 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.1-1mamba
|
|
- update to 1.6.1
|
|
|
|
* Mon Oct 03 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.0-1mamba
|
|
- update to 1.6.0
|
|
|
|
* Sat Sep 03 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.9-1mamba
|
|
- update to 1.5.9
|
|
|
|
* Sat Sep 03 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.8-2mamba
|
|
- read LANG from /etc/sysconfig/i18n to create /etc/locale.conf (don't use environment because it is set to C in cron jobs)
|
|
|
|
* Thu Sep 01 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.8-1mamba
|
|
- update to 1.5.8
|
|
- create /etc/locale.conf with LANG settings; /etc/sysconfig/i18n is going obsoleted
|
|
|
|
* Sun Jul 10 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.7-1mamba
|
|
- update to 1.5.7
|
|
|
|
* Sat Jul 02 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.6-1mamba
|
|
- update to 1.5.6
|
|
|
|
* Thu Jun 30 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.5-1mamba
|
|
- update to 1.5.5
|
|
- disable agetty on tty1 in runlevel 5 to leave the place to kdm and other login managers
|
|
|
|
* Wed Jun 22 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.4-1mamba
|
|
- update to 1.5.4
|
|
|
|
* Mon Jun 13 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.3-1mamba
|
|
- update to 1.5.3
|
|
- set net.ipv4.tcp_ecn = 0 and net.ipv4.tcp_window_scaling = 0 in /etc/sysctl.conf
|
|
|
|
* Thu Jun 09 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.2-1mamba
|
|
- update to 1.5.2
|
|
|
|
* Wed Apr 27 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.1-1mamba
|
|
- update to 1.5.1
|
|
|
|
* Wed Apr 06 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.0-1mamba
|
|
- update to 1.5.0
|
|
|
|
* Fri Mar 18 2011 Davide Madrisan <davide.madrisan@gmail.com> 1.4.50-3mamba
|
|
- dash compatibility (network): fix trap usage
|
|
- network: do not create temporary files when not required
|
|
|
|
* Tue Mar 15 2011 Davide Madrisan <davide.madrisan@gmail.com> 1.4.50-2mamba
|
|
- dash compatibility (functions,rc): sourced script with arguments
|
|
- dash compatibility (functions,rc): avoid non POSIX command "echo -e"
|
|
- halt, random, rc, and reboot: reworked
|
|
- dash compatibility (functions): fix kill invocations
|
|
- dash compatibility (rc): fix export command
|
|
- dash compatibility (network-functions): it's only used by guarddog-firsttime
|
|
- functions: syntax fixes for dash compatibility
|
|
- use /bin/sh instead of /bin/bash
|
|
- functions, network-functions: remove bashisms
|
|
|
|
* Mon Mar 14 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.50-1mamba
|
|
- update to 1.4.50
|
|
|
|
* Mon Feb 21 2011 Davide Madrisan <davide.madrisan@gmail.com> 1.4.49-2mamba
|
|
- rc: do not use vector variables; rework and simplify code
|
|
|
|
* Thu Feb 10 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.49-1mamba
|
|
- update to 1.4.49
|
|
|
|
* Tue Feb 01 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.48-1mamba
|
|
- update to 1.4.48
|
|
- integrate patches from 1.4.47-4mamba
|
|
|
|
* Sat Jan 22 2011 Davide Madrisan <davide.madrisan@gmail.com> 1.4.47-4mamba
|
|
- sysinit: fix execution of ldconfig; support 64bit architectures
|
|
- make sysinit dash compatible
|
|
- sysinit: remove unused variable KERNELMIN
|
|
- fix my mail address in several files
|
|
|
|
* Fri Jan 21 2011 Davide Madrisan <davide.madrisan@gmail.com> 1.4.47-3mamba
|
|
- sysinit: correctly parse and use harddisk UUID numbers found in /proc/cmdline
|
|
- provide basic documentation (ChangeLog and COPYING files)
|
|
|
|
* Tue Dec 21 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.47-2mamba
|
|
- fix a syntax error in a change in runlevel.mk (serverity:HIGH)
|
|
|
|
* Sun Dec 19 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.47-1mamba
|
|
- update to 1.4.47
|
|
|
|
* Tue Nov 16 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.46-1mamba
|
|
- update to 1.4.46
|
|
|
|
* Fri Nov 12 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.45-1mamba
|
|
- update to 1.4.45
|
|
|
|
* Sat Nov 06 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.44-1mamba
|
|
- update to 1.4.44
|
|
|
|
* Tue Nov 02 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.43-1mamba
|
|
- update to 1.4.43
|
|
|
|
* Wed Oct 27 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.42-2mamba
|
|
- enable ipv6 again
|
|
|
|
* Mon Sep 06 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.42-1mamba
|
|
- update to 1.4.42
|
|
|
|
* Fri Jun 25 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.41-1mamba
|
|
- update to 1.4.41
|
|
|
|
* Tue Jun 22 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.40-1mamba
|
|
- update to 1.4.40
|
|
|
|
* Mon Jun 14 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.39-2mamba
|
|
- remove fstab-decode provided by sysvinit 2.88
|
|
|
|
* Fri Jun 04 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.39-1mamba
|
|
- update to 1.4.39
|
|
|
|
* Fri May 28 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.38-1mamba
|
|
- update to 1.4.38
|
|
|
|
* Wed May 26 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.37-1mamba
|
|
- update to 1.4.37
|
|
|
|
* Fri May 21 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.36-1mamba
|
|
- update to 1.4.36
|
|
|
|
* Wed May 12 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.35-1mamba
|
|
- update to 1.4.35
|
|
|
|
* Fri Apr 02 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.34-1mamba
|
|
- update to 1.4.34
|
|
|
|
* Tue Mar 23 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.33-1mamba
|
|
- update to 1.4.33
|
|
|
|
* Fri Mar 12 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.32-1mamba
|
|
- update to 1.4.32
|
|
|
|
* Mon Feb 08 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.30-1mamba
|
|
- update to 1.4.30
|
|
|
|
* Sat Jan 02 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.29-1mamba
|
|
- update to 1.4.29
|
|
|
|
* Tue Nov 03 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.28-1mamba
|
|
- update to 1.4.28
|
|
|
|
* Thu Oct 22 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.27-1mamba
|
|
- update to 1.4.27
|
|
|
|
* Sat Oct 10 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.26-1mamba
|
|
- update to 1.4.26
|
|
|
|
* Sat Sep 05 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.25-1mamba
|
|
- update to 1.4.25
|
|
|
|
* Sat Jul 25 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.24-1mamba
|
|
- update to 1.4.24
|
|
|
|
* Fri Jul 24 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.23-1mamba
|
|
- update to 1.4.23
|
|
|
|
* Thu Jul 23 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.22-1mamba
|
|
- update to 1.4.22
|
|
|
|
* Tue Jun 23 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.21-1mamba
|
|
- update to 1.4.21
|
|
|
|
* Thu May 28 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.20.1-1mamba
|
|
- update to 1.4.20.1
|
|
|
|
* Tue May 26 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.20-1mamba
|
|
- update to 1.4.20
|
|
|
|
* Fri May 15 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.19-1mamba
|
|
- update to 1.4.19
|
|
|
|
* Tue May 05 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.18-1mamba
|
|
- update to 1.4.18
|
|
|
|
* Wed Mar 25 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.17-1mamba
|
|
- update to 1.4.17
|
|
|
|
* Fri Mar 06 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.16-1mamba
|
|
- update to 1.4.16
|
|
|
|
* Sun Feb 08 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.15-1mamba
|
|
- update to 1.4.15
|
|
|
|
* Sat Feb 07 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.14-1mamba
|
|
- update to 1.4.14
|
|
|
|
* Fri Feb 06 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.13-1mamba
|
|
- update to 1.4.13
|
|
|
|
* Tue Jan 27 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.12-1mamba
|
|
- update to 1.4.12
|
|
|
|
* Tue Jan 27 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.11-1mamba
|
|
- update to 1.4.11
|
|
|
|
* Sat Jan 17 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.10-1mamba
|
|
- update to 1.4.10
|
|
|
|
* Tue Jan 13 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.9-1mamba
|
|
- update to 1.4.9
|
|
|
|
* Mon Dec 29 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.8-1mamba
|
|
- update to 1.4.8
|
|
|
|
* Mon Dec 29 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.7-1mamba
|
|
- update to 1.4.7
|
|
|
|
* Mon Nov 17 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.6-1mamba
|
|
- update to 1.4.6
|
|
|
|
* Wed Oct 22 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.5-1mamba
|
|
- update to 1.4.5
|
|
|
|
* Mon Sep 22 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.4-1mamba
|
|
- update to 1.4.4
|
|
|
|
* Tue Sep 09 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.3-1mamba
|
|
- update to 1.4.3
|
|
|
|
* Wed Jun 18 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.2-1mamba
|
|
- update to 1.4.2
|
|
|
|
* Wed Jun 11 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.1-2mamba
|
|
- set to 0600 the permission for /var/log/btmp (sshd complaining)
|
|
|
|
* Tue Apr 15 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.1-1mamba
|
|
- update to 1.4.1
|
|
|
|
* Tue Mar 11 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.0-1mamba
|
|
- update to 1.4.0
|
|
|
|
* Mon Mar 10 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.52-1mamba
|
|
- update to 1.3.52
|
|
|
|
* Sat Mar 08 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.51-1mamba
|
|
- update to 1.3.51
|
|
|
|
* Sat Feb 23 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.50-1mamba
|
|
- update to 1.3.50
|
|
|
|
* Fri Feb 15 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.49-1mamba
|
|
- update to 1.3.49
|
|
|
|
* Wed Jan 23 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.48-1mamba
|
|
- update to 1.3.48
|
|
|
|
* Fri Jan 18 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.47-1mamba
|
|
- update to 1.3.47
|
|
|
|
* Tue Jan 15 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.46-2mamba
|
|
- post script: create lastlog, utmp, btmp and wtmp files if not existing
|
|
- set utmp group to utmp and lastlog files
|
|
- create utmp group if missing
|
|
|
|
* Sun Jan 13 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.46-1mamba
|
|
- update to 1.3.46
|
|
|
|
* Fri Jan 11 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.45-1mamba
|
|
- update to 1.3.45
|
|
|
|
* Mon Dec 24 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.44-1mamba
|
|
- update to 1.3.44
|
|
|
|
* Wed Dec 19 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.43-1mamba
|
|
- update to 1.3.43
|
|
|
|
* Wed Nov 14 2007 Aleph0 <aleph0@openmamba.org> 1.3.42-1mamba
|
|
- update to 1.3.42
|
|
|
|
* Thu Oct 25 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.41-1mamba
|
|
- update to 1.3.41
|
|
|
|
* Fri Aug 31 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.40-1mamba
|
|
- update to 1.3.40
|
|
|
|
* Tue Aug 28 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.39-1mamba
|
|
- update to 1.3.39
|
|
|
|
* Mon Aug 13 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.38-1mamba
|
|
- update to 1.3.38
|
|
|
|
* Mon Jul 09 2007 Aleph0 <aleph0@openmamba.org> 1.3.37-1mamba
|
|
- update to 1.3.37
|
|
|
|
* Tue Apr 24 2007 Davide Madrisan <davide.madrisan@gmail.com> 1.3.36-1mamba
|
|
- update to 1.3.36
|
|
|
|
* Fri Apr 20 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.35-1mamba
|
|
- update to version 1.3.35 by autospec
|
|
|
|
* Fri Apr 20 2007 Davide Madrisan <davide.madrisan@gmail.com> 1.3.34-1mamba
|
|
- update to version 1.3.34 by autospec
|
|
|
|
* Wed Apr 11 2007 Davide Madrisan <davide.madrisan@gmail.com> 1.3.33-2mamba
|
|
- removed the warning message about deprecated initlog tool
|
|
|
|
* Tue Apr 03 2007 Davide Madrisan <davide.madrisan@gmail.com> 1.3.33-1mamba
|
|
- update to version 1.3.33 by autospec
|
|
- /var/run/utmp and /var/log/* marked as ghost files
|
|
|
|
* Tue Mar 13 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.32-1qilnx
|
|
- update to version 1.3.32 by autospec
|
|
|
|
* Thu Feb 22 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.31-1qilnx
|
|
- update to version 1.3.31 by autospec
|
|
|
|
* Sat Feb 17 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.30-1qilnx
|
|
- update to version 1.3.30 by autospec
|
|
|
|
* Thu Jan 11 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.29-1qilnx
|
|
- update to version 1.3.29 by autospec
|
|
|
|
* Mon Jan 08 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.28-1qilnx
|
|
- update to version 1.3.28 by autospec
|
|
|
|
* Sat Jan 06 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.27-1qilnx
|
|
- update to version 1.3.27 by autospec
|
|
|
|
* Fri Jan 05 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.26-1qilnx
|
|
- update to version 1.3.26 by autospec
|
|
|
|
* Fri Nov 24 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.25-1qilnx
|
|
- update to version 1.3.25 by autospec
|
|
|
|
* Wed Nov 22 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.24-1qilnx
|
|
- update to version 1.3.24 by autospec
|
|
|
|
* Mon Nov 20 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.23-1qilnx
|
|
- update to version 1.3.23 by autospec
|
|
|
|
* Tue Nov 07 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.22-1qilnx
|
|
- update to version 1.3.22 by autospec
|
|
|
|
* Mon Nov 06 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.21-1qilnx
|
|
- update to version 1.3.21 by autospec
|
|
|
|
* Thu Nov 02 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.20-1qilnx
|
|
- update to version 1.3.20 by autospec
|
|
|
|
* Mon Oct 30 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.19-1qilnx
|
|
- update to version 1.3.19 by autospec
|
|
|
|
* Fri Oct 20 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.18-1qilnx
|
|
- update to version 1.3.18 by autospec
|
|
|
|
* Mon Oct 16 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.17-2qilnx
|
|
- added requirement for psmisc package (for the killall command)
|
|
|
|
* Wed Oct 11 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.17-1qilnx
|
|
- update to version 1.3.17 by autospec
|
|
|
|
* Wed Jul 12 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.16-1qilnx
|
|
- update to version 1.3.16 by autospec
|
|
|
|
* Thu Jul 06 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.15-1qilnx
|
|
- update to version 1.3.15 by autospec
|
|
|
|
* Sun Jul 02 2006 Davide Madrisan <davide.madrisan@qilinux.it> 1.3.14-1qilnx
|
|
- update to version 1.3.14 by autospec
|
|
|
|
* Sat Jul 01 2006 Davide Madrisan <davide.madrisan@qilinux.it> 1.3.13-1qilnx
|
|
- update to version 1.3.13 by autospec
|
|
|
|
* Thu May 04 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.12-1qilnx
|
|
- update to version 1.3.12 by autospec
|
|
|
|
* Tue May 02 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.11-1qilnx
|
|
- update to version 1.3.11 by autospec
|
|
|
|
* Mon Apr 24 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.10-1qilnx
|
|
- update to version 1.3.10 by autospec
|
|
|
|
* Fri Mar 31 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.9-1qilnx
|
|
- update to version 1.3.9 by autospec
|
|
|
|
* Mon Mar 27 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.8-1qilnx
|
|
- update to version 1.3.8 by autospec
|
|
|
|
* Thu Mar 23 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.7-1qilnx
|
|
- update to version 1.3.7 by autospec
|
|
|
|
* Thu Mar 02 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.6-1qilnx
|
|
- update to version 1.3.6 by autospec
|
|
|
|
* Fri Feb 24 2006 Davide Madrisan <davide.madrisan@qilinux.it> 1.3.5-1qilnx
|
|
- update to version 1.3.5 by autospec
|
|
|
|
* Tue Feb 14 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.4-1qilnx
|
|
- update to version 1.3.4 by autospec
|
|
|
|
* Tue Feb 07 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.3-1qilnx
|
|
- update to version 1.3.3 by autospec
|
|
|
|
* Mon Feb 06 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.2-1qilnx
|
|
- update to version 1.3.2 by autospec
|
|
|
|
* Fri Feb 03 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.1-1qilnx
|
|
- update to version 1.3.1 by autospec
|
|
|
|
* Thu Feb 02 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.0-1qilnx
|
|
- update to version 1.3.0 by autospec
|
|
|
|
* Fri Jan 27 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.22-1qilnx
|
|
- update to version 1.2.22 by autospec
|
|
|
|
* Wed Dec 21 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.21-2qilnx
|
|
- post scripts: set utf8 LANG in running systems
|
|
|
|
* Fri Dec 16 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.21-1qilnx
|
|
- update to version 1.2.21 by autospec
|
|
|
|
* Tue Nov 15 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.20-1qilnx
|
|
- update to version 1.2.20 by autospec
|
|
|
|
* Tue Nov 15 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.19-1qilnx
|
|
- update to version 1.2.19 by autospec
|
|
|
|
* Tue Nov 15 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.18-1qilnx
|
|
- update to version 1.2.18 by autospec
|
|
|
|
* Tue Nov 15 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.17-1qilnx
|
|
- update to version 1.2.17 by autospec
|
|
|
|
* Mon Nov 14 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.16-1qilnx
|
|
- update to version 1.2.16 by autospec
|
|
|
|
* Fri Nov 11 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.15-1qilnx
|
|
- update to version 1.2.15 by autospec
|
|
|
|
* Fri Nov 11 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.14-1qilnx
|
|
- update to version 1.2.14 by autospec
|
|
|
|
* Tue Nov 08 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.13-1qilnx
|
|
- update to version 1.2.13 by autospec
|
|
|
|
* Fri Nov 04 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.12-1qilnx
|
|
- update to version 1.2.12 by autospec
|
|
|
|
* Thu Oct 13 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.11-1qilnx
|
|
- update to version 1.2.11 by autospec
|
|
|
|
* Tue Oct 11 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.10-1qilnx
|
|
- update to version 1.2.10 by autospec
|
|
|
|
* Thu Oct 06 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.9-1qilnx
|
|
- update to version 1.2.9 by autospec
|
|
|
|
* Wed Sep 21 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.8-1qilnx
|
|
- inittab:start KDM with nice=-4 (was -15) to fix keyboard problems
|
|
|
|
* Wed Sep 21 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.8-1qilnx
|
|
- update to version 1.2.8 by autospec
|
|
|
|
* Mon Sep 19 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.7-1qilnx
|
|
- update to version 1.2.7 by autospec
|
|
|
|
* Thu Sep 15 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.6-1qilnx
|
|
- update to version 1.2.6
|
|
- added requirements for e2fsprogs and gzip
|
|
|
|
* Wed Sep 14 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.5-1qilnx
|
|
- update to version 1.2.5 by autospec
|
|
- added some requirements
|
|
|
|
* Wed Sep 07 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.4-2qilnx
|
|
- add support for multi plaftorm builds
|
|
|
|
* Fri Aug 26 2005 Davide Madrisan <davide.madrisan@qilinux.it> 1.2.4-1qilnx
|
|
- update to version 1.2.4 by autospec
|
|
|
|
* Fri Aug 12 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.3-1qilnx
|
|
- update to version 1.2.3 by autospec
|
|
|
|
* Fri Aug 12 2005 Davide Madrisan <davide.madrisan@qilinux.it> 1.2.2-1qilnx
|
|
- update to version 1.2.2 by autospec
|
|
|
|
* Sun Jul 10 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.1-1qilnx
|
|
- update to version 1.2.1 by autospec
|
|
|
|
* Thu Jul 07 2005 Davide Madrisan <davide.madrisan@qilinux.it> 1.2.0-1qilnx
|
|
- update to version 1.2.0 by autospec
|
|
|
|
* Wed Jul 06 2005 Davide Madrisan <davide.madrisan@qilinux.it> 1.1.21-1qilnx
|
|
- update to version 1.1.21 by autospec
|
|
|
|
* Tue Jul 05 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.20-1qilnx
|
|
- update to version 1.1.20 by autospec
|
|
|
|
* Mon Jul 04 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.19-1qilnx
|
|
- update to version 1.1.19 by autospec
|
|
|
|
* Fri Jul 01 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.18-1qilnx
|
|
- update to version 1.1.18 by autospec
|
|
|
|
* Tue May 17 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.17-1qilnx
|
|
- update to version 1.1.17 by autospec
|
|
|
|
* Fri Apr 22 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.16-1qilnx
|
|
- update to version 1.1.16 by autospec
|
|
|
|
* Wed Mar 16 2005 Davide Madrisan <davide.madrisan@qilinux.it> 1.1.15-1qilnx
|
|
- update to version 1.1.15 by autospec
|
|
|
|
* Mon Feb 28 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.14-1qilnx
|
|
- updated to version 1.1.14
|
|
|
|
* Tue Feb 22 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.13-1qilnx
|
|
- updated to version 1.1.13
|
|
|
|
* Fri Feb 04 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.12-1qilnx
|
|
- updated to version 1.1.12
|
|
|
|
* Fri Jan 14 2005 Davide Madrisan <davide.madrisan@qilinux.it> 1.1.11-1qilnx
|
|
- updated to version 1.1.11
|
|
|
|
* Tue Dec 14 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.10-2qilnx
|
|
- fill bootsplash progress bar
|
|
|
|
* Tue Dec 14 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.10-1qilnx
|
|
- 1.1.10: revert back to normal bootsplash function (no workarounds for 2.4
|
|
are good)
|
|
|
|
* Mon Dec 13 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.9-1qilnx
|
|
- rebuilt with 1.1.9 (don't remove /dev/scd0 from mtab, for livecd eject 2.6)
|
|
|
|
* Mon Dec 13 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.8-1qilnx
|
|
- rebuilt with 1.1.8 (fix for bootsplash)
|
|
|
|
* Tue Dec 07 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.7-1qilnx
|
|
- rebuilt with 1.1.7 (added subinterfaces support)
|
|
|
|
* Sun Dec 05 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.6-1qilnx
|
|
- rebuilt with 1.1.6 (added 'service' command)
|
|
|
|
* Fri Nov 19 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.5-1qilnx
|
|
- add /etc/sysconfig/static-routes support
|
|
- load default gateway in ifup script instead of network initscript
|
|
|
|
* Mon Nov 15 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.4-3qilnx
|
|
- don't make bootsplash verbose before starting KDM (now it becomes
|
|
verbose when console starts)
|
|
|
|
* Thu Nov 11 2004 Davide Madrisan <davide.madrisan@qilinux.it> 1.1.4-1qilnx
|
|
- rebuild with 1.1.4
|
|
|
|
* Wed Nov 03 2004 Davide Madrisan <davide.madrisan@qilinux.it> 1.1.3-1qilnx
|
|
- rebuild with 1.1.3
|
|
- added the line "%config(noreplace) %{_sysconfdir}/sysconfig/keyboard"
|
|
- removed the touch commands from the %post scriptlet
|
|
|
|
* Tue Nov 02 2004 Davide Madrisan <davide.madrisan@qilinux.it> 1.1.2-1qilnx
|
|
- rebuild with 1.1.2
|
|
- added the line "%config(noreplace) %{_sysconfdir}/sysconfig/i18n"
|
|
|
|
* Thu Oct 28 2004 Davide Madrisan <davide.madrisan@qilinux.it> 1.1.1-1qilnx
|
|
- rebuild with version 1.1.1
|
|
- specfile updates to avoid some gcc 3.4.x warnings
|
|
|
|
* Fri Oct 15 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-17qilnx
|
|
- changed service return message from "not running" to "stopped" because
|
|
heartbeat parses it
|
|
|
|
* Thu Aug 19 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-16qilnx
|
|
- fix rc.sysinit script that was locking in bootsplash was not present
|
|
|
|
* Thu Aug 19 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-15qilnx
|
|
- added a rc.sysinit check for missing bootsplash
|
|
|
|
* Wed Aug 18 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-14qilnx
|
|
- leave blank LANG in /etc/sysconfig/i18n (it was set to it_IT)
|
|
|
|
* Tue Aug 17 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-13qilnx
|
|
- fix bootsplash not showing on shutdown
|
|
|
|
* Tue Aug 17 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-12qilnx
|
|
- fixes and improvements for bootsplash and localization
|
|
- moved ifup and ifdown scripts to /sbin (created symlink in
|
|
network-devices)
|
|
|
|
* Thu Aug 12 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-11qilnx
|
|
- added support for localization and postplug
|
|
|
|
* Wed Jun 23 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-10qilnx
|
|
- fixed bootsplash for non-multithread init (e.g. QiLinux install cd)
|
|
|
|
* Wed Jun 23 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-9qilnx
|
|
- fixed bootsplash minor problems
|
|
|
|
* Mon Jun 21 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-8qilnx
|
|
- fixed a parsing problem in network script for secondary interfaces
|
|
(xx:1)
|
|
|
|
* Sat Jun 12 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-7qilnx
|
|
- added network multithreaded interfaces startup
|
|
- added support for interfaces with no ip address (e.g. promiscuous
|
|
mode ifs)
|
|
|
|
* Tue Jun 01 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-6qilnx
|
|
- fixed a problem in multithread init that prevented runlevel <5 from
|
|
booting
|
|
|
|
* Sun May 30 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-5qilnx
|
|
- added Makefile for install
|
|
- added multithreaded init desktop fast boot support
|
|
|
|
* Fri May 21 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-4qilnx
|
|
- fixed some bugs in network-functions and ifup
|
|
|
|
* Wed May 19 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-3qilnx
|
|
- removed duplicated mount of devfs filesystem (mountfs patched)
|
|
- added loadmodules compatibility for kernel 2.6
|
|
|
|
* Wed May 19 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-2qilnx
|
|
- fixed mountfs initscripts (do not show root device twice)
|
|
|
|
* Tue May 18 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-1qilnx
|
|
- modifications for bootsplash
|
|
- fixes in order to eliminate boot problems with initrd
|
|
|
|
* Thu May 13 2004 Davide Madrisan <davide.madrisan@qilinux.it> 1.0.0-60qilnx
|
|
- the network-functions get_interface_parameters must return an error if
|
|
the interface name ($1) is unset
|
|
|
|
* Mon May 10 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-59qilnx
|
|
- initscripts modified for LPP (linux progress patch)
|
|
- added network-functions' get_interfaces_by_zone vector support
|
|
|
|
* Thu Apr 29 2004 Davide Madrisan <davide.madrisan@qilinux.it> 1.0.0-58qilnx
|
|
- fixed rc.local path in %files
|
|
|
|
* Wed Apr 28 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-57qilnx
|
|
- fixed rc.local start with multithreaded init
|
|
|
|
* Wed Apr 28 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-56qilnx
|
|
- added rc.local initscript
|
|
|
|
* Tue Apr 27 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-55qilnx
|
|
- fixed network-functions' get_interfaces_by_zone with multiple local
|
|
interfaces
|
|
|
|
* Sun Mar 14 2004 Davide Madrisan <davide.madrisan@qilinux.it> 1.0.0-54qilnx
|
|
- added support for /sys file system
|
|
- scripts cleanup
|
|
|
|
* Fri Mar 12 2004 Davide Madrisan <davide.madrisan@qilinux.it> 1.0.0-53qilnx
|
|
- modified the mountfs script
|
|
- added a preliminary support for 2.6.x kernels
|
|
- improved RedHat/Fedora initscript compatibility
|
|
|
|
* Mon Mar 08 2004 Davide Madrisan <davide.madrisan@qilinux.it> 1.0.0-52qilnx
|
|
- added the random initscript for higher quality random number generation
|
|
|
|
* Wed Mar 03 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-51qilnx
|
|
- fixed runlevel changes with multithreaded init
|
|
- added proxy sysconfig configuration file
|
|
|
|
* Tue Feb 24 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-50qilnx
|
|
- added separated sysctl initscript to be executed in rcsysinit ro phase
|
|
|
|
* Mon Feb 09 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-49qilnx
|
|
- added wireless encryption support in ifup
|
|
|
|
* Thu Feb 05 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-48qilnx
|
|
- added dependencies of dhcpd service
|
|
|
|
* Tue Feb 03 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-47qilnx
|
|
- ldap-functions moved to qilinux-utils package
|
|
|
|
* Mon Feb 02 2004 Davide Madrisan <davide.madrisan@qilinux.it> 1.0.0-46qilnx
|
|
- network-devices script updated to support QiLinux boxes with no NICs
|
|
|
|
* Thu Jan 22 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-45qilnx
|
|
- added /etc/mtab creation at boot time instead of symlink
|
|
|
|
* Wed Jan 21 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-44qilnx
|
|
- added ldap-functions script for qilinux-utils
|
|
|
|
* Tue Dec 02 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-43qilnx
|
|
- killproc: patch to kill processes in pid order
|
|
|
|
* Fri Nov 21 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-42qilnx
|
|
- restored rc.sysinit with its services
|
|
|
|
* Tue Nov 18 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-41qilnx
|
|
- changed loadmodule script: now it loads only on-boot-* aliases
|
|
|
|
* Tue Nov 18 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-40qilnx
|
|
- init deps table updated
|
|
|
|
* Wed Nov 12 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-39qilnx
|
|
- scripts moved from rcsysinit.d to rcx.d
|
|
|
|
* Fri Nov 07 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-38qilnx
|
|
- added rcsysinit removal of /tmp/.*-lock (mainly to remove XFree86 lock file)
|
|
- fixed initscripts runlevel change and logging
|
|
|
|
* Wed Nov 05 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-37qilnx
|
|
- fixed post and postun scripts
|
|
|
|
* Tue Oct 28 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-36qilnx
|
|
- removed /var/lock/subsys references in multithreaded makefile script
|
|
|
|
* Wed Oct 22 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-35qilnx
|
|
- added multithreaded init support
|
|
|
|
* Thu Oct 16 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-34qilnx
|
|
- default clock configuration (etc/sysconfig/clock) changed to UTC=0
|
|
|
|
* Fri Oct 03 2003 Davide Madrisan <davide.madrisan@qilinux.it> 1.0.0-33qilnx
|
|
- fixed grep commands in the network script
|
|
|
|
* Wed Oct 01 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-32qilnx
|
|
- removed usb scripts (usb support is supplied by hotplug)
|
|
|
|
* Thu Sep 25 2003 Davide Madrisan <davide.madrisan@qilinux.it> 1.0.0-31qilnx
|
|
- updated inittab
|
|
|
|
* Fri Sep 19 2003 Davide Madrisan <davide.madrisan@qilinux.it> 1.0.0-30qilnx
|
|
- removed "kernel.sysrq" directive in sysctl.conf (kernel 2.4.22 compiled
|
|
with no debugging support)
|
|
|
|
* Thu Sep 04 2003 Davide Madrisan <davide.madrisan@qinet.it> 1.0.0-29qilnx
|
|
- network-functions script: improved + cosmetic fixes
|
|
|
|
* Tue Aug 05 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-28qilnx
|
|
- added network-functions
|
|
- removed dummy ifconfig.eth*
|
|
- fixed output of network initscript
|
|
|
|
* Wed Jul 23 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-27qilnx
|
|
- added "probeall" modules autoloading in rc.sysinit
|
|
|
|
* Mon Jul 21 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-26qilnx
|
|
- added initrd umount in rc.sysinit
|
|
|
|
* Tue Jul 15 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-25qilnx
|
|
- cleanfs sets correct permissions to dir /tmp/.ICEauth
|
|
|
|
* Tue Jul 08 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-24qilnx
|
|
- mountproc initscript now goes silent if proc is already mounted
|
|
|
|
* Thu Jun 26 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-23qilnx
|
|
- fixed initscript messages display (compatibility of LFS with RedHat and
|
|
Mandrake)
|
|
|
|
* Wed Jun 25 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-22qilnx
|
|
- fixed ifup dhcp problem
|
|
- fixed usb wrongly displayed sysctl numbers
|
|
|
|
* Mon Jun 23 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-21qilnx
|
|
- added dhcp-client initscripts support
|
|
|
|
* Thu Jun 19 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-20qilnx
|
|
- updated init.d/mountfs script so that it creates a correct /etc/mtab
|
|
|
|
* Fri Jun 13 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-19qilnx
|
|
- fixed inittab install error (was taken from system /etc/!)
|
|
|
|
* Fri Jun 13 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-18qilnx
|
|
- added usb initscript and configuration
|
|
- added inittab serial console access
|
|
|
|
* Fri May 23 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-17qilnx
|
|
- removed sysklogd initscript (now it's in sysklog rpm)
|
|
|
|
* Tue May 20 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-16qilnx
|
|
- changed in function the annoying LFS message on initscripts errors
|
|
|
|
* Tue May 20 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-15qilnx
|
|
- added hdparm initialization (in rcsysinit script)
|
|
|
|
* Mon May 19 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-14qilnx
|
|
- fixed cleanfs initscript deletion of /var/run/* and /var/lock/* (don't
|
|
remove subdirs)
|
|
|
|
* Wed May 07 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-13qilnx
|
|
- modified network-devices sample files to support dmz (eth2)
|
|
- update /etc/init.d/functions for redhat/mandrake compatibility
|
|
|
|
* Wed May 07 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-12qilnx
|
|
- modified network-devices sample files to support iptables-nat
|
|
- modified function script to get correct columns when executed from RPM shell
|
|
|
|
* Tue May 06 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-11qilnx
|
|
- modified cleanfs script so that it creates /var/lock/subsys after removing
|
|
files in /var/lock
|
|
|
|
* Mon May 05 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-10qilnx
|
|
- added networking parameters
|
|
|
|
* Mon May 05 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-9qilnx
|
|
- corrected inclusion of sysctl.conf file
|
|
|
|
* Wed Apr 30 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-8qilnx
|
|
- added RedHat-Mandrake initscripts utilities
|
|
|
|
* Wed Apr 30 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-7qilnx
|
|
- added RedHat-Mandrake initscripts compatibility functions
|
|
(/etc/init.d/functions)
|
|
|
|
* Mon Apr 28 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-6qilnx
|
|
- added /etc/init.d/rc.sysconfig system configuration file
|
|
- added depmod and ldconfig boot execution
|
|
- added /etc/sysctl.conf and boot time configuration
|
|
|
|
* Mon Apr 28 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-5qilnx
|
|
- added /etc/rc*.d, /etc/init.d, /etc/rcsysinit.d symbolic links
|
|
|
|
* Sun Apr 27 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-4qilnx
|
|
- added custom bz2 package
|
|
- added /etc/sysconfig/keyboard config file and changed init scripts to read it
|
|
|
|
* Wed Apr 23 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-3qilnx
|
|
- added localnet script (sysconfig/network)
|
|
|
|
* Wed Apr 23 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-2qilnx
|
|
- added sysconfig/clock (set hardware clock to UTC or not)
|
|
|
|
* Wed Apr 23 2003 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-1qilnx
|
|
- first build based on Linux From Scratch init scripts
|