]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/freeradius
suricata: Change midstream policy to "pass-flow"
[people/pmueller/ipfire-2.x.git] / lfs / freeradius
CommitLineData
71f578bb
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
c9c9580c 4# Copyright (C) 2007-2024 IPFire Team <info@ipfire.org> #
71f578bb
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
f15707c7
RR
27SUMMARY = RADIUS Server
28
cda4d7a1 29VER = 3.2.3
71f578bb
MT
30
31THISAPP = freeradius-server-$(VER)
22a6277f 32DL_FILE = $(THISAPP).tar.bz2
71f578bb
MT
33DL_FROM = $(URL_IPFIRE)
34DIR_APP = $(DIR_SRC)/$(THISAPP)
35TARGET = $(DIR_INFO)/$(THISAPP)
36PROG = freeradius
c9c9580c 37PAK_VER = 20
71f578bb 38
2cb220fd 39DEPS = libtalloc samba
71f578bb 40
f15707c7
RR
41SERVICES = freeradius
42
71f578bb
MT
43###############################################################################
44# Top-level Rules
45###############################################################################
46
47objects = $(DL_FILE)
48
49$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
50
cda4d7a1 51$(DL_FILE)_BLAKE2 = 525204331a5b123dac7457c6adb755cbe9794dbff4a536ea665fc7d1cac97553e392b7b598741c2a9dd00c81decd00608499d6f25208e389b9f213f54977de84
71f578bb
MT
52
53install : $(TARGET)
54
55check : $(patsubst %,$(DIR_CHK)/%,$(objects))
56
57download :$(patsubst %,$(DIR_DL)/%,$(objects))
58
9a7e4d85 59b2 : $(subst %,%_BLAKE2,$(objects))
71f578bb 60
66c36198 61dist:
71f578bb
MT
62 @$(PAK)
63
64###############################################################################
9a7e4d85 65# Downloading, checking, b2sum
71f578bb
MT
66###############################################################################
67
68$(patsubst %,$(DIR_CHK)/%,$(objects)) :
69 @$(CHECK)
70
71$(patsubst %,$(DIR_DL)/%,$(objects)) :
72 @$(LOAD)
73
9a7e4d85
PM
74$(subst %,%_BLAKE2,$(objects)) :
75 @$(B2SUM)
71f578bb
MT
76
77###############################################################################
78# Installation Details
79###############################################################################
80
81$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
82 @$(PREBUILD)
e301592f 83 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
6580bdeb 84 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/freeradius-no-buildtime-cert-gen.patch
3850e662 85 $(UPDATE_AUTOMAKE)
71f578bb
MT
86 cd $(DIR_APP) && \
87 ./configure \
88 --prefix=/usr \
89 --sysconfdir=/etc \
90 --libdir=/usr/lib/freeradius \
91 --localstatedir=/var \
92 --with-system-libtool \
93 --with-threads \
94 --with-thread-pool \
95 --disable-ltdl-install \
cf572f20 96 --disable-openssl-version-check \
71f578bb
MT
97 --without-rlm_eap_ikev2 \
98 --without-rlm_sql_iodbc \
99 --without-rlm_sql_firebird \
100 --without-rlm_sql_db2 \
101 --without-rlm_sql_oracle \
102 --without-rlm_sql_sqlite \
94f89b82 103 --without-rlm_sql_mysql \
875f4383 104 --without-rlm_python \
94f89b82
MT
105 LDFLAGS="$(LDFLAGS)"
106
71f578bb
MT
107 cd $(DIR_APP) && make $(MAKETUNING)
108 cd $(DIR_APP) && make install
109
110 sed -i /etc/raddb/radiusd.conf \
111 -e "s/^#user =.*$$/user = nobody/" \
112 -e "s/^#group =.*$$/group = nobody/"
113
114 rm -rvf \
115 /root/.rnd \
116 /var/run/radiusd \
117 /etc/raddb/certs/*.crt \
118 /etc/raddb/certs/*.csr \
119 /etc/raddb/certs/*.der \
120 /etc/raddb/certs/*.key \
121 /etc/raddb/certs/*.pem \
122 /etc/raddb/certs/*.p12 \
123 /etc/raddb/certs/index.* \
124 /etc/raddb/certs/serial* \
125 /etc/raddb/certs/dh \
126 /etc/raddb/certs/random \
127 /usr/sbin/rc.radiusd \
128 /usr/bin/rbmonkey \
129 /etc/raddb/mods-config/sql/main/mssql \
130 /etc/raddb/mods-config/sql/ippool/oracle \
131 /etc/raddb/mods-config/sql/ippool-dhcp/oracle \
132 /etc/raddb/mods-config/sql/main/oracle \
133 /etc/raddb/mods-available/unbound \
134 /etc/raddb/mods-config/unbound/default.conf \
135 /etc/raddb/mods-available/couchbase \
136 /etc/raddb/mods-available/abfab* \
137 /etc/raddb/policy.d/abfab* \
138 /etc/raddb/sites-available/abfab* \
139 /usr/lib/freeradius/rlm_test.so \
140 /etc/raddb/experimental.conf
141
142 install -v -m 644 $(DIR_SRC)/config/backup/includes/freeradius \
143 /var/ipfire/backup/addons/includes/freeradius
144
84d5f2fa
MT
145 # Logrotate
146 -mkdir -pv /etc/logrotate.d
147 install -v -m 644 $(DIR_SRC)/config/freeradius/logrotate \
148 /etc/logrotate.d/freeradius
149
dbb35fa6 150 #install initscripts
f15707c7 151 $(call INSTALL_INITSCRIPTS,$(SERVICES))
dbb35fa6 152
71f578bb
MT
153 @rm -rf $(DIR_APP)
154 @$(POSTBUILD)