shadow-utils-vl.spec 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521
  1. %define WITH_SELINUX 0
  2. Summary: Utilities for managing accounts and shadow password files.
  3. Summary(ja): シャドウパスワードファイルとアカウントを管理するユーティリティ
  4. Name: shadow-utils
  5. Epoch: 2
  6. Version: 4.14.2
  7. Release: 1%{?_dist_release}
  8. Group: system
  9. Vendor: Project Vine
  10. Distribution: Vine Linux
  11. License: BSD and GPLv2+
  12. URL: https://github.com/shadow-maint/shadow
  13. Source0: https://github.com/shadow-maint/shadow/releases/download/%{version}/shadow-%{version}.tar.xz
  14. Source1: shadow-utils.login.defs
  15. Source2: shadow-utils.useradd
  16. Source3: shadow-bsd.txt
  17. Source4: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
  18. Source6: shadow-utils.HOME_MODE.xml
  19. ### Patches ###
  20. # Misc manual page changes - non-upstreamable
  21. Patch0: shadow-4.14.0-manfix.patch
  22. # Date parsing improvement - could be upstreamed
  23. Patch1: shadow-4.2.1-date-parsing.patch
  24. # Audit message changes - partially upstreamed
  25. Patch2: shadow-4.14.0-audit-update.patch
  26. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  27. BuildRequires: gcc
  28. BuildRequires: audit-libs-devel >= 1.6.5
  29. BuildRequires: libacl-devel, libattr-devel
  30. BuildRequires: bison, flex, docbook-style-xsl, docbook-dtds
  31. BuildRequires: autoconf, automake, libtool, gettext-devel
  32. BuildRequires: /usr/bin/xsltproc, /usr/bin/itstool
  33. Obsoletes: adduser
  34. ### Globals ###
  35. %global includesubiddir %{_includedir}/shadow
  36. %description
  37. The shadow-utils package includes the necessary programs for
  38. converting UNIX password files to the shadow password format, plus
  39. programs for managing user and group accounts. The pwconv command
  40. converts passwords to the shadow password format. The pwunconv command
  41. unconverts shadow passwords and generates an npasswd file (a standard
  42. UNIX password file). The pwck command checks the integrity of password
  43. and shadow files. The lastlog command prints out the last login times
  44. for all users. The useradd, userdel, and usermod commands are used for
  45. managing user accounts. The groupadd, groupdel, and groupmod commands
  46. are used for managing group accounts.
  47. %description -l ja
  48. shadow-utilsパッケージはUNIXパスワードファイルをシャドウパスワー
  49. ドフォーマットに変換するのに必要なプログラムとユーザやグループア
  50. カウントを管理するプログラムを含みます。
  51. pwconvコマンドはパスワードをシャドウパスワードフォーマットに変換
  52. します。pwunconvコマンドはシャドウパスワードを逆変換し、npasswd
  53. ファイル(標準のUNIXパスワードファイル)を生成します。pwckコマンド
  54. はパスワードファイルとシャドウパスワードファイルの完全性をチェッ
  55. クします。lastlogコマンドは全ユーザの最後にログインした時間を出
  56. 力します。useradd、userdelやusermodコマンドはユーザーアカウント
  57. を管理するのに使用されます。groupadd、groupdelやgroupmodコマンド
  58. はグループアカウントを管理するのに使用されます。
  59. %package subid
  60. Summary: A library to manage subordinate uid and gid ranges
  61. Group: system
  62. License: BSD and GPLv2+
  63. %description subid
  64. Utility library that provides a way to manage subid ranges.
  65. %package subid-devel
  66. Summary: Development package for shadow-utils-subid
  67. Group: programming
  68. License: BSD and GPLv2+
  69. %description subid-devel
  70. Development files for shadow-utils-subid.
  71. %debug_package
  72. %prep
  73. %setup -q -n shadow-%{version}
  74. %autopatch -p1 -M 99
  75. iconv -f ISO88591 -t utf-8 doc/HOWTO > doc/HOWTO.utf8
  76. cp -f doc/HOWTO.utf8 doc/HOWTO
  77. cp -a %{SOURCE3} %{SOURCE4} .
  78. cp -a %{SOURCE6} man/login.defs.d/HOME_MODE.xml
  79. # Force regeneration of getdate.c
  80. rm lib/getdate.c
  81. %build
  82. export CFLAGS="$RPM_OPT_FLAGS -fpie"
  83. export LDFLAGS="-pie -Wl,-z,relro -Wl,-z,now"
  84. autoreconf -ivf
  85. %configure \
  86. --enable-shadowgrp \
  87. --enable-man \
  88. --with-audit \
  89. --with-sha-crypt \
  90. --with-bcrypt \
  91. --with-yescrypt \
  92. %if %{WITH_SELINUX}
  93. --with-selinux \
  94. %else
  95. --without-selinux \
  96. %endif
  97. --without-libbsd \
  98. --without-libcrack \
  99. --without-libpam \
  100. --enable-shared \
  101. --with-group-name-max-length=32 \
  102. --enable-lastlog \
  103. %{nil}
  104. make %{_smp_mflags}
  105. %install
  106. rm -rf %{buildroot}
  107. make install DESTDIR=%{buildroot} gnulocaledir=%{buildroot}/%{_datadir}/locale MKINSTALLDIRS=`pwd`/mkinstalldirs
  108. install -d -m 755 %{buildroot}/etc/default
  109. install -c -m 0644 %{SOURCE1} %{buildroot}/etc/login.defs
  110. install -c -m 0600 %{SOURCE2} %{buildroot}/etc/default/useradd
  111. ln -s useradd %{buildroot}%{_sbindir}/adduser
  112. ln -s useradd.8 %{buildroot}/%{_mandir}/man8/adduser.8
  113. for subdir in %{buildroot}/%{_mandir}/{??,??_??,??_??.*}/man* ; do
  114. test -d $subdir && test -e $subdir/useradd.8 && echo ".so man8/useradd.8" > $subdir/adduser.8
  115. done
  116. # Remove binaries we don't use.
  117. rm %{buildroot}%{_bindir}/chfn
  118. rm %{buildroot}%{_bindir}/chsh
  119. rm %{buildroot}%{_bindir}/expiry
  120. rm %{buildroot}%{_bindir}/groups
  121. rm %{buildroot}%{_bindir}/login
  122. rm %{buildroot}%{_bindir}/passwd
  123. rm %{buildroot}%{_bindir}/su
  124. rm %{buildroot}%{_bindir}/faillog
  125. rm %{buildroot}%{_sysconfdir}/login.access
  126. rm %{buildroot}%{_sysconfdir}/limits
  127. rm %{buildroot}%{_sbindir}/logoutd
  128. rm %{buildroot}%{_sbindir}/nologin
  129. rm %{buildroot}%{_mandir}/man1/chfn.*
  130. rm %{buildroot}%{_mandir}/*/man1/chfn.*
  131. rm %{buildroot}%{_mandir}/man1/chsh.*
  132. rm %{buildroot}%{_mandir}/*/man1/chsh.*
  133. rm %{buildroot}%{_mandir}/man1/expiry.*
  134. rm %{buildroot}%{_mandir}/*/man1/expiry.*
  135. rm %{buildroot}%{_mandir}/man1/groups.*
  136. rm %{buildroot}%{_mandir}/*/man1/groups.*
  137. rm %{buildroot}%{_mandir}/man1/login.*
  138. rm %{buildroot}%{_mandir}/*/man1/login.*
  139. rm %{buildroot}%{_mandir}/man1/passwd.*
  140. rm %{buildroot}%{_mandir}/*/man1/passwd.*
  141. rm %{buildroot}%{_mandir}/man1/su.*
  142. rm %{buildroot}%{_mandir}/*/man1/su.*
  143. rm %{buildroot}%{_mandir}/man5/limits.*
  144. rm %{buildroot}%{_mandir}/*/man5/limits.*
  145. rm %{buildroot}%{_mandir}/man5/login.access.*
  146. rm %{buildroot}%{_mandir}/*/man5/login.access.*
  147. rm %{buildroot}%{_mandir}/man5/passwd.*
  148. rm %{buildroot}%{_mandir}/*/man5/passwd.*
  149. rm %{buildroot}%{_mandir}/man5/porttime.*
  150. rm %{buildroot}%{_mandir}/*/man5/porttime.*
  151. rm %{buildroot}%{_mandir}/man5/suauth.*
  152. rm %{buildroot}%{_mandir}/*/man5/suauth.*
  153. rm %{buildroot}%{_mandir}/man8/logoutd.*
  154. rm %{buildroot}%{_mandir}/*/man8/logoutd.*
  155. rm %{buildroot}%{_mandir}/man8/nologin.*
  156. rm %{buildroot}%{_mandir}/*/man8/nologin.*
  157. rm %{buildroot}%{_mandir}/man3/getspnam.*
  158. rm %{buildroot}%{_mandir}/*/man3/getspnam.*
  159. rm %{buildroot}%{_mandir}/man5/faillog.*
  160. rm %{buildroot}%{_mandir}/*/man5/faillog.*
  161. rm %{buildroot}%{_mandir}/man8/faillog.*
  162. rm %{buildroot}%{_mandir}/*/man8/faillog.*
  163. find $RPM_BUILD_ROOT%{_mandir} -depth -type d -empty -delete
  164. %find_lang shadow
  165. for dir in $(ls -1d $RPM_BUILD_ROOT%{_mandir}/{??,??_??}) ; do
  166. dir=$(echo $dir | sed -e "s|^$RPM_BUILD_ROOT||")
  167. lang=$(basename $dir)
  168. # echo "%%lang($lang) $dir" >> shadow.lang
  169. # echo "%%lang($lang) $dir/man*" >> shadow.lang
  170. echo "%%lang($lang) $dir/man*/*" >> shadow.lang
  171. done
  172. # Move header files to its own folder
  173. echo $(ls)
  174. mkdir -p $RPM_BUILD_ROOT/%{includesubiddir}
  175. install -m 644 libsubid/subid.h $RPM_BUILD_ROOT/%{includesubiddir}/
  176. # Remove .a and .la files created by libsubid
  177. rm -f $RPM_BUILD_ROOT/%{_libdir}/libsubid.{a,la}
  178. %clean
  179. rm -rf %{buildroot}
  180. %files -f shadow.lang
  181. %defattr(-,root,root)
  182. %license gpl-2.0.txt shadow-bsd.txt
  183. %doc NEWS doc/HOWTO README
  184. %dir /etc/default
  185. %attr(0644,root,root) %config /etc/login.defs
  186. %attr(0600,root,root) %config /etc/default/useradd
  187. %{_bindir}/sg
  188. %attr(4755,root,root) %{_bindir}/chage
  189. %attr(4755,root,root) %{_bindir}/gpasswd
  190. %{_bindir}/lastlog
  191. %attr(4755,root,root) %{_bindir}/newgrp
  192. %attr(0755,root,root) %caps(cap_setgid=ep) %{_bindir}/newgidmap
  193. %attr(0755,root,root) %caps(cap_setuid=ep) %{_bindir}/newuidmap
  194. %{_sbindir}/adduser
  195. %attr(0755,root,root) %{_sbindir}/user*
  196. %attr(0755,root,root) %{_sbindir}/group*
  197. %{_sbindir}/grpck
  198. %{_sbindir}/pwck
  199. %{_sbindir}/*conv
  200. %{_sbindir}/chpasswd
  201. %{_sbindir}/chgpasswd
  202. %{_sbindir}/newusers
  203. %{_sbindir}/vipw
  204. %{_sbindir}/vigr
  205. %{_mandir}/man1/chage.1*
  206. %{_mandir}/man1/gpasswd.1*
  207. %{_mandir}/man1/sg.1*
  208. %{_mandir}/man1/newgrp.1*
  209. %{_mandir}/man1/newgidmap.1*
  210. %{_mandir}/man1/newuidmap.1*
  211. %{_mandir}/man3/shadow.3*
  212. %{_mandir}/man5/shadow.5*
  213. %{_mandir}/man5/login.defs.5*
  214. %{_mandir}/man5/gshadow.5*
  215. %{_mandir}/man5/subuid.5*
  216. %{_mandir}/man5/subgid.5*
  217. %{_mandir}/man8/adduser.8*
  218. %{_mandir}/man8/group*.8*
  219. %{_mandir}/man8/user*.8*
  220. %{_mandir}/man8/pwck.8*
  221. %{_mandir}/man8/grpck.8*
  222. %{_mandir}/man8/chpasswd.8*
  223. %{_mandir}/man8/chgpasswd.8*
  224. %{_mandir}/man8/newusers.8*
  225. %{_mandir}/man8/*conv.8*
  226. %{_mandir}/man8/lastlog.8*
  227. %{_mandir}/man8/vipw.8*
  228. %{_mandir}/man8/vigr.8*
  229. %files subid
  230. %{_bindir}/getsubids
  231. %{_libdir}/libsubid.so.*
  232. %{_mandir}/man1/getsubids.1*
  233. %files subid-devel
  234. %{includesubiddir}/subid.h
  235. %{_libdir}/libsubid.so
  236. %changelog
  237. * Mon Oct 30 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2:4.14.2-1
  238. - updated to 4.14.2.
  239. * Thu Oct 12 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2:4.14.1-1
  240. - updated to 4.14.1.
  241. - re-imported patches from rawhide.
  242. * Mon Feb 13 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2:4.13-1
  243. - updated to 4.13.
  244. - dropped Patch1, 6 and 10-13.
  245. - updated Patch3.
  246. - imported Patch10 from rawhide.
  247. * Thu Aug 25 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2:4.12.3-1
  248. - updated to 4.12.3.
  249. - updated all patches.
  250. * Mon Jan 03 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2:4.11.1-1
  251. - updated to 4.11.1.
  252. - updated Patch7 and 10.
  253. * Fri Dec 24 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2:4.10-1
  254. - updated to 4.10.
  255. - dropped Patch2 and 14-16: fixed in upstream.
  256. - updated Patch7.
  257. * Fri Aug 20 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2:4.9-1
  258. - updated to 4.9.
  259. - updated patches.
  260. - updated Source1.
  261. - added license files (Source3 and 4).
  262. - added sub-packages: subid, subid-devel.
  263. * Wed Mar 18 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2:4.8-1
  264. - updated to 4.8.
  265. - updated patches.
  266. * Wed Jul 09 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 2:4.1.5.1-1
  267. - update to 4.1.5.1
  268. * Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 2:4.1.4.2-2
  269. - rebuilt with rpm-4.8.1-3
  270. * Mon Apr 12 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2:4.1.4.2-1
  271. - new upstream release
  272. - add vipw/vigr (moved from util-linux-ng)
  273. - max group name length set to 32 characters
  274. - update Patch0
  275. - increase threshold for uid/gid reservations to 200
  276. - import Patch1,2,3 from fedora
  277. - disable autoreconf
  278. * Mon Jun 15 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2:4.1.4.1-1
  279. - new upstream release
  280. - NEW UPSTREAM: http://pkg-shadow.alioth.debian.org/
  281. - update URL:, SOURCES: to new upstream
  282. * Fri Aug 15 2008 Shu KONNO <owa@bg.wakwak.com> 2:4.0.16-1vl5
  283. - applied new versioning policy, spec in utf-8
  284. * Mon Aug 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2:4.0.16-0vl3
  285. - update Patch0 to fix <BTS:0499>
  286. - select smaller gid value for system account
  287. * Tue Aug 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2:4.0.16-0vl2
  288. - update ja.po from debian-doc (committed in upstream)
  289. * Mon Jun 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2:4.0.16-0vl1
  290. - new upstream release
  291. - add Japanese Summary and descriptions from spec file translation project.
  292. - convert Japanese man pages to EUC-JP from UTF-8
  293. - import changes from FC pacakge.
  294. * Mon Jan 31 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1:4.0.3-35vl2
  295. - rebuild for VineSeed
  296. * Sun Jan 09 2005 IKEDA Katsumi <ikeda@webmasters.gr.jp> 2:4.0.3-35vl1.1
  297. - added a security patch (shadow-4.0.3-can-2004-1001.patch) for CAN-2004-1001.
  298. * Mon Oct 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2:4.0.3-35vl1
  299. - import Patch1[3-7] from fedora development.
  300. - fixed username/groupname limits. (vine-users:54797)
  301. * Sat Apr 10 2004 <tkoba@vinelinux.org> 4.0.3-21vl1
  302. - sync to fedora
  303. * Fri Jun 08 2001 <sagami@vinelinux.org>
  304. - 20000902-1vl1: added ja.po from 19990827-10vl2
  305. - disable patch9 (creating mailspool in /var/mail)
  306. * Tue May 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 20000902-1
  307. - Create an empty mailspool when creating a user so non-setuid/non-setgid
  308. MDAs (postfix+procmail) can deliver mail (#41811)
  309. - 20000902
  310. - adapt patches
  311. * Fri Mar 9 2001 Nalin Dahyabhai <nalin@redhat.com>
  312. - don't overwrite user dot files in useradd (#19982)
  313. - truncate new files when moving overwriting files with the contents of other
  314. files while moving directories (keeps files from looking weird later on)
  315. - configure using %%{_prefix} as the prefix
  316. * Fri Feb 23 2001 Trond Eivind Glomsr藷?<teg@redhat.com>
  317. - langify
  318. * Wed Aug 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  319. - Fix up chage behavior (Bug #15883)
  320. * Wed Aug 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  321. - 20000826
  322. - Fix up useradd man page (Bug #17036)
  323. * Tue Aug 8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  324. - check for vipw lock before adding or deleting users (Bug #6489)
  325. * Mon Aug 7 2000 Nalin Dahyabhai <nalin@redhat.com>
  326. - take LOG_CONS out of the openlog() call so that we don't litter the
  327. screen during text-mode upgrades
  328. * Tue Jul 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  329. - Remove a fixed-size buffer that caused problems when adding a huge number
  330. of users to a group (>8192 bytes) (Bugs #3809, #11930)
  331. * Tue Jul 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  332. - remove dependency on util-linux because it causes prereq loops
  333. * Tue Jul 18 2000 Nalin Dahyabhai <nalin@redhat.com>
  334. - change symlinked man pages to includers
  335. - require /usr/bin/newgrp (util-linux) so that /usr/bin/sg isn't left dangling
  336. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  337. - automatic rebuild
  338. * Sun Jun 18 2000 Matt Wilson <msw@redhat.com>
  339. - use mandir for FHS
  340. - added patches in src/ and po/ to honor DESTDIR
  341. - use make install DESTDIR=$RPM_BUILD_ROOT
  342. * Wed Feb 16 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  343. - Fix up usermod's symlink behavior (Bug #5458)
  344. * Fri Feb 11 2000 Cristian Gafton <gafton@redhat.com>
  345. - get rid of mkpasswd
  346. * Mon Feb 7 2000 Nalin Dahyabhai <nalin@redhat.com>
  347. - fix usermod patch to check for shadow before doing any shadow-specific stuff
  348. and merge it into the pwlock patch
  349. * Sat Feb 5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  350. - fix man symlinks
  351. * Wed Feb 2 2000 Nalin Dahyabhai <gafton@redhat.com>
  352. - make -p only change shadow password (bug #8923)
  353. * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com>
  354. - rebuild to fix dependeencies
  355. - man pages are compressed
  356. * Wed Jan 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  357. - Fix a security bug (adduser could overwrite previously existing
  358. groups, Bug #8609)
  359. * Sun Jan 9 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  360. - unset LINGUAS before building
  361. - Fix typo in newusers manpage (Bug #8258)
  362. - libtoolize
  363. * Wed Sep 22 1999 Cristian Gafton <gafton@redhat.com>
  364. - fix segfault for userdel when the primary group for the user is not
  365. defined
  366. * Tue Sep 21 1999 Cristian Gafton <gafton@redhat.com>
  367. - Serial: 1 because now we are using 19990827 (why the heck can't they have
  368. a normal version just like everybody else?!)
  369. - ported all patches to the new code base
  370. * Thu Apr 15 1999 Bill Nottingham <notting@redhat.com>
  371. - SIGHUP nscd from usermod, too
  372. * Fri Apr 09 1999 Michael K. Johnson <johnsonm@redhat.com>
  373. - added usermod password locking from Chris Adams <cadams@ro.com>
  374. * Thu Apr 08 1999 Bill Nottingham <notting@redhat.com>
  375. - have things that modify users/groups SIGHUP nscd on exit
  376. * Wed Mar 31 1999 Michael K. Johnson <johnsonm@redhat.com>
  377. - have userdel remove user private groups when it is safe to do so
  378. - allow -f to force user removal even when user appears busy in utmp
  379. * Tue Mar 23 1999 Preston Brown <pbrown@redhat.com>
  380. - edit out unused CHFN fields from login.defs.
  381. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  382. - auto rebuild in the new build environment (release 7)
  383. * Wed Jan 13 1999 Bill Nottingham <notting@redhat.com>
  384. - configure fix for arm
  385. * Wed Dec 30 1998 Cristian Gafton <gafton@redhat.com>
  386. - build against glibc 2.1
  387. * Fri Aug 21 1998 Jeff Johnson <jbj@redhat.com>
  388. - Note that /usr/sbin/mkpasswd conflicts with /usr/bin/mkpasswd;
  389. one of these (I think /usr/sbin/mkpasswd but other opinions are valid)
  390. should probably be renamed. In any case, mkpasswd.8 from this package
  391. needs to be installed. (problem #823)
  392. * Fri May 08 1998 Prospector System <bugs@redhat.com>
  393. - translations modified for de, fr, tr
  394. * Tue Apr 21 1998 Cristian Gafton <gafton@redhat.com>
  395. - updated to 980403
  396. - redid the patches
  397. * Tue Dec 30 1997 Cristian Gafton <gafton@redhat.com>
  398. - updated the spec file
  399. - updated the patch so that new accounts created on shadowed system won't
  400. confuse pam_pwdb anymore ('!!' default password instead on '!')
  401. - fixed a bug that made useradd -G segfault
  402. - the check for the ut_user is now patched into configure
  403. * Thu Nov 13 1997 Erik Troan <ewt@redhat.com>
  404. - added patch for XOPEN oddities in glibc headers
  405. - check for ut_user before checking for ut_name -- this works around some
  406. confusion on glibc 2.1 due to the utmpx header not defining the ut_name
  407. compatibility stuff. I used a gross sed hack here because I couldn't make
  408. automake work properly on the sparc (this could be a glibc 2.0.99 problem
  409. though). The utuser patch works fine, but I don't apply it.
  410. - sleep after running autoconf
  411. * Thu Nov 06 1997 Cristian Gafton <gafton@redhat.com>
  412. - added forgot lastlog command to the spec file
  413. * Sun Oct 26 1997 Cristian Gafton <gafton@redhat.com>
  414. - obsoletes adduser
  415. * Thu Oct 23 1997 Cristian Gafton <gafton@redhat.com>
  416. - modified groupadd; updated the patch
  417. * Fri Sep 12 1997 Cristian Gafton <gafton@redhat.com>
  418. - updated to 970616
  419. - changed useradd to meet RH specs
  420. - fixed some bugs
  421. * Tue Jun 17 1997 Erik Troan <ewt@redhat.com>
  422. - built against glibc