shadow-utils-vl.spec 18 KB

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