firstboot-vl.spec 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898
  1. Summary: Initial system configuration utility
  2. Summary(ja): 初期システム設定ユーティリティ
  3. Name: firstboot
  4. Version: 1.4.27.3
  5. Release: 1%{?_dist_release}
  6. URL: http://fedoraproject.org/wiki/FirstBoot
  7. License: GPLv2+
  8. ExclusiveOS: Linux
  9. Group: System Environment/Base
  10. Source0: %{name}-%{version}.tar.bz2
  11. Patch1: firstboot-vine.patch
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  13. BuildArch: noarch
  14. Prereq: chkconfig
  15. BuildRequires: gettext
  16. Requires: pygtk2
  17. Requires: metacity
  18. Requires: rhpl
  19. Requires: rhpxl
  20. Requires: system-config-display
  21. #Requires: system-config-language
  22. #Requires: system-config-soundcard
  23. Requires: system-config-securitylevel
  24. Requires: system-config-network
  25. Requires: system-config-users
  26. Requires: system-config-date
  27. Requires: system-config-keyboard
  28. Requires: authconfig-gtk
  29. Requires: libuser
  30. #Requires: system-logos
  31. Requires: firstboot-tui = %{version}
  32. ExcludeArch: s390 s390x ppc64
  33. %description
  34. The firstboot utility runs after installation. It guides the
  35. user through a series of steps that allows for easier
  36. configuration of the machine.
  37. %package tui
  38. Summary: A text interface for firstboot
  39. Summary(ja): A text interface for firstboot
  40. Group: System Environment/Base
  41. Prereq: chkconfig, /etc/init.d
  42. BuildPreReq: gettext
  43. Requires: python
  44. Requires: usermode
  45. Requires: rhpl
  46. Requires: system-config-securitylevel-tui
  47. Requires: system-config-network-tui
  48. Requires: ntsysv
  49. Requires: authconfig
  50. %description tui
  51. firstboot-tui is a text interface for initial system configuration.
  52. %prep
  53. %setup -q
  54. %patch1 -p1
  55. sed -i -e 's|/usr/bin/python2|/usr/bin/python|g' \
  56. src/firstboot src/xfirstboot.py src/firstboot.py
  57. %build
  58. make
  59. %install
  60. make INSTROOT=$RPM_BUILD_ROOT install
  61. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
  62. echo "RUN_FIRSTBOOT=NO" > $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/firstboot
  63. %find_lang %name
  64. %clean
  65. rm -rf $RPM_BUILD_ROOT
  66. %post tui
  67. if ! [ -f /etc/sysconfig/firstboot ]
  68. then
  69. chkconfig --add firstboot
  70. fi
  71. %preun
  72. if [ $1 = 0 ]; then
  73. rm -rf /usr/share/firstboot/*.pyc
  74. rm -rf /usr/share/firstboot/modules/*.pyc
  75. fi
  76. %preun tui
  77. if [ $1 = 0 ]; then
  78. chkconfig --del firstboot
  79. fi
  80. %files -f %{name}.lang
  81. %defattr(-,root,root)
  82. %config %{_sysconfdir}/sysconfig/firstboot
  83. %dir %{_datadir}/firstboot/
  84. %dir %{_datadir}/firstboot/modules/
  85. %dir %{_datadir}/firstboot/pixmaps/
  86. %{_datadir}/firstboot/exceptionWindow.py*
  87. %{_datadir}/firstboot/firstbootWindow.py*
  88. %{_datadir}/firstboot/firstboot_module_window.py*
  89. %{_datadir}/firstboot/xfirstboot.py*
  90. %{_datadir}/firstboot/modules/*
  91. %{_datadir}/firstboot/pixmaps/*
  92. %files -f %{name}.lang tui
  93. %defattr(-,root,root)
  94. %config %{_sysconfdir}/rc.d/init.d/firstboot
  95. %dir %{_datadir}/firstboot/
  96. %{_sbindir}/firstboot
  97. %{_datadir}/firstboot/constants_text.py*
  98. %{_datadir}/firstboot/eula_strings.py*
  99. %{_datadir}/firstboot/firstboot.py*
  100. %{_datadir}/firstboot/firstbootBackend.py*
  101. %{_datadir}/firstboot/functions.py*
  102. %{_datadir}/firstboot/textWindow.py*
  103. %changelog
  104. * Thu Oct 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.27.3-1
  105. - initial build for Vine Linux
  106. * Fri Nov 9 2007 Karanbir Singh <kbsingh@centos.org> 1.4.27.3-1.el5.centos
  107. - Roll in CentOS Branding
  108. * Thu Jun 28 2007 Chris Lumens <clumens@redhat.com> 1.4.27.3-1
  109. - Iterate over all possible CD drives on the additional CD module (#231612).
  110. - Enable fullscreen mode again; scale sidebar graphics (#211198).
  111. * Mon Jan 15 2007 Chris Lumens <clumens@redhat.com> 1.4.27.2-1
  112. - Pull in updated gu_IN translation (#222628).
  113. - Merge in additional CDs patch so it doesn't get dropped.
  114. * Mon Dec 18 2006 Chris Lumens <clumens@redhat.com> 1.4.27.1-1
  115. - Allow running on s390 and ppc64 under reconfig mode (#217921).
  116. * Wed Dec 13 2006 Chris Lumens <clumens@redhat.com> 1.4.27-1
  117. - More translation updates (#212958, #198872).
  118. * Thu Nov 30 2006 Chris Lumens <clumens@redhat.com> 1.4.26-1
  119. - Update translations (#198872).
  120. * Thu Oct 26 2006 Chris Lumens <clumens@redhat.com> 1.4.25-1
  121. - Require matching versions of firstboot and firstboot-tui.
  122. - Fix language in non-rhgb graphical case (notting).
  123. * Wed Oct 25 2006 Chris Lumens <clumens@redhat.com> 1.4.24-1
  124. - Pick up new si_LK translation (#200532).
  125. - Support noSidebar value for modules (#210697).
  126. - Fix release number.
  127. - Do start up in English on CJKI installs in text mode (#211936).
  128. * Mon Oct 02 2006 Chris Lumens <clumens@redhat.com> - 1.4.23-1
  129. - runPriority can now be a float.
  130. - Pick up new translations (#208867).
  131. - Set window to 800x600 instead of fullscreening (#208331, #208620).
  132. * Wed Sep 20 2006 Chris Lumens <clumens@redhat.com> 1.4.22-1
  133. - Add help output to /etc/init.d/firstboot (#207043).
  134. - Fix a window manager warning (#206369).
  135. - Don't start up in English on CJKI installs (#206600).
  136. * Fri Sep 15 2006 Chris Lumens <clumens@redhat.com> 1.4.21-1
  137. - Use system-config-network-tui instead of netconfig in the text
  138. interface.
  139. - Remove unused methods in the modules.
  140. * Tue Sep 12 2006 Chris Lumens <clumens@redhat.com> 1.4.20-1
  141. - Don't specify a default color depth.
  142. - Pull in new translations (#199090).
  143. * Tue Aug 08 2006 Chris Lumens <clumens@redhat.com> 1.4.19-1
  144. - Don't fill in the Create User UI with whatever user happens to have
  145. UID 500 (#200695).
  146. * Wed Aug 02 2006 Chris Lumens <clumens@redhat.com> 1.4.18-1
  147. - Remove ddc probe support that rhpxl no longer provides.
  148. * Fri Jul 28 2006 Chris Lumens <clumens@redhat.com> 1.4.17-1
  149. - Pick up new or_IN translation (#200210).
  150. - Use new rhpxl X startup code.
  151. * Mon Jul 24 2006 Chris Lumens <clumens@redhat.com> 1.4.16-1
  152. - Fix system-config-soundcard API change.
  153. - Make sure firstboot starts after HAL (#199899).
  154. * Thu Jul 20 2006 Chris Lumens <clumens@redhat.com> 1.4.15-1
  155. - Really disable the display module.
  156. * Wed Jul 19 2006 Chris Lumens <clumens@redhat.com> 1.4.14-1
  157. - Disable the display module for now.
  158. * Fri Jul 10 2006 Chris Lumens <clumens@redhat.com> 1.4.13-1
  159. - Better fix for the no display hardware case (#192808).
  160. * Wed Jun 21 2006 Chris Lumens <clumens@redhat.com> 1.4.12-1
  161. - Update translation files (#195010).
  162. - Fix traceback on exiting (#196128).
  163. * Mon Jun 12 2006 Chris Lumens <clumens@redhat.com> 1.4.11-1
  164. - Don't traceback on the display module if there's no display hardware
  165. (#142522).
  166. - Don't forget about reconfig mode if the timer expires (#170609).
  167. * Fri May 26 2006 Chris Lumens <clumens@redhat.com> 1.4.10-1
  168. - Fix reconfig mode.
  169. * Fri May 19 2006 Chris Lumens <clumens@redhat.com> 1.4.9-1
  170. - Make /etc/modprobe.conf reading more robust (#191819).
  171. - Don't try to call readHTML from anaconda's ICS.
  172. * Mon May 15 2006 Chris Lumens <clumens@redhat.com> 1.4.8-2
  173. - Require system-logos instead of an OS-specific package (#191407).
  174. * Tue Apr 04 2006 Chris Lumens <clumens@redhat.com> 1.4.8-1
  175. - Allow firstboot to run in kadischi (#186870).
  176. - Updated for rhpxl changes.
  177. * Mon Mar 20 2006 Martin Stransky <stransky@redhat.com> 1.4.7-1
  178. - replaced "Play test button" by "Play" button for s-c-s (#185931)
  179. - Fix soundcard string (#177425).
  180. - Fix label inconsistency on welcome screen (#183899).
  181. - Rework "System User" string (#177940).
  182. - Don't create a user if a homedir with that username already exists
  183. (#143150).
  184. * Fri Mar 03 2006 Chris Lumens <clumens@redhat.com> 1.4.6-1
  185. - Revert UI changes that broke s-c-keyboard (#183718).
  186. * Wed Mar 01 2006 Chris Lumens <clumens@redhat.com> 1.4.5-1
  187. - Run if RUN_FIRSTBOOT != "NO" (#180520).
  188. - Don't let dialog windows hide behind the main window.
  189. - Remove timeout waiting for server to start.
  190. * Wed Feb 08 2006 Chris Lumens <clumens@redhat.com> 1.4.4-1
  191. - Get rid of chkconfig --off calls.
  192. - Smarter checking for if we need to reboot or not.
  193. * Mon Feb 06 2006 Chris Lumens <clumens@redhat.com> 1.4.3-1
  194. - Tweak firstboot-tui requires to not require X (#180046).
  195. - Wrap left side labels if they're too long.
  196. - Remove "Click to Finish" module (#178109).
  197. - Try to prevent running in runlevel 3 if we failed in runlevel 5
  198. (#145169).
  199. * Fri Jan 27 2006 Chris Lumens <clumens@redhat.com> 1.4.2-1
  200. - Layout cleanups and simplification.
  201. - Use GTK styles to display the new artwork in non-debug mode.
  202. * Wed Jan 25 2006 Chris Lumens <clumens@redhat.com> 1.4.1-1
  203. - Fix debug mode.
  204. - Use the new bubbly artwork (#178106).
  205. * Thu Jan 19 2006 Chris Lumens <clumens@redhat.com> 1.4.0-1
  206. - Split into separate packages for X and no X (#178216).
  207. * Mon Jan 09 2006 Chris Lumens <clumens@redhat.com> 1.3.57-1
  208. - Use scdMainWindow instead of mainWindow to fix random python import
  209. tracebacks.
  210. * Mon Jan 09 2006 Chris Lumens <clumens@redhat.com> 1.3.56-2
  211. - Remove dependancy on system-config-packages.
  212. * Thu Jan 09 2006 Chris Lumens <clumens@redhat.com> 1.3.56-1
  213. - Increase timeout on waiting for X to start (#176782).
  214. - Update translations.
  215. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  216. - rebuilt
  217. * Thu Dec 08 2005 Chris Lumens <clumens@redhat.com> 1.3.55-1
  218. - Fix grammar problems (#143953).
  219. - Fix traceback on user screen (#175227).
  220. * Wed Nov 30 2005 Chris Lumens <clumens@redhat.com> 1.3.54-1
  221. - Use system-config-users for user/group/password validation (#174255).
  222. * Wed Nov 16 2005 Chris Lumens <clumens@redhat.com> 1.3.53-1
  223. - Disable Additional CDs module for now.
  224. * Fri Oct 28 2005 Chris Lumens <clumens@redhat.com> 1.3.52-1
  225. - Set a timeout on waiting for the window manager to start.
  226. - Correct ps output.
  227. - Move keyboard initialization to after the modules have been loaded
  228. (#133074, #157870).
  229. * Mon Oct 17 2005 Chris Lumens <clumens@redhat.com> 1.3.51-1
  230. - Fix whrandom deprecation warnings.
  231. - Fix render_to_drawable deprecation warnings.
  232. - Change "Next" button on last page to "Finish".
  233. * Tue Oct 11 2005 Chris Lumens <clumens@redhat.com> 1.3.50-1
  234. - Decrease blank space on finished screen (#144496).
  235. - Fix import of rhpxl.videocard.
  236. * Fri Oct 07 2005 Chris Lumens <clumens@redhat.com> 1.3.49-1
  237. - Use rhpxl instead of rhpl for X stuff.
  238. * Fri Sep 23 2005 Chris Lumens <clumens@redhat.com> 1.3.48-1
  239. - Fix autoscreenshot test (#169102).
  240. - Allow unicode letters in full user names (#169043).
  241. * Thu Sep 15 2005 Jeremy Katz <katzj@redhat.com> - 1.3.47-2
  242. - exclude arch ppc64 to stop from being included in ppc64 compose where
  243. we don't have X
  244. * Thu Sep 15 2005 Chris Lumens <clumens@redhat.com> 1.3.47-1
  245. - Moved firstboot_gui_window here from rhpl and renamed it to
  246. firstboot_module_window.
  247. - Converted /usr/sbin/firstboot into a python script.
  248. - Converted the rest of firstboot into a module suitable for importing.
  249. * Tue Sep 13 2005 Chris Lumens <clumens@redhat.com> 1.3.46-1
  250. - Remove dependancy on up2date (#167663).
  251. - Use rhpl's X startup code instead of using something different.
  252. * Wed Aug 17 2005 Chris Lumens <clumens@redhat.com> 1.3.45-1
  253. - Don't fail if no ifcfg script exists for a NIC found in modprobe.conf
  254. (#164874).
  255. - Restore focus after closing dialogs (#143388, #143711).
  256. * Tue Aug 02 2005 Chris Lumens <clumens@redhat.com> 1.3.44-1
  257. - Allow modules to specify that the system should be rebooted after
  258. firstboot has run via the needsReboot module attribute.
  259. - Enable checking for capital letters in usernames again to be consistent
  260. with system-config-users (#164852).
  261. - Use libuser for adding users again (#164160).
  262. - Rebuilt translations.
  263. * Thu Jul 07 2005 Chris Lumens <clumens@redhat.com> 1.3.43-1
  264. - Remove dependancy on xsri (#145807).
  265. - Fix typo in "additional" (#158435).
  266. - Tabs vs. spaces consistency (#156456).
  267. - Don't require system-config-display on ppc64.
  268. * Wed May 25 2005 Jeremy Katz <katzj@redhat.com> - 1.3.42-1
  269. - Stop using deprecated gtk.{TRUE,FALSE} (#153033)
  270. * Tue May 24 2005 Adrian Likins <alikins@redhat.com> - 1.3.41
  271. - fix #158095 - Subscription Alert (on first login) on non network installs
  272. * Thu May 19 2005 Adrian Likins <alikins@redhat.com> - 1.3.40
  273. - fix #154606 - First boot displays "please insert the red hat enterprise linux extras disk"
  274. * Fri Dec 14 2004 Adrian Likins <alikins@redhat.com> - 1.3.39-2
  275. - really fix #138727 (was looking for cdroms in the wrong place)
  276. * Fri Dec 14 2004 Adrian Likins <alikins@redhat.com> - 1.3.38-1
  277. - fix #138727 (patch from katzj)
  278. - latest translations
  279. * Fri Nov 12 2004 Adrian Likins <alikins@redhat.com> - 1.3.37-2
  280. - fix #139060
  281. * Wed Nov 10 2004 Adrian Likins <alikins@redhat.com> - 1.3.35-1
  282. - fix #137151
  283. - fix #138541
  284. * Wed Oct 27 2004 Adrian Likins <alikins@redhat.com> - 1.3.34-1
  285. - add code to detect if a module wants to be skipped
  286. (basically, stuff to me not show RHN modules on fedora)
  287. * Mon Oct 18 2004 Adrian Likins <alikins@redhat.com> - 1.3.33-1
  288. - #129885 (do the right thing on ia64)
  289. - #129532 (typo in display file location)
  290. * Fri Oct 15 2004 Adrian Likins <alikins@redhat.com> - 1.3.30-1
  291. - merge some updates from rhel3 branch
  292. - try enabling tui stuff again
  293. * Tue Oct 5 2004 Adrian Likins <alikins@redhat.com> - 1.3.28-1
  294. - text changes for #129885
  295. - get rid of some deprecation warnings
  296. * Tue Sep 28 2004 Nils Philippsen <nphilipp@redhat.com> - 1.3.27-1
  297. - let timezone only be configured on --reconfig (#133748)
  298. - require system-config-date >= 1.7.9
  299. * Thu Sep 23 2004 Adrian Likins <alikins@redhat.com> - 1.3.26-1
  300. - applied patch from #132736
  301. * Tue Sep 14 2004 Adrian Likins <alikins@redhat.com> - 1.3.25-1
  302. - change finish screen to not show default "success"
  303. message if were also showing errors
  304. - fix forward/back behaviour
  305. * Fri Sep 10 2004 Adrian Likins <alikins@redhat.com> - 1.3.23-1
  306. - fix for finish screen
  307. - ignore modules that throw exceptions on import
  308. (#129532 and other variations of "firstboot doesnt start)
  309. * Fri Sep 3 2004 Adrian Likins <alikins@redhat.com> - 1.3.21-1
  310. - more fixes for #131308
  311. * Wed Sep 1 2004 Adrian Likins <alikins@redhat.com> - 1.3.20-1
  312. - better fix for #131308 (works now, but needs some
  313. screen resizing)
  314. * Tue Aug 31 2004 Adrian Likins <alikins@redhat.com> - 1.3.19-1
  315. - #131308 (system-config-date changed, working to not
  316. traceback, still needs more fixing)
  317. * Thu Jul 15 2004 Adrian Likins <alikins@redhat.com> - 1.3.17-1
  318. - allow screens to catch a signal when they are shown
  319. * Wed Jun 30 2004 Adrian Likins <alikins@redhat.com> - 1.3.16-1
  320. - apply patch to allow modules to go forward/back in
  321. the module order
  322. * Mon Jun 21 2004 Brent Fox <bfox@redhat.com> - 1.3.15-1
  323. - apply patch from mikem in bug #121489
  324. * Wed May 12 2004 Elliot Lee <sopwith@redhat.com> 1.3.14-1
  325. - Fix initscript (#121489)
  326. * Mon May 3 2004 Brent Fox <bfox@redhat.com> 1.3.13-1
  327. - fix Norwegian translation bug (bug #122206)
  328. * Thu Apr 22 2004 Brent Fox <bfox@redhat.com> 1.3.12-1
  329. - look for xorg.conf, not XF86Config (bug #121489)
  330. * Thu Apr 15 2004 Brent Fox <bfox@redhat.com> 1.3.11-1
  331. - fix bug #120669
  332. * Wed Apr 7 2004 Brent Fox <bfox@redhat.com> 1.3.10-2
  333. - allow for correct text mode button translations (bug #120087)
  334. * Wed Mar 17 2004 Jeremy Katz <katzj@redhat.com> 1.3.10-1
  335. - fix password to be encrypted properly
  336. * Wed Mar 17 2004 Jeremy Katz <katzj@redhat.com> 1.3.9-1
  337. - more workarounds for selinux (don't use libuser at all for create_user.py
  338. for right now)
  339. * Wed Mar 17 2004 Brent Fox <bfox@redhat.com> 1.3.8-1
  340. - workaround selinux - patch from jeremy
  341. * Tue Mar 9 2004 Brent Fox <bfox@redhat.com> 1.3.7-2
  342. - fix typo (bug #117867)
  343. * Mon Mar 8 2004 Brent Fox <bfox@redhat.com> 1.3.7-1
  344. - drop the verbose print statements
  345. * Thu Mar 4 2004 Brent Fox <bfox@redhat.com> 1.3.6-1
  346. - only call chkconfig -add if /etc/sysconfig/firstboot does not exist
  347. * Mon Mar 1 2004 Brent Fox <bfox@redhat.com> 1.3.5-2
  348. - remove Requires on system-config-mouse
  349. * Tue Feb 17 2004 Brent Fox <bfox@redhat.com> 1.3.5-1
  350. - call self.win.present() to allow initial keyboard input
  351. * Mon Feb 16 2004 Brent Fox <bfox@redhat.com> 1.3.4-1
  352. - UTF-8ify fr.po
  353. - make sure the root window stays on the bottom (bug #105631)
  354. * Tue Jan 27 2004 Tim Powers <timp@ragnarok.devel.redhat.com> 1.3.3-3
  355. - fedora-logos -> redhat-logos since redhat-logos is a virtual
  356. provides (used so that we can switch out redhat-logos with
  357. fedora-logos easily). Will change to system-logos once the changes
  358. have been made.
  359. * Fri Jan 23 2004 Bill Nottingham <notting@redhat.com> 1.3.3-2
  360. - some more s/redhat/system/ on requires
  361. * Mon Dec 1 2003 Brent Fox <bfox@redhat.com> 1.3.2-2
  362. - redhat-logos hasn't been renamed to system-logos yet
  363. * Mon Nov 24 2003 Brent Fox <bfox@redhat.com> 1.3.2-1
  364. - make changes for Python2.3
  365. * Sun Nov 23 2003 Brent Fox <bfox@redhat.com> 1.3.2-1
  366. - update Requires for system-config name change
  367. - make changes for Python2.3
  368. * Mon Oct 27 2003 Brent Fox <bfox@redhat.com> 1.3.1-1
  369. - fix initscript for text mode
  370. * Fri Oct 24 2003 Brent Fox <bfox@redhat.com> 1.3.1-1
  371. - bump version
  372. - use CVS head now for Fedora Core 2
  373. - made firstboot-cambridge branch for Fedora Core 1
  374. - first stab at text mode
  375. * Wed Oct 15 2003 Brent Fox <bfox@redhat.com> 1.2.4-1
  376. - pull lightrays.png from a different location
  377. * Wed Oct 8 2003 Brent Fox <bfox@redhat.com> 1.2.3-1
  378. - override rhgb's background
  379. * Wed Oct 8 2003 Brent Fox <bfox@redhat.com> 1.2.2-1
  380. - remove up2date module from Fedora
  381. * Mon Sep 22 2003 Brent Fox <bfox@redhat.com> 1.2.1-1
  382. - remove some items from the additional cd's screen for now
  383. - remove some references to Red Hat Linux from welcome.py and up2date.py
  384. * Fri Aug 29 2003 Brent Fox <bfox@redhat.com> 1.1.16-2
  385. - bump relnum and rebuild
  386. * Fri Aug 29 2003 Brent Fox <bfox@redhat.com> 1.1.16-1
  387. - call authconfig with --firstboot flag correctly (bug #103367)
  388. * Thu Aug 28 2003 Brent Fox <bfox@bfox.devel.redhat.com> 1.1.15-2
  389. - bump relnum and rebuild
  390. * Thu Aug 28 2003 Brent Fox <bfox@bfox.devel.redhat.com> 1.1.15-1
  391. - handle network timeouts better in the date.py screen
  392. * Thu Aug 28 2003 Brent Fox <bfox@bfox.devel.redhat.com> 1.1.14-1
  393. - handle cds without autorun files better in additional_cds.py
  394. * Thu Aug 21 2003 Brent Fox <bfox@redhat.com> 1.1.13-3
  395. - bump relnum and rebuild
  396. * Thu Aug 21 2003 Brent Fox <bfox@redhat.com> 1.1.13-2
  397. - bump relnum and rebuild
  398. * Thu Aug 21 2003 Brent Fox <bfox@redhat.com> 1.1.13-1
  399. - pass --firstboot flag to authconfig-gtk in create_user.py
  400. * Tue Aug 19 2003 Brent Fox <bfox@redhat.com> 1.1.12-2
  401. - bump relnum and rebuild
  402. * Tue Aug 19 2003 Brent Fox <bfox@redhat.com> 1.1.12-1
  403. - fix formatting bug in create_user.py
  404. * Fri Aug 15 2003 Brent Fox <bfox@redhat.com> 1.1.11-2
  405. - bump relnum and rebuild
  406. * Fri Aug 15 2003 Brent Fox <bfox@redhat.com> 1.1.11-1
  407. - run 'chkconfig --del firstboot' when it's done
  408. * Thu Aug 14 2003 Brent Fox <bfox@redhat.com> 1.1.10-1
  409. - allow underscores and dashes in usernames (bug #99115)
  410. * Wed Aug 13 2003 Brent Fox <bfox@redhat.com> 1.1.9-1
  411. - replace BuildRequires on python-tools with gettext
  412. * Thu Jul 31 2003 Brent Fox <bfox@redhat.com> 1.1.8-2
  413. - bump relnum and rebuild
  414. * Thu Jul 31 2003 Brent Fox <bfox@redhat.com> 1.1.8-1
  415. - apply patch from hfuchi@redhat.com for Japanese translation
  416. * Thu Jul 31 2003 Brent Fox <bfox@redhat.com> 1.1.7-2
  417. - bump relnum and rebuild
  418. * Thu Jul 31 2003 Brent Fox <bfox@redhat.com> 1.1.7-1
  419. - change runPriority in welcome module
  420. * Tue Jul 22 2003 Brent Fox <bfox@redhat.com> 1.1.6-2
  421. - bump relnum and rebuild
  422. * Tue Jul 22 2003 Brent Fox <bfox@redhat.com> 1.1.6-1
  423. - resolve conflict between "Next" and "Forward" (bug #100498)
  424. * Fri Jul 18 2003 Brent Fox <bfox@redhat.com> 1.1.5-2
  425. - bump relnum and rebuild
  426. * Fri Jul 18 2003 Brent Fox <bfox@redhat.com> 1.1.5-1
  427. - fix conficting nmemonics (bug #99279)
  428. * Wed Jul 2 2003 Brent Fox <bfox@redhat.com> 1.1.4-2
  429. - bump relnum and rebuild
  430. * Wed Jul 2 2003 Brent Fox <bfox@redhat.com> 1.1.4-1
  431. - remove unneeded code from the neworking module
  432. * Thu Jun 26 2003 Brent Fox <bfox@redhat.com> 1.1.3-1
  433. - first stab at getting locale changing working (#91984)
  434. * Thu Jun 19 2003 Brent Fox <bfox@redhat.com> 1.1.2-2
  435. - bump number and rebuild
  436. * Thu Jun 19 2003 Brent Fox <bfox@redhat.com> 1.1.2-1
  437. - implement networking screen for reconfig mode (bug #91984)
  438. * Mon Jun 16 2003 Brent Fox <bfox@redhat.com> 1.1.1-2
  439. - bump number and rebuild
  440. * Mon Jun 16 2003 Brent Fox <bfox@redhat.com> 1.1.1-1
  441. - create a timezone module (bug #91984)
  442. * Tue Jun 10 2003 Brent Fox <bfox@redhat.com> 1.0.12-1
  443. - change "Forward" button to "Next"
  444. * Fri May 30 2003 Brent Fox <bfox@redhat.com> 1.0.11-1
  445. - fix traceback in username verification
  446. * Thu May 29 2003 Brent Fox <bfox@redhat.com> 1.0.10-1
  447. - updated deprecated function call in functions.py
  448. - don't grab the whole screen in debug mode
  449. * Thu May 22 2003 Brent Fox <bfox@redhat.com> 1.0.9-1
  450. - remove explicit vt7 argument to X (bug #87636)
  451. * Thu May 22 2003 Brent Fox <bfox@redhat.com> 1.0.8-1
  452. - pass rhgb status into firstbootWindow.py
  453. - don't draw background if rhgb isn't running
  454. * Mon May 19 2003 Brent Fox <bfox@redhat.com> 1.0.7-1
  455. - check to see if rhgb is running
  456. - if rhgb is running, start up metacity and merge X resources
  457. * Fri May 16 2003 Brent Fox <bfox@redhat.com> 1.0.6-2
  458. - Added a mnemonic for network login button (bug #90636)
  459. - added more mnemonics create_user.py (bug #90865)
  460. * Mon Mar 24 2003 Brent Fox <bfox@redhat.com> 1.0.6-1
  461. - add a button to create_user.py to launch authconfig-gtk
  462. * Fri Mar 7 2003 Brent Fox <bfox@redhat.com> 1.0.5-13
  463. - bump rev for 3.0E
  464. * Fri Feb 28 2003 Brent Fox <bfox@redhat.com> 1.0.5-12
  465. - fix bug #85358
  466. * Tue Feb 25 2003 Jeremy Katz <katzj@redhat.com> 1.0.5-11
  467. - background image name changed (#85160)
  468. - don't traceback if background doesn't exist
  469. * Mon Feb 24 2003 Nalin Dahyabhai <nalin@redhat.com> 1.0.5-10
  470. - compare text to string.whitespace, not whitespace (#85038)
  471. * Mon Feb 24 2003 Brent Fox <bfox@redhat.com> 1.0.5-9
  472. - apply initscript patch from mikem@redhat.com. Avoids calling telinit (bug #84848)
  473. * Fri Feb 21 2003 Brent Fox <bfox@redhat.com> 1.0.5-8
  474. - call RGB_DITHER_MAX (bug #84850)
  475. * Thu Feb 20 2003 Brent Fox <bfox@redhat.com> 1.0.5-7
  476. - fix traceback in create_users.py (bug #84722)
  477. * Tue Feb 18 2003 Brent Fox <bfox@redhat.com> 1.0.5-6
  478. - add mnemonics to up2date.py (bug #84487)
  479. * Wed Feb 12 2003 Brent Fox <bfox@redhat.com> 1.0.5-5
  480. - only launch r-c-xfree86 if in runlevel 3 and XF86Config does not exist (bug #84135)
  481. * Tue Feb 11 2003 Brent Fox <bfox@redhat.com> 1.0.5-4
  482. - fix bug #84068
  483. * Wed Feb 5 2003 Brent Fox <bfox@redhat.com> 1.0.5-3
  484. - check for empty soundcard list, not list = None
  485. * Mon Feb 3 2003 Brent Fox <bfox@redhat.com> 1.0.5-2
  486. - notting fixed the initscript to pull in the locale
  487. * Fri Jan 31 2003 Brent Fox <bfox@redhat.com> 1.0.5-1
  488. - new strings in up2date module
  489. * Wed Jan 29 2003 Brent Fox <bfox@redhat.com> 1.0.4-8
  490. - don't run firstboot in runlevel 3 at all (bug #78239)
  491. - fix return tuple if no soundcards are found in soundcard_gui.py
  492. - use backslash instead of forward slash in the init script
  493. * Wed Jan 29 2003 Brent Fox <bfox@redhat.com> 1.0.4-6
  494. - give the X server 1 second to close before we exit firstboot (bug #81313)
  495. * Tue Jan 28 2003 Brent Fox <bfox@redhat.com> 1.0.4-5
  496. - don't use Yes/No dialogs in create_user.py (bug #82680)
  497. - only use root window mode in non-debug mode
  498. - make module titles consistent with each other
  499. * Fri Jan 24 2003 Brent Fox <bfox@redhat.com> 1.0.4-4
  500. - better validity checking for user name and password
  501. * Tue Jan 21 2003 Brent Fox <bfox@redhat.com> 1.0.4-3
  502. - remove print statement that was causing a traceback
  503. * Mon Jan 20 2003 Brent Fox <bfox@redhat.com> 1.0.4-2
  504. - use the gdm background as the background image
  505. * Fri Jan 17 2003 Brent Fox <bfox@redhat.com> 1.0.4-1
  506. - make hboxes transparent and use a new background
  507. * Mon Jan 13 2003 Brent Fox <bfox@redhat.com> 1.0.3-6
  508. - make it so that we can paint the root window
  509. * Thu Jan 9 2003 Brent Fox <bfox@redhat.com> 1.0.3-5
  510. - sleep .5 sec on exit (bug #81313)
  511. * Mon Dec 23 2002 Brent Fox <bfox@redhat.com> 1.0.3-4
  512. - enforce 6 char user passwords
  513. * Sun Dec 22 2002 Brent Fox <bfox@redhat.com> 1.0.3-3
  514. - require an NTP server if NTP selected in date.py
  515. * Tue Dec 17 2002 Brent Fox <bfox@redhat.com> 1.0.3-2
  516. - don't run x tool if /etc/sysconfig/firstboot exists
  517. * Mon Dec 02 2002 Brent Fox <bfox@redhat.com> 1.0.3-1
  518. - Create a message for machines that boot in runlevel 3
  519. * Tue Nov 26 2002 Brent Fox <bfox@redhat.com> 1.0.2-4
  520. - Mark initscript strings as internationalizable (bug 77826)
  521. * Fri Nov 22 2002 Florian La Roche <Florian.LaRoche@redhat.de>
  522. - exclude mainframe
  523. * Wed Nov 13 2002 Brent Fox <bfox@redhat.com> 1.0.2-3
  524. - fix soundcard and mouse problem
  525. * Tue Nov 12 2002 Brent Fox <bfox@redhat.com> 1.0.2-2
  526. - explicitly kill X server pid
  527. - Latest translations
  528. * Thu Sep 05 2002 Brent Fox <bfox@redhat.com> 1.0.1-10
  529. - moved some pixmaps to redhat-logos package
  530. - added a requires for redhat-logos package
  531. * Tue Sep 03 2002 Brent Fox <bfox@redhat.com> 1.0.1-9
  532. - call dithering magic to make new pixmaps appear correctly
  533. * Tue Sep 03 2002 Brent Fox <bfox@redhat.com> 1.0.1-8
  534. - get new pixmaps from garrett
  535. * Fri Aug 30 2002 Brent Fox <bfox@redhat.com> 1.0.1-7
  536. - Wrap umount in a try/except in additional_cds.py
  537. * Fri Aug 30 2002 Brent Fox <bfox@redhat.com> 1.0.1-6
  538. - run chkconfig on starting/stopping ntpd
  539. * Thu Aug 29 2002 Brent Fox <bfox@redhat.com> 1.0.1-5
  540. - Make the date screen update the time widgets when the screen is entered
  541. * Thu Aug 29 2002 Brent Fox <bfox@redhat.com> 1.0.1-4
  542. - Convert po files to UTF-8
  543. * Thu Aug 29 2002 Brent Fox <bfox@redhat.com> 1.0.1-3
  544. - created a flag so that failed connections to NTP servers don't advance the screens
  545. - Don't try to display the parent window pixmap gradient
  546. - Make the parent window background a little darker
  547. * Wed Aug 28 2002 Brent Fox <bfox@redhat.com> 1.0.1-2
  548. - Fix typo
  549. * Wed Aug 28 2002 Brent Fox <bfox@redhat.com> 1.0.1-1
  550. - Convert to noarch
  551. - Add a root window mode for firstbootWindow
  552. - Use a gtkInvisible dialog to block on up2date and the package screen
  553. * Wed Aug 28 2002 Karsten Hopp <karsten@redhat.de> 1.0.0-5
  554. - don't require config-mouse, config-keyboard, config-soundcard
  555. on S390
  556. * Tue Aug 27 2002 Brent Fox <bfox@redhat.com> 1.0.0-4
  557. - fix hang on unreponsive ntp servers
  558. * Thu Aug 22 2002 Brent Fox <bfox@redhat.com> 1.0.0-3
  559. - Don't draw window decorations
  560. * Wed Aug 21 2002 Brent Fox <bfox@redhat.com> 1.0.0-2
  561. - pull translation domains from rhpl
  562. * Wed Aug 21 2002 Brent Fox <bfox@redhat.com> 1.0.0-1
  563. - Implement a lowres mode for 640x480 screens
  564. * Thu Aug 15 2002 Brent Fox <bfox@rehdat.com> 0.9.9-13
  565. - Don't show up2date screen if machine is already registered
  566. * Wed Aug 14 2002 Brent Fox <bfox@redhat.com> 0.9.9-12
  567. - fix reconfig mode
  568. - change pixmap on finished screen
  569. * Tue Aug 13 2002 Brent Fox <bfox@redhat.com> 0.9.9-11
  570. - pass None into startNtpService
  571. * Tue Aug 13 2002 Brent Fox <bfox@redhat.com> 0.9.9-10
  572. - If there's no XF86Config file, start redhat-config-xfree86 first
  573. * Tue Aug 13 2002 Brent Fox <bfox@redhat.com> 0.9.9-9
  574. - only start in runlevel 5
  575. * Tue Aug 13 2002 Brent Fox <bfox@redhat.com> 0.9.9-8
  576. - include cd.png
  577. * Tue Aug 13 2002 Brent Fox <bfox@redhat.com> 0.9.9-7
  578. - improved UI on additional cd screen
  579. * Tue Aug 13 2002 Brent Fox <bfox@redhat.com> 0.9.9-6
  580. - Require redhat-config-packages
  581. - Change string in finished module
  582. * Mon Aug 12 2002 Brent Fox <bfox@redhat.com> 0.9.9-5
  583. - Print out a message if user tries to run firstboot again
  584. - move firstboot to firstboot.py and create a shell script for firstboot
  585. - applied a patch from dburcaw@terraplex.com to check to see if we're run as root
  586. * Mon Aug 12 2002 Brent Fox <bfox@redhat.com> 0.9.9-4
  587. - Try to fix race condition
  588. - Have init script return 0 instead of 1
  589. - Make Forward button grab the focus
  590. * Wed Aug 07 2002 Brent Fox <bfox@redhat.com> 0.9.9-1
  591. - Rebuild for Jay, who is being a punk ;)
  592. * Fri Aug 02 2002 Brent Fox <bfox@redhat.com> 0.9.8-1
  593. - Make changes for new pam timestamp policy
  594. * Thu Aug 01 2002 Brent Fox <bfox@redhat.com> 0.9.7-1
  595. - fix typo in finished module
  596. - create better text in the exception screen
  597. - save traceback info in /tmp/firstboot.txt
  598. * Tue Jul 30 2002 Brent Fox <bfox@redhat.com> 0.9.6-5
  599. - merge Xresources on startup. Fixes bug #68724
  600. * Thu Jul 25 2002 Brent Fox <bfox@redhat.com> 0.9.6-4
  601. - change background color
  602. - give some padding to the icon box
  603. - put new splash and text on welcome and finished modules
  604. * Wed Jul 24 2002 Brent Fox <bfox@redhat.com> 0.9.6-3
  605. - fix Makefiles and spec files so that translations get installed
  606. * Wed Jul 24 2002 Brent Fox <bfox@redhat.com> 0.9.6-2
  607. - update spec file for public beta 2
  608. * Tue Jul 23 2002 Brent Fox <bfox@redhat.com> 0.9.6-1
  609. - removed register module
  610. - added a finished module
  611. - pulled in new icons
  612. * Fri Jul 19 2002 Brent Fox <bfox@redhat.com> 0.9.5-1
  613. - wire up register module
  614. - wire up up2date module
  615. - fix pointer pixmap bug
  616. - create an exceptionWindow to capture tracebacks
  617. * Tue Jul 16 2002 Brent Fox <bfox@redhat.com> 0.9.4-2
  618. - bump rev num and rebuild
  619. * Sat Jul 13 2002 Brent Fox <bfox@redhat.com> 0.9.4-1
  620. - fixed preun script to not blow away runlevel symlinks on upgrades
  621. * Thu Jul 11 2002 Brent Fox <bfox@redhat.com> 0.9.3-2
  622. - Update changelogs and rebuild
  623. * Thu Jul 11 2002 Brent Fox <bfox@redhat.com> 0.9.3-1
  624. - Update changelogs and rebuild
  625. * Mon Jul 01 2002 Brent Fox <bfox@redhat.com> 0.9.2-1
  626. - Bump rev number
  627. * Fri Jun 28 2002 Brent Fox <bfox@redhat.com> 0.9.1-4
  628. - Require metacity
  629. * Fri Jun 28 2002 Brent Fox <bfox@redhta.com> 0.9.1-3
  630. - Backed out some changes from init script
  631. - Fixed icon path in date module
  632. * Thu Jun 27 2002 Brent Fox <bfox@redhat.com> 0.9.1-2
  633. - Popup warning for unimplemented features
  634. * Wed Jun 26 2002 Brent Fox <bfox@redhat.com> 0.9.1-1
  635. - Only run in runlevel 5
  636. * Tue Jun 25 2002 Brent Fox <bfox@redhat.com> 0.9.0-5
  637. - Change initscript to not start firstboot on runlevel changes
  638. * Mon Jun 24 2002 Brent Fox <bfox@redhat.com> 0.9.0-4
  639. - Fix spec file
  640. * Fri Jun 21 2002 Brent Fox <bfox@redhat.com> 0.9.0-3
  641. - Added snapsrc to makefile
  642. - Rebuild for completeness
  643. * Wed Jun 12 2002 Brent Fox <bfox@redhat.com> 0.2.0-3
  644. - Fixed a string error in the welcome module
  645. * Fri May 31 2002 Brent Fox <bfox@redhat.com> 0.2.0-2
  646. - Some additions to hardware screen
  647. * Fri May 31 2002 Brent Fox <bfox@redhat.com> 0.2.0-1
  648. - Fix hardare screen's run priority
  649. * Thu May 30 2002 Brent Fox <bfox@redhat.com> 0.1.0-8
  650. - Created the beginnings of the hardware screen
  651. * Thu May 30 2002 Brent Fox <bfox@redhat.com> 0.1.0-7
  652. - Fixed Requires to not pull in pygnome
  653. * Tue May 28 2002 Brent Fox <bfox@redhat.com> 0.1.0-6
  654. - Rebuild for completeness
  655. - Fix bug in init script
  656. * Sun May 26 2002 Brent Fox <bfox@redhat.com> 0.1.0-4
  657. - Get startup scripts ready to go
  658. - Prepare package for placement into newest tree
  659. - Install init script into correct place
  660. * Tue Nov 28 2001 Brent Fox <bfox@redhat.com>
  661. - initial coding and packaging