firstboot-vl.spec 30 KB

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