usermode-vl.spec 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601
  1. Summary: Tools for certain user account management tasks.
  2. Summary(ja): ユーザアカウント管理用ツール
  3. Name: usermode
  4. Version: 1.114
  5. Release: 2%{?_dist_release}
  6. Group: system
  7. Vendor: Project Vine
  8. Distribution: Vine Linux
  9. Packager: daisuke
  10. License: GPLv2+
  11. URL: https://pagure.io/%{name}/
  12. Source: https://releases.pagure.org/%{name}/%{name}-%{version}.tar.xz
  13. Patch1000: usermode-major.patch
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  15. BuildRequires: desktop-file-utils, glib2-devel, gtk2-devel
  16. BuildRequires: libglade2-devel, libuser-devel, pam-devel, util-linux-ng, libwnck-devel
  17. BuildRequires: libblkid-devel
  18. BuildRequires: perl-XML-Parser, libSM-devel, startup-notification-devel, gettext
  19. Requires: util-linux, pam >= 0.75, passwd
  20. Conflicts: SysVinit < 2.74-14
  21. %description
  22. The usermode package contains the userhelper program, which can be
  23. used to allow configured programs to be run with superuser privileges
  24. by ordinary users.
  25. %description -l ja
  26. usermode パッケージには、一般ユーザが設定されたプログラムをスーパーユー
  27. ザとして実行できるようにするユーザヘルパープログラムが含まれています。
  28. %package gtk
  29. Summary: Graphical tools for certain user account management tasks.
  30. Summary(ja): ユーザアカウント管理用グラフィカルツール
  31. Group: system
  32. Requires: %{name} = %{version}-%{release}
  33. %description gtk
  34. The usermode-gtk package contains several graphical tools for users:
  35. userinfo, usermount and userpasswd. Userinfo allows users to change
  36. their finger information. Usermount lets users mount, unmount, and
  37. format filesystems. Userpasswd allows users to change their
  38. passwords.
  39. Install the usermode-gtk package if you would like to provide users with
  40. graphical tools for certain account management tasks.
  41. %description gtk -l ja
  42. usermode-gtk には userinfo, usermount, userpasswd といったユーザ用
  43. グラフィカルツールも収められています。userinfo を使うと一般ユーザが自
  44. 分のアカウントの finger 情報を変更することが出来ます.
  45. usermount は一般ユーザがファイルシステムのマウント/アンマウント/初期化を
  46. 行うことを可能にします.userpasswd は一般ユーザが自分のパスワードを
  47. 変更するのに使います.
  48. 一般ユーザ向けに,アカウント管理用グラフィカルツールを提供したい場合は
  49. usermode パッケージをインストールして下さい.
  50. %debug_package
  51. %prep
  52. %setup -q
  53. %patch1000 -p1
  54. %build
  55. intltoolize --force --copy
  56. autoreconf -ivf
  57. %configure --without-fexecve
  58. %make_build
  59. %install
  60. rm -rf $RPM_BUILD_ROOT
  61. make install DESTDIR=$RPM_BUILD_ROOT
  62. # We set up the shutdown programs to be wrapped in this package. Other
  63. # packages are on their own....
  64. mkdir -p $RPM_BUILD_ROOT/etc/pam.d $RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps
  65. cat <<EOF > $RPM_BUILD_ROOT/etc/security/console.apps/config-util
  66. USER=root
  67. UGROUPS=wheel
  68. EOF
  69. for desktopfile in $RPM_BUILD_ROOT%{_datadir}/applications/*.desktop
  70. do
  71. mv $desktopfile ${desktopfile/redhat-/}
  72. done
  73. %find_lang %{name}
  74. %files -f %{name}.lang
  75. %defattr(-,root,root)
  76. %attr(4711,root,root) /usr/sbin/userhelper
  77. %{_bindir}/consolehelper
  78. %{_mandir}/man8/userhelper.8*
  79. %{_mandir}/man8/consolehelper.8*
  80. %config(noreplace) /etc/security/console.apps/config-util
  81. %files gtk
  82. %defattr(-,root,root)
  83. %{_bindir}/usermount
  84. %{_mandir}/man1/usermount.1*
  85. %{_bindir}/userinfo
  86. %{_mandir}/man1/userinfo.1*
  87. %{_bindir}/userpasswd
  88. %{_mandir}/man1/userpasswd.1*
  89. %{_bindir}/consolehelper-gtk
  90. %{_mandir}/man8/consolehelper-gtk.8*
  91. %{_bindir}/pam-panel-icon
  92. %{_mandir}/man1/pam-panel-icon.1*
  93. %{_datadir}/%{name}
  94. %{_datadir}/pixmaps/*
  95. %{_datadir}/applications/*
  96. %changelog
  97. * Thu Oct 12 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.114-2
  98. - dropped halt/poweroff/shutdown.
  99. * Tue May 30 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.114-1
  100. - new upstream release.
  101. * Wed Mar 18 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.109-2
  102. - rebuilt with current environment.
  103. - added Patch1000.
  104. * Wed Jul 02 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.109-1
  105. - update to 1.109
  106. * Sat Jun 18 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.107-1
  107. - update to 1.107
  108. - add UGROUPS=wheel to config-util
  109. - update ja.po for better authentication dialog
  110. * Mon Jan 17 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.106.1-1
  111. - new upstream release
  112. * Tue Aug 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.98-1
  113. - new upstream release
  114. * Fri Aug 15 2008 Shu KONNO <owa@bg.wakwak.com> 1.86-1vl5
  115. - applied new versioning policy, spec in utf-8
  116. * Sat Jan 12 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.86-0vl3
  117. - rebuilt with libwnck 2.20.2
  118. - added Patch100 for avoiding desktop-file-install failure
  119. - fixed *.desktop.in files
  120. * Tue Sep 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.86-0vl2
  121. - fix Patch12
  122. - The old patch changes the application's locale by mistake.
  123. * Thu Sep 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.86-0vl1
  124. - new upstream release
  125. - add Patch12 to fix broken messages in consolehelper-gtk (<BTS:181>)
  126. - update ja.po
  127. * Thu Jun 29 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.85-0vl1
  128. - new upstream release
  129. * Sun Aug 21 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.81-0vl1
  130. - new upstream release
  131. - rebuild with new libwnck
  132. * Mon Mar 21 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.70-4vl3
  133. - rebuild with new libwnck
  134. * Sat Jul 3 2004 Tomoya TAKA <taka@vinelinux.org> 1.70-4vl2
  135. - fix lack of %%{_bindir}/shutdown
  136. * Mon Jun 28 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.70-4vl1
  137. - new upstream release
  138. - fixed spec's kanji code.
  139. - split gui related utilities to usermode-gtk subpackage.
  140. * Mon Nov 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.69-1vl1
  141. - new upstream release
  142. * Thu Oct 23 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.68-0vl1
  143. - new upstream release
  144. * Sat Jan 25 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.65-1vl1
  145. - merged with Vine Linux package 1.42-1vl5
  146. * Sat Aug 17 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.42-1vl5
  147. - enable system authentication even if %%{build6x} is set to 0
  148. (for compatibility with previous version)
  149. * Mon Aug 05 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.42-1vl4
  150. - reinstated /usr/bin/shutdown
  151. * Fri Aug 02 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.42-1vl3
  152. - rebuild with pam-0.75-39vl1
  153. - set build6x to 0
  154. * Wed Feb 20 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.42-1vl2
  155. - rebuild to remove rpmlib dependancy
  156. * Fri Jun 01 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  157. - 1.42-1vl1
  158. - based on 1.42-1 from Rawhide and merged some from 1.37-2vl2
  159. - %%define build6x 1 for Vine
  160. * Mon Jan 20 2003 Nalin Dahyabhai <nalin@redhat.com> 1.65-1
  161. - pass-through DESKTOP_STARTUP_ID
  162. * Mon Jan 6 2003 Nalin Dahyabhai <nalin@redhat.com> 1.64-1
  163. - set the requesting user PAM item to the invoking user's name (#81255)
  164. * Mon Nov 11 2002 Nalin Dahyabhai <nalin@redhat.com> 1.63-2
  165. - remove directory names from PAM config files, allowing the same config
  166. files to work for both arches on multilib boxes
  167. - translation updates
  168. * Wed Sep 4 2002 Nalin Dahyabhai <nalin@redhat.com> 1.63-1
  169. - userhelper: swallow the exec'd program's exit stauts, which would be
  170. misinterpreted by consolehelper anyway
  171. * Tue Sep 3 2002 Nalin Dahyabhai <nalin@redhat.com> 1.62-1
  172. - consolehelper: suppress dialog on successful execution
  173. - userhelper: return 0 on success, not 1 (what was I *thinking*?)
  174. * Mon Sep 2 2002 Nalin Dahyabhai <nalin@redhat.com> 1.61-1
  175. - userinfo: exit properly on escape. handle site_info field properly. go
  176. insensitive while running child process.
  177. - userpasswd: exit properly on cancel.
  178. - all of the above: reap the child instead of checking for pipe close -- this
  179. way is more robust (#68578,72684).
  180. - usermount: run mount/umount synchronously. capture stderr and display in a
  181. dialog. desensitize action buttons when no filesystems are selected.
  182. - consolehelper: display errors if we're attempting to run bogus programs
  183. (#72127)
  184. - translation updates (#70278)
  185. * Wed Aug 14 2002 Nalin Dahyabhai <nalin@redhat.com> 1.60-1
  186. - reconnect the "cancel" and "ok" buttons in userinfo
  187. - heed the cancel button when prompting for passwords in userinfo (#68578)
  188. - translation update
  189. * Wed Aug 14 2002 Nalin Dahyabhai <nalin@redhat.com> 1.59-2
  190. - change "forget password" to "forget authorization", because we don't actually
  191. remember the password (that would be scary, #71476)
  192. - translation update
  193. * Tue Aug 13 2002 Nalin Dahyabhai <nalin@redhat.com> 1.59-1
  194. - pam-panel-icon: overhaul, change the 'locked' icon to keyring-small, nix the
  195. 'unlocked' icon
  196. - consolehelper-gtk: properly set up the dialog buttons (should be 'cancel/ok'
  197. when we're asking questions, was always 'close')
  198. - disappear pam_timestamp_init
  199. * Wed Aug 7 2002 Nalin Dahyabhai <nalin@redhat.com> 1.58-2
  200. - install the new 'unlocked' icon
  201. * Tue Aug 6 2002 Jonathan Blandford <jrb@redhat.com>
  202. - New version.
  203. * Mon Aug 5 2002 Nalin Dahyabhai <nalin@redhat.com> 1.57-1
  204. - add support for BANNER and BANNER_DOMAIN in the userhelper configuration
  205. * Mon Aug 5 2002 Nalin Dahyabhai <nalin@redhat.com> 1.56-4
  206. - mark strings in the .glade file as translatable (#70278)
  207. - translation updates
  208. * Wed Jul 31 2002 Nalin Dahyabhai <nalin@redhat.com> 1.56-3
  209. - add icons for userpasswd and usermount
  210. * Wed Jul 24 2002 Nalin Dahyabhai <nalin@redhat.com> 1.56-2
  211. - actually include the icons
  212. - translation updates
  213. * Tue Jul 23 2002 Nalin Dahyabhai <nalin@redhat.com> 1.56-1
  214. - userinfo: prevent users from selecting "nologin" as a shell (#68579)
  215. - don't strip binaries by default; leave that to the buildroot policy
  216. - use desktop-file-install
  217. * Wed Jun 19 2002 Havoc Pennington <hp@redhat.com>
  218. - put pam-panel-icon in file list
  219. * Mon May 20 2002 Nalin Dahyabhai <nalin@redhat.com> 1.55-2
  220. - don't strip binaries which have no special privileges
  221. * Wed May 15 2002 Nalin Dahyabhai <nalin@redhat.com> 1.55-1
  222. - remove the pixmap we don't use any more (we use stock pixmaps now)
  223. - update translations
  224. * Tue Apr 16 2002 Nalin Dahyabhai <nalin@redhat.com> 1.54-1
  225. - suppress even error messages from Xlib when consolehelper calls
  226. gtk_init_check() to see if the display is available
  227. * Mon Apr 15 2002 Nalin Dahyabhai <nalin@redhat.com> 1.53-2
  228. - refresh translations
  229. * Thu Apr 11 2002 Nalin Dahyabhai <nalin@redhat.com> 1.53-1
  230. - refresh shell variable code from authconfig (#63175)
  231. * Tue Apr 9 2002 Nalin Dahyabhai <nalin@redhat.com> 1.52-2
  232. - refresh translations
  233. * Mon Apr 1 2002 Nalin Dahyabhai <nalin@redhat.com> 1.52-1
  234. - attempt to make prompts at the console more meaningful
  235. - when falling back, reset the entire environment to the user's
  236. * Thu Mar 28 2002 Nalin Dahyabhai <nalin@redhat.com>
  237. - stop giving the user chances to enter the right password if we get a
  238. conversation error reading a response (appears to be masked by libpam)
  239. (#62195)
  240. - always center consolehelper dialog windows
  241. * Wed Mar 27 2002 Nalin Dahyabhai <nalin@redhat.com> 1.51-1
  242. - patch to make gettext give us UTF-8 strings (which GTK needs) from ynakai
  243. * Fri Mar 22 2002 Nalin Dahyabhai <nalin@redhat.com> 1.50-6
  244. - update translations
  245. - actually include the glade files (#61665)
  246. * Mon Mar 11 2002 Nalin Dahyabhai <nalin@redhat.com> 1.50-5
  247. - update translations
  248. * Mon Feb 25 2002 Nalin Dahyabhai <nalin@redhat.com> 1.50-4
  249. - rebuild
  250. * Fri Feb 22 2002 Nalin Dahyabhai <nalin@redhat.com> 1.50-3
  251. - update translations
  252. * Thu Jan 31 2002 Nalin Dahyabhai <nalin@redhat.com> 1.50-2
  253. - rebuild to fix dependencies
  254. * Thu Jan 31 2002 Nalin Dahyabhai <nalin@redhat.com> 1.50-1
  255. - fix userpasswd dialog message being incorrect for password changes
  256. - use a dumb conversation function when text mode is invoked without a tty -- if
  257. the service's configuration doesn't call for prompts, then it'll still work
  258. - port from pwdb to libuser
  259. - catch child-exit errors correctly again
  260. - fix keyboard-grabbing
  261. * Wed Jan 23 2002 Nalin Dahyabhai <nalin@redhat.com> 1.49-3
  262. - add default locations for certain binaries to configure.in
  263. * Thu Jan 3 2002 Nalin Dahyabhai <nalin@redhat.com> 1.49-2
  264. - munge glade file to use stock items for buttons where possible
  265. * Mon Dec 10 2001 Nalin Dahyabhai <nalin@redhat.com> 1.49-1
  266. - the console.apps configs shouldn't be missingok
  267. - fix buildprereqs for gtk2/libglade2
  268. * Tue Dec 4 2001 Nalin Dahyabhai <nalin@redhat.com>
  269. - more gtk2 changes
  270. - split off a -gtk subpackage with all of the gtk-specific functionality
  271. * Wed Nov 28 2001 Nalin Dahyabhai <nalin@redhat.com>
  272. - the grand libglade/gtk2 overhaul
  273. - allow disabling display of GUI windows by setting "GUI=false" in the
  274. console.apps configuration file (default: TRUE)
  275. - allow disabling display of GUI windows by recognizing a magic option
  276. on the command-line of the program being wrapped (NOXOPTION, no default)
  277. * Fri Nov 9 2001 Nalin Dahyabhai <nalin@redhat.com> 1.46-1
  278. - restore the previous XAUTHORITY setting before opening PAM sessions
  279. * Fri Nov 2 2001 Nalin Dahyabhai <nalin@redhat.com> 1.45-1
  280. - propagate environment variables from libpam to applications
  281. * Wed Oct 3 2001 Nalin Dahyabhai <nalin@redhat.com> 1.44-1
  282. - only try to call gtk_main_quit() if we've got a loop to get out of (#54109)
  283. - obey RPM_OPT_FLAGS, obey
  284. * Tue Aug 28 2001 Trond Eivind Glomsr藷?<teg@redhat.com> 1.43-1
  285. - Update translations
  286. * Mon Aug 6 2001 Nalin Dahyabhai <nalin@redhat.com>
  287. - add build requirements on glib-devel, gtk+-devel, pam-devel (#49726)
  288. * Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
  289. - Bump release + rebuild.
  290. * Wed Feb 14 2001 Preston Brown <pbrown@redhat.com>
  291. - final translation merge.
  292. * Wed Feb 14 2001 Nalin Dahyabhai <nalin@redhat.com>
  293. - clear the supplemental groups list before running binaries as root (#26851)
  294. * Wed Feb 7 2001 Nalin Dahyabhai <nalin@redhat.com>
  295. - set XAUTHORITY if we fall back to regular behavior (#26343)
  296. - make the suid helper 04711 instead of 04755
  297. * Mon Feb 5 2001 Nalin Dahyabhai <nalin@redhat.com>
  298. - refresh translations
  299. * Mon Jan 29 2001 Preston Brown <pbrown@redhat.com>
  300. - use lang finding script.
  301. * Thu Jan 25 2001 Yukihiro Nakai <ynakai@redhat.com>
  302. - Some fix for Japanese environment.
  303. - Use gtk_set_locale() instead of setlocale()
  304. - Copyright update.
  305. * Sun Jan 7 2001 Yukihiro Nakai <ynakai@redhat.com>
  306. - Add gettextized
  307. * Thu Nov 2 2000 Nalin Dahyabhai <nalin@redhat.com>
  308. - fix segfault in userhelper (#20027)
  309. * Tue Oct 24 2000 Nalin Dahyabhai <nalin@redhat.com>
  310. - /sbin/shutdown, not /usr/sbin/shutdown (#19034)
  311. * Fri Oct 6 2000 Nalin Dahyabhai <nalin@redhat.com>
  312. - don't pass on arguments to halt and reboot, because they error out
  313. * Thu Oct 5 2000 Nalin Dahyabhai <nalin@redhat.com>
  314. - fix the /usr/bin/shutdown wrapper so that root can call shutdown
  315. - only include the /usr/bin/shutdown wrapper on 6.x
  316. - also sanitize LC_MESSAGES
  317. - tweak sanitizing checks (from mkj)
  318. * Wed Oct 4 2000 Jakub Jelinek <jakub@redhat.com>
  319. - fix a security bug with LC_ALL/LANG variables (#18046)
  320. * Mon Aug 28 2000 Nalin Dahyabhai <nalin@redhat.com>
  321. - mark defined strings translateable (#17006)
  322. * Thu Aug 24 2000 Nalin Dahyabhai <nalin@redhat.com>
  323. - fix incorrect user name
  324. - add a shell wrapper version of /usr/bin/shutdown
  325. - build for 6.x errata
  326. - bump revision to upgrade the errata
  327. * Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
  328. - fix stdin/stdout redirection shenanigans (#11706)
  329. - fix authentication and execution as users other than root
  330. - make sure the right descriptors are terminals before dup2()ing them
  331. - cut out an extra-large CPU waster that breaks GUI apps
  332. * Mon Aug 21 2000 Nalin Dahyabhai <nalin@redhat.com>
  333. - fix typo (#16664)
  334. * Sun Aug 20 2000 Nalin Dahyabhai <nalin@redhat.com>
  335. - previous fix, part two
  336. * Sat Aug 19 2000 Nalin Dahyabhai <nalin@redhat.com>
  337. - fix inadvertent breakage of the shell-changing code
  338. * Fri Aug 18 2000 Nalin Dahyabhai <nalin@redhat.com>
  339. - fix the "run unprivileged" option
  340. * Mon Aug 14 2000 Nalin Dahyabhai <nalin@redhat.com>
  341. - actually use the right set of translations
  342. * Fri Aug 11 2000 Nalin Dahyabhai <nalin@redhat.com>
  343. - remove the shutdown command from the list of honored commands
  344. * Wed Aug 9 2000 Nalin Dahyabhai <nalin@redhat.com>
  345. - merge in updated translations
  346. - set XAUTHORITY after successful authentication (#11006)
  347. * Wed Aug 2 2000 Nalin Dahyabhai <nalin@redhat.com>
  348. - install translations
  349. - fixup a messy text string
  350. - make "Mount"/"Unmount" translatable
  351. - stop prompting for passwords to shut down -- we can hit ctrl-alt-del anyway,
  352. and gdm users can just shut down without logging in
  353. * Mon Jul 31 2000 Nalin Dahyabhai <nalin@redhat.com>
  354. - attempt to add i18n support
  355. * Wed Jul 12 2000 Nalin Dahyabhai <nalin@redhat.com>
  356. - attempt to get a usable icon for userhelper-wrap (#13616, #13768)
  357. * Wed Jul 5 2000 Nalin Dahyabhai <nalin@redhat.com>
  358. - fix them right this time
  359. * Mon Jul 3 2000 Nalin Dahyabhai <nalin@redhat.com>
  360. - fix verbosity problems
  361. * Mon Jun 19 2000 Nalin Dahyabhai <nalin@redhat.com>
  362. - strip all binaries by default
  363. - add the name of the program being run to the userhelper dialog
  364. - add a graphic to the userhelper-wrap package
  365. - add a button to jump straight to nonprivileged operation when supported
  366. * Sun Jun 18 2000 Matt Wilson <msw@redhat.com>
  367. - rebuilt to see if we get stripped binaries
  368. * Mon Jun 5 2000 Nalin Dahyabhai <nalin@redhat.com>
  369. - move man pages to %%{_mandir}
  370. * Thu Jun 1 2000 Nalin Dahyabhai <nalin@redhat.com>
  371. - modify PAM setup to use system-auth
  372. - bzip2 compress tarball
  373. * Fri Mar 17 2000 Ngo Than <than@redhat.de>
  374. - fix problem with LANG and LC_ALL
  375. - compress source with bzip2
  376. * Thu Mar 09 2000 Nalin Dahyabhai <nalin@redhat.com>
  377. - fix problem parsing userhelper's -w flag with other args
  378. * Wed Mar 08 2000 Nalin Dahyabhai <nalin@redhat.com>
  379. - ignore read() == 0 because the child exits
  380. * Tue Mar 07 2000 Nalin Dahyabhai <nalin@redhat.com>
  381. - queue notice messages until we get prompts in userhelper to fix bug #8745
  382. * Thu Feb 03 2000 Nalin Dahyabhai <nalin@redhat.com>
  383. - free trip through the build system
  384. * Tue Jan 11 2000 Nalin Dahyabhai <nalin@redhat.com>
  385. - grab keyboard input focus for dialogs
  386. * Fri Jan 07 2000 Michael K. Johnson <johnsonm@redhat.com>
  387. - The root exploit fix created a bug that only showed up in certain
  388. circumstances. Unfortunately, we didn't test in those circumstances...
  389. * Mon Jan 03 2000 Michael K. Johnson <johnsonm@redhat.com>
  390. - fixed local root exploit
  391. * Thu Sep 30 1999 Michael K. Johnson <johnsonm@redhat.com>
  392. - fixed old complex broken gecos parsing, replaced with simple working parsing
  393. - can now blank fields (was broken by previous fix for something else...)
  394. * Tue Sep 21 1999 Michael K. Johnson <johnsonm@redhat.com>
  395. - FALLBACK/RETRY in consolehelper/userhelper
  396. - session management fixed for consolehelper/userhelper SESSION=true
  397. - fix memory leak and failure to close in error condition (#3614)
  398. - fix various bugs where not all elements in userinfo got set
  399. * Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com>
  400. - set $HOME when acting as consolehelper
  401. - rebuild against new pwdb
  402. * Tue Sep 14 1999 Michael K. Johnson <johnsonm@redhat.com>
  403. - honor "owner" flag to mount
  404. - ask for passwords with username
  405. * Tue Jul 06 1999 Bill Nottingham <notting@redhat.com>
  406. - import pam_console wrappers from SysVinit, since they require usermode
  407. * Mon Apr 12 1999 Michael K. Johnson <johnsonm@redhat.com>
  408. - even better check for X availability
  409. * Wed Apr 07 1999 Michael K. Johnson <johnsonm@redhat.com>
  410. - better check for X availability
  411. - center windows to make authentication easier (improve later with
  412. transients and embedded windows where possible)
  413. - applink -> applnk
  414. - added a little padding, especially important when running without
  415. a window manager, as happens when running from session manager at
  416. logout time
  417. * Wed Mar 31 1999 Michael K. Johnson <johnsonm@redhat.com>
  418. - hm, need to be root...
  419. * Fri Mar 19 1999 Michael K. Johnson <johnsonm@redhat.com>
  420. - updated userhelper.8 man page for consolehelper capabilities
  421. - moved from wmconfig to desktop entries
  422. * Thu Mar 18 1999 Michael K. Johnson <johnsonm@redhat.com>
  423. - added consolehelper
  424. - Changed conversation architecture to follow PAM spec
  425. * Wed Mar 17 1999 Bill Nottingham <notting@redhat.com>
  426. - remove gdk_input_remove (causing segfaults)
  427. * Tue Jan 12 1999 Michael K. Johnson <johnsonm@redhat.com>
  428. - fix missing include files
  429. * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
  430. - strip binaries
  431. - use defattr
  432. - fix spec file ( rm -rf $(RPM_BUILD_ROOT) is a stupid thing to do ! )
  433. * Tue Oct 06 1998 Preston Brown <pbrown@redhat.com>
  434. - fixed so that the close button on window managers quits the program properly
  435. * Thu Apr 16 1998 Erik Troan <ewt@redhat.com>
  436. - use gtk-config during build
  437. - added make archive rule to Makefile
  438. - uses a build root
  439. * Fri Nov 7 1997 Otto Hammersmith <otto@redhat.com>
  440. - new version that fixed memory leak bug.
  441. * Mon Nov 3 1997 Otto Hammersmith <otto@redhat.com>
  442. - updated version to fix bugs
  443. * Fri Oct 17 1997 Otto Hammersmith <otto@redhat.com>
  444. - Wrote man pages for userpasswd and userhelper.
  445. * Tue Oct 14 1997 Otto Hammersmith <otto@redhat.com>
  446. - Updated the packages... now includes userpasswd for changing passwords
  447. and newer versions of usermount and userinfo. No known bugs or
  448. misfeatures.
  449. - Fixed the file list...
  450. * Mon Oct 6 1997 Otto Hammersmith <otto@redhat.com>
  451. - Created the spec file.