firstboot-vl.spec 30 KB

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