rpms/system-config-netboot/FC-4 .cvsignore, 1.23, 1.24 sources, 1.25, 1.26 system-config-netboot.spec, 1.31, 1.32

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Wed Mar 1 00:20:30 UTC 2006


Author: jvdias

Update of /cvs/dist/rpms/system-config-netboot/FC-4
In directory cvs.devel.redhat.com:/tmp/cvs-serv10385

Modified Files:
	.cvsignore sources system-config-netboot.spec 
Log Message:
fix bugs 178395, 174629, 182869 - misc. other fixes


Index: .cvsignore
===================================================================
RCS file: /cvs/dist/rpms/system-config-netboot/FC-4/.cvsignore,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- .cvsignore	20 Dec 2005 02:00:25 -0000	1.23
+++ .cvsignore	1 Mar 2006 00:20:27 -0000	1.24
@@ -10,3 +10,6 @@
 system-config-netboot-0.1.30.tar.gz
 system-config-netboot-0.1.33.tar.gz
 system-config-netboot-0.1.34.tar.gz
+system-config-netboot-0.1.36.tar.gz
+system-config-netboot-0.1.37.tar.gz
+system-config-netboot-0.1.38.tar.gz


Index: sources
===================================================================
RCS file: /cvs/dist/rpms/system-config-netboot/FC-4/sources,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- sources	20 Dec 2005 02:00:25 -0000	1.25
+++ sources	1 Mar 2006 00:20:27 -0000	1.26
@@ -1,2 +1 @@
-b596562089670d97833d6a216cc3c4ad  system-config-netboot-0.1.33.tar.gz
-54e5a32dcecc0b03e94e03c76a01c887  system-config-netboot-0.1.34.tar.gz
+b238d55f597fe992f7105f1c13a109a1  system-config-netboot-0.1.38.tar.gz


Index: system-config-netboot.spec
===================================================================
RCS file: /cvs/dist/rpms/system-config-netboot/FC-4/system-config-netboot.spec,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- system-config-netboot.spec	21 Dec 2005 21:55:15 -0000	1.31
+++ system-config-netboot.spec	1 Mar 2006 00:20:27 -0000	1.32
@@ -1,7 +1,7 @@
 # -*- RPM-SPEC -*-
 Summary: system-config-netboot is an network booting/install configuration utility
 Name: system-config-netboot
-Version: 0.1.34
+Version: 0.1.38
 Release: 1_FC4
 URL: http://www.redhat.com/ 
 Source0: %{name}-%{version}.tar.gz
@@ -11,6 +11,7 @@
 BuildRoot: %{_tmppath}/%{name}-%{version}-root
 Requires: gnome-python2, pygtk2, pygtk2-libglade, gnome-python2-canvas, rhpl, alchemist
 Requires: tftp-server >= 0.29-3
+Requires(post): hicolor-icon-theme
 ExclusiveArch: i386 x86_64
 #BuildArch: noarch
 Obsoletes: redhat-config-netboot
@@ -39,9 +40,19 @@
 mkdir -p %{buildroot}/tftpboot/linux-install/pxelinux.cfg
 cp -arfp %{buildroot}/%{_datadir}/system-config-netboot/msgs %{buildroot}/tftpboot/linux-install/
 cp -fp %{SOURCE1} %{buildroot}/tftpboot/linux-install
-
+mkdir -p %{buildroot}/%{_datadir}/icons/hicolor/48x48/apps
+cp -afp pixmaps/system-config-netboot.png  %{buildroot}/%{_datadir}/icons/hicolor/48x48/apps/system-config-netboot.png
 %find_lang %name
 
+%post 
+if [ "$1" -eq 1 ]; then
+   /bin/touch --no-create %{_datadir}/icons/hicolor
+   /bin/touch --no-create %{_datadir}/icons/hicolor/48x48
+   if [ -x /usr/bin/gtk-update-icon-cache ]; then
+      /usr/bin/gtk-update-icon-cache -q %{_datadir}/icons/hicolor
+   fi
+fi
+
 %clean
 rm -rf %{buildroot}
 
@@ -54,6 +65,7 @@
 %{_datadir}/applications/system-config-netboot.desktop
 %{_datadir}/system-config-netboot
 %{_datadir}/pixmaps/system-config-netboot.xpm
+%{_datadir}/icons/hicolor/48x48/apps/system-config-netboot.png
 %{_mandir}/*/*.8*
 /tftpboot/linux-install/pxelinux.cfg/
 /tftpboot/linux-install/msgs/
@@ -62,6 +74,34 @@
 %config %{_sysconfdir}/security/console.apps/system-config-netboot
 
 %changelog
+* Tue Feb 14 2006 Jason Vas Dias <jvdias at redhat.com> - 0.1.38-1
+- further fix for f1 at micromemory.com problem (now bug 181365)
+  deal with required binaries that have been replaced by scripts
+- fix bug 178395: allow setting of NISDOMAIN 
+- fix bug 174629: fix initscript patches (prevent application!)
+- fix bug 182869: should Requires(post): hicolor-icon-theme
+- fix issues reported by brian at chpc.utah.edu (bugs to be raised):
+  o mkdiskless must not wipe out client root customizations on re-run
+  o give serial console checkbox a speed drop down list
+    - add "Use tty0 console also" checkbox option
+  o allow editing of extra boot options in the config file
+  o do not create snapshot directory for network boot targets
+  o remove /etc/ssh keys and make /etc/ssh a snapshot file
+  o mount /var/cache, /var/lib/misc, /var/lib/mrtg on tmpfs / snapshot
+  o fix network syslog : '*' -> '*.*' 
+
+* Thu Feb 09 2006 Jason Vas Dias <jvdias at redhat.com> - 0.1.37-1
+- fix problem reported by f1 at micromemory.com: 
+  detect and deal with missing libraries in the client root correctly
+- fix bug 178392: disklessrc's "^$MODULE" should be "^$MODULE "
+- ship updated .po files
+
+* Wed Dec 21 2005 Jason Vas Dias <jvdias at redhat.com> - 0.1.36-1
+- fix bug 170634: don't use pam_stack in pam configuration file
+- fix bug 171820: add desktop.in file to POTFILES.in
+- use 'LC_ALL=C' for updateDiskless' 'echo y | /sbin/mke2fs ...',
+  as pointed out by email from Kiko Albiol Colomer <kiko at sertecnet.com>
+
 * Mon Dec 19 2005 Jason Vas Dias <jvdias at redhat.com> - 0.1.34-1 
 - fix bug 174942: make diskless clients free initrd memory
 - fix bug 174941: fix mkdiskless syslog.conf typo: '*' -> '*.*'




More information about the fedora-cvs-commits mailing list