]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - lfs/shadow
installer: Download ISO via HTTPS
[ipfire-2.x.git] / lfs / shadow
index ce6569a08951abfa63078520c4147313d1533741..29e66b13006bb5b8abf81b540512b169848ef855 100644 (file)
@@ -1,28 +1,20 @@
 ###############################################################################
-# This file is part of the IPCop Firewall.                                    #
 #                                                                             #
-# IPCop is free software; you can redistribute it and/or modify               #
+# IPFire.org - A linux based firewall                                         #
+# Copyright (C) 2007-2018  IPFire Team  <info@ipfire.org>                     #
+#                                                                             #
+# This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
-# the Free Software Foundation; either version 2 of the License, or           #
+# the Free Software Foundation, either version 3 of the License, or           #
 # (at your option) any later version.                                         #
 #                                                                             #
-# IPCop is distributed in the hope that it will be useful,                    #
+# This program is distributed in the hope that it will be useful,             #
 # but WITHOUT ANY WARRANTY; without even the implied warranty of              #
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
 # GNU General Public License for more details.                                #
 #                                                                             #
 # You should have received a copy of the GNU General Public License           #
-# along with IPCop; if not, write to the Free Software                        #
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA    #
-#                                                                             #
-# Makefiles are based on LFSMake, which is                                    #
-# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com>                        #
-#                                                                             #
-# Modifications by:                                                           #
-# ??-12-2003 Mark Wormgoor < mark@wormgoor.com>                               #
-#          - Modified Makefile for IPCop build                                #
-#                                                                             #
-# $Id: shadow,v 1.9.2.8 2005/03/15 18:00:09 gespinasse Exp $
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
 #                                                                             #
 ###############################################################################
 
 
 include Config
 
-VER        = 4.0.4.1
+VER        = 4.2.1
 
 THISAPP    = shadow-$(VER)
-DL_FILE    = $(THISAPP).tar.gz
-DL_FROM    = ftp://ftp.pld.org.pl/software/shadow/old
-#DL_FROM     =         http://wiretapped.securax.org/security/host-security/shadow/old
+DL_FILE    = $(THISAPP).tar.xz
+DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 
@@ -49,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 4e5662f360a29f174a19163c8d8a0698
+$(DL_FILE)_MD5 = 2bfafe7d4962682d31b5eba65dba4fc8
 
 install : $(TARGET)
 
@@ -78,26 +69,29 @@ $(subst %,%_MD5,$(objects)) :
 
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
-       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-       touch /var/run/utmp /var/log/{btmp,lastlog,wtmp}
-       chmod 644 /var/run/utmp /var/log/{btmp,lastlog,wtmp}
-       touch /usr/bin/passwd
-       cd $(DIR_APP) && ./configure --prefix=/usr --disable-nls --libdir=/usr/lib --enable-shared
-       cd $(DIR_APP) && make
+       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
+       cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/shadow-4.2.1-suppress_installation_of_groups.patch
+       cd $(DIR_APP) && ./configure \
+               --libdir=/lib \
+               --sysconfdir=/etc \
+               --enable-shared \
+               --without-selinux \
+               --disable-nls \
+               --with-group-name-max-length=32
+
+       cd $(DIR_APP) && make $(MAKETUNING)
        cd $(DIR_APP) && make install
-       cd $(DIR_APP) && cp -f etc/{limits,login.access} /etc
-       cd $(DIR_APP) && sed -e 's%/var/spool/mail%/var/mail%' \
-           -e 's%#MD5_CRYPT_ENAB.no%MD5_CRYPT_ENAB yes%' \
-           etc/login.defs.linux > /etc/login.defs
-       ln -sf vipw /usr/sbin/vigr
-       mv -f /bin/sg /usr/bin
-       mv -f /usr/lib/lib{shadow,misc}.so.0* /lib
-       ln -sf ../../lib/libshadow.so.0 /usr/lib/libshadow.so
-       ln -sf ../../lib/libmisc.so.0 /usr/lib/libmisc.so
-       rm /bin/vigr
-       rm /bin/groups
-       /usr/sbin/pwconv
-       /usr/sbin/grpconv
-       chmod u-s /usr/bin/{chfn,chsh,chage,expiry,newgrp,passwd,gpasswd}
+
+       mv -v /usr/bin/passwd /bin
+       ln -sfv ../../lib/libshadow.so.0 /usr/lib/libshadow.so
+
+       # Install configuration
+       install -m 644 $(DIR_SRC)/config/shadow/limits /etc/limits
+       install -m 644 $(DIR_SRC)/config/shadow/login.access /etc/login.access
+       install -m 644 $(DIR_SRC)/config/shadow/login.defs /etc/login.defs
+
+       touch /etc/shadow
+       chmod 600 /etc/shadow
+       pwconv
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)