source: projects/specs/trunk/u/usermode/usermode-vl.spec @ 8716

Revision 8716, 21.4 KB checked in by daisuke, 10 years ago (diff)

usermode: update to 1.109

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