]> git.proxmox.com Git - mirror_lxc.git/blame - lxc.spec.in
Merge pull request #2150 from brauner/2018-02-10/cgfsng_fix_unpriv_devices
[mirror_lxc.git] / lxc.spec.in
CommitLineData
5e97c3fc 1#
2# lxc: linux Container library
3#
4# (C) Copyright IBM Corp. 2007, 2008
5#
6# Authors:
9afe19d6 7# Daniel Lezcano <daniel.lezcano at free.fr>
5e97c3fc 8#
9# This library is free software; you can redistribute it and/or
10# modify it under the terms of the GNU Lesser General Public
11# License as published by the Free Software Foundation; either
12# version 2.1 of the License, or (at your option) any later version.
13#
14# This library is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17# Lesser General Public License for more details.
18#
19# You should have received a copy of the GNU Lesser General Public
20# License along with this library; if not, write to the Free Software
250b1eec 21# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
5e97c3fc 22
0adde0f8
DE
23%global with_python %{?_with_python: 1} %{?!_with_python: 0}
24%global with_lua %{?_with_lua: 1} %{?!_with_lua: 0}
25
420dfb59
DE
26# Set with_systemd on distros that use it, so we can install the service
27# file, otherwise the sysvinit script will be installed
28%if 0%{?fedora} >= 14 || 0%{?rhel} >= 7 || 0%{?suse_version} >= 1210
29%global with_systemd 1
30%define init_script systemd
0af99319
MW
31#
32# BuildRequires systemd-units on fedora and rhel
33%if 0%{?fedora} >= 14 || 0%{?rhel} >= 7
420dfb59 34BuildRequires: systemd-units
0af99319
MW
35#
36# BuildRequires systemd on openSUSE and SUSE
37%endif
38%if 0%{?suse_version} >= 1210
39BuildRequires: systemd
40%endif
420dfb59
DE
41%else
42%global with_systemd 0
dc068290 43%define init_script sysvinit
420dfb59
DE
44%endif
45
fce070c8
DE
46# Must use /var/run for runtime_path on older releases or dnsmasq in the
47# lxc-net script will not be able to write its pid in /run (selinux denial)
48%if 0%{?fedora} < 15 || 0%{?rhel} < 7
49%define _with_runtime_path --with-runtime-path=/var/run
50%endif
51
9588a6ce
SH
52# RPM needs alpha/beta/rc in Release: not Version: to ensure smooth
53# package upgrades from alpha->beta->rc->release. For more info see:
54# http://fedoraproject.org/wiki/Packaging%3aNamingGuidelines#NonNumericRelease
55%if "x@LXC_VERSION_BETA@" != "x"
56%global beta_rel @LXC_VERSION_BETA@
57%global beta_dot .%{beta_rel}
58%else
59%global norm_rel 1
60%endif
61
5e97c3fc 62Name: @PACKAGE@
9588a6ce
SH
63Version: @LXC_VERSION_BASE@
64Release: %{?beta_rel:0.1.%{beta_rel}}%{?!beta_rel:%{norm_rel}}%{?dist}
07520b2a 65URL: http://linuxcontainers.org
9588a6ce 66Source: http://linuxcontainers.org/downloads/%{name}-%{version}%{?beta_dot}.tar.gz
0adde0f8 67Summary: Linux Containers userspace tools
5e97c3fc 68Group: Applications/System
0adde0f8 69License: LGPLv2+
cef07149 70BuildRoot: %{_tmppath}/%{name}-%{version}-build
fce070c8 71Requires: openssl rsync dnsmasq bridge-utils
1f3fc0d7 72Requires: %{name}-libs = %{version}-%{release}
fce070c8
DE
73Requires(pre): /usr/sbin/useradd
74Requires(postun): /usr/sbin/userdel
75%if 0%{?fedora} < 15 || 0%{?rhel} < 7
76Requires: libcgroup
77%endif
0af99319
MW
78# Note for Suse. The "docbook2X" BuildRequires does properly
79# match docbook2x on Suse in a case insensitive manner
80BuildRequires: libcap libcap-devel docbook2X graphviz libxslt pkgconfig
81
82#
83# Additional packages for openSUSE and SUSE
84#
85%if 0%{?suse_version} >= 1210
86PreReq: permissions
87BuildRequires: libapparmor-devel linux-glibc-devel lsb-release docbook-utils
88
89#
90# libseccomp-devel only needed on i386/i586/i686 and X86_64
91#
92%ifarch %ix86 x86_64
93BuildRequires: libseccomp-devel
94%endif
95%endif
5e97c3fc 96
ce951132
DE
97%if %{with_python}
98Requires: python3
99BuildRequires: python3-devel
f6ab2204 100BuildRequires: python3-setuptools
ce951132
DE
101%endif
102
5e97c3fc 103%description
0adde0f8 104Containers are insulated areas inside a system, which have their own namespace
f7f1ba77
SG
105for filesystem, network, PID, IPC, CPU and memory allocation and which can be
106created using the Control Group and Namespace features included in the Linux
0adde0f8
DE
107kernel.
108
109This package provides the lxc-* tools, which can be used to start a single
110daemon in a container, or to boot an entire "containerized" system, and to
111manage and debug your containers.
112
113%package libs
114Summary: Shared library files for %{name}
115Group: System Environment/Libraries
116%description libs
1c41ddcb
GK
117The %{name}-libs package contains libraries for running %{name} applications.
118
0adde0f8
DE
119%package devel
120Summary: Development library for %{name}
121Group: Development/Libraries
122Requires: %{name} = %{version}-%{release}, pkgconfig
123%description devel
805415fc 124The %{name}-devel package contains header files and library needed for
0adde0f8
DE
125development of the Linux containers.
126
127%if %{with_lua}
128%package lua
129Summary: Lua bindings for %{name}
130Group: System Environment/Libraries
9f2fd74c 131Requires: lua-filesystem lua-alt-getopt
0adde0f8
DE
132BuildRequires: lua-devel
133%description lua
134The %{name}-lua package contains %{name} bindings for lua.
135%endif
5e97c3fc 136
137%prep
9588a6ce 138%setup -q -n %{name}-%{version}%{?beta_dot}
5e97c3fc 139%build
ce951132 140PATH=$PATH:/usr/sbin:/sbin %configure $args \
f080ffd7
DE
141%if %{with_lua}
142 --enable-lua \
143%endif
ce951132
DE
144%if %{with_python}
145 --enable-python \
0af99319
MW
146%endif
147%if "x%{_unitdir}" != "x"
148 --with-systemdsystemunitdir=%{_unitdir} \
ce951132 149%endif
fce070c8 150 %{?_with_runtime_path} \
420dfb59
DE
151 --disable-rpath \
152 --with-init-script=%{init_script}
cef07149 153make %{?_smp_mflags}
5e97c3fc 154
155%install
b9cb4325
DE
156rm -rf %{buildroot}
157make install DESTDIR=%{buildroot}
158find %{buildroot} -type f -name '*.la' -exec rm -f {} ';'
805415fc 159
5e97c3fc 160%clean
161rm -rf %{buildroot}
162
0af99319 163%pre
fce070c8 164# Ensure that lxc-dnsmasq uid & gid gets correctly allocated
0af99319
MW
165if getent passwd lxc-dnsmasq >/dev/null 2>&1 ; then : ; else \
166 /usr/sbin/useradd -M -r -s /sbin/nologin \
167 -c "LXC Networking Service" -d %_localstatedir/%name lxc-dnsmasq 2> /dev/null \
168 || exit 1
169fi
170
cef07149 171%post
0af99319 172# This test should trigger a network configure on a new install.
cd27b6c8 173if [ ! -f @LXC_DISTRO_SYSCONF@/lxc-net ] || ! grep -q 'USE_LXC_BRIDGE=' @LXC_DISTRO_SYSCONF@/lxc-net
0af99319
MW
174then
175 # Grab a random 10net subnet. Need to add test logic...
176 while [ true ]
177 do
178 SUBNET=10.$(($RANDOM % 256)).$(($RANDOM % 256))
179 if ! ip -4 route ls | grep -q "^$SUBNET"
180 then
181 break
182 fi
183 done
184
cd27b6c8 185 cat > @LXC_DISTRO_SYSCONF@/lxc-net <<EOF
0af99319
MW
186# Leave USE_LXC_BRIDGE as "true" if you want to use lxcbr0 for your
187# containers. Set to "false" if you'll use virbr0 or another existing
e8202121 188# bridge, or macvlan to your host's NIC.
0af99319
MW
189USE_LXC_BRIDGE="true"
190
191# If you change the LXC_BRIDGE to something other than lxcbr0, then
192# you will also need to update your /etc/lxc/default.conf as well as the
193# configuration (/var/lib/lxc/<container>/config) for any containers
194# already created using the default config to reflect the new bridge
195# name.
196# If you have the dnsmasq daemon installed, you'll also have to update
197# /etc/dnsmasq.d/lxc and restart the system wide dnsmasq daemon.
198LXC_BRIDGE="lxcbr0"
84432621 199LXC_BRIDGE_MAC="00:16:3e:00:00:00"
0af99319
MW
200LXC_ADDR="$SUBNET.1"
201LXC_NETMASK="255.255.255.0"
202LXC_NETWORK="$SUBNET.0/24"
203LXC_DHCP_RANGE="$SUBNET.2,$SUBNET.254"
204LXC_DHCP_MAX="253"
205# Uncomment the next line if you'd like to use a conf-file for the lxcbr0
206# dnsmasq. For instance, you can use 'dhcp-host=mail1,10.0.3.100' to have
207# container 'mail1' always get ip address 10.0.3.100.
208#LXC_DHCP_CONFILE=/etc/lxc/dnsmasq.conf
209
210# Uncomment the next line if you want lxcbr0's dnsmasq to resolve the .lxc
211# domain. You can then add "server=/lxc/10.0.3.1' (or your actual $LXC_ADDR)
212# to /etc/dnsmasq.conf, after which 'container1.lxc' will resolve on your
213# host.
214#LXC_DOMAIN="lxc"
215EOF
216fi
217
fce070c8
DE
218%postun
219/usr/sbin/userdel lxc-dnsmasq > /dev/null 2>&1 || :
220
0adde0f8
DE
221%post libs -p /sbin/ldconfig
222%postun libs -p /sbin/ldconfig
805415fc 223
5e97c3fc 224%files
225%defattr(-,root,root)
5e97c3fc 226%{_bindir}/*
0af99319
MW
227# openSUSE/SUSE
228%if 0%{?suse_version} >= 1210
229%dir %{_sysconfdir}/apparmor.d
230%dir %{_sysconfdir}/apparmor.d/abstractions
231%dir %{_sysconfdir}/apparmor.d/abstractions/%{name}
232%config %{_sysconfdir}/apparmor.d/abstractions/%{name}/container-base
233%config %{_sysconfdir}/apparmor.d/abstractions/%{name}/start-container
234%config %{_sysconfdir}/apparmor.d/%{name}-containers
235%dir %{_sysconfdir}/apparmor.d/%{name}
236%config %{_sysconfdir}/apparmor.d/%{name}/%{name}-default
237%config %{_sysconfdir}/apparmor.d/%{name}/%{name}-default-with-mounting
238%config %{_sysconfdir}/apparmor.d/%{name}/%{name}-default-with-nesting
239%config %{_sysconfdir}/apparmor.d/usr.bin.%{name}-start
240%endif
0adde0f8
DE
241%{_mandir}/man1/lxc*
242%{_mandir}/man5/lxc*
243%{_mandir}/man7/lxc*
0af99319
MW
244# not openSUSE/SUSE
245%if %{undefined suse_version}
0adde0f8
DE
246%{_mandir}/ja/man1/lxc*
247%{_mandir}/ja/man5/lxc*
248%{_mandir}/ja/man7/lxc*
2b371b26
SY
249%{_mandir}/ko/man1/lxc*
250%{_mandir}/ko/man5/lxc*
251%{_mandir}/ko/man7/lxc*
0af99319 252%endif
411c76ce 253%{_datadir}/doc/*
b9cb4325 254%{_datadir}/lxc/*
e0f2f5c7 255%{_sysconfdir}/bash_completion.d
0adde0f8 256%config(noreplace) %{_sysconfdir}/lxc/*
0af99319 257%config(noreplace) %{_sysconfdir}/sysconfig/*
5e97c3fc 258
420dfb59 259%if %{with_systemd}
0af99319 260%{_unitdir}/lxc-net.service
420dfb59 261%{_unitdir}/lxc.service
bc395756 262%{_unitdir}/lxc@.service
420dfb59
DE
263%else
264%{_sysconfdir}/rc.d/init.d/lxc
0af99319 265%{_sysconfdir}/rc.d/init.d/lxc-net
420dfb59 266%endif
87ff951e 267
1c41ddcb
GK
268%files libs
269%defattr(-,root,root)
ba5783a5 270%{_sbindir}/*
1c41ddcb
GK
271%{_libdir}/*.so.*
272%{_libdir}/%{name}
7323456e 273%{_localstatedir}/*
bc395756
EG
274%{_libexecdir}/%{name}/hooks/unmount-namespace
275%{_libexecdir}/%{name}/lxc-apparmor-load
276%{_libexecdir}/%{name}/lxc-monitord
45e854dc 277%attr(4111,root,root) %{_libexecdir}/%{name}/lxc-user-nic
420dfb59 278%if %{with_systemd}
0af99319
MW
279%attr(555,root,root) %{_libexecdir}/%{name}/lxc-net
280%attr(555,root,root) %{_libexecdir}/%{name}/lxc-containers
420dfb59 281%endif
1c41ddcb 282
58d6a17e 283%if %{with_python}
73bf2763 284%{python3_sitearch}/*
58d6a17e
MW
285%endif
286
0adde0f8
DE
287%if %{with_lua}
288%files lua
289%defattr(-,root,root)
290%{_datadir}/lua
291%{_libdir}/lua
292%endif
293
5e97c3fc 294%files devel
295%defattr(-,root,root)
296%{_includedir}/%{name}/*
1c41ddcb 297%{_libdir}/*.so
b9cb4325 298%{_libdir}/pkgconfig/*
5e97c3fc 299
300%changelog
0adde0f8
DE
301* Tue Oct 22 2013 Dwight Engen <dwight.engen@oracle.com> - 1.0.0-0.1.alpha2
302- fix some rpmlint warnings/errors
ec64264d 303- split lua bits into separate package
0adde0f8
DE
304
305* Mon Sep 10 2012 Dwight Engen <dwight.engen@oracle.com> - 0.8.0
b9cb4325
DE
306- fix lxc-init moved to libexec
307- .pc moved to _libdir
308- package template files /usr/share/lxc/templates
309
0adde0f8 310* Thu Sep 8 2011 Greg Kurz <gkurz@fr.ibm.com> - 0.7.5.1
1c41ddcb
GK
311- fix installed files for rpmbuild
312- introduce lxc-libs package
b4915399 313
0adde0f8 314* Fri Jul 23 2010 Daniel Lezcano <dlezcano@fr.ibm.com> - 0.7.2
7ef6e440
DL
315- set attribute for installed files
316- fix libraries installation
7ef6e440 317
7920b1b4 318* Tue Mar 24 2009 Daniel Lezcano <daniel.lezcano@free.fr> - 0.6.1
237315ff
DL
319- Removed capability setting, let the user to do that through "lxc-setcap"
320
0adde0f8 321* Mon Feb 16 2009 Daniel Lezcano <daniel.lezcano@free.fr> - 0.6.0
44931bc7 322- Added more capabilities to the executables
323
0adde0f8 324* Sun Jan 25 2009 Daniel Lezcano <daniel.lezcano@free.fr> - 0.6.0
cef07149 325- Reduced spec file
326
0adde0f8 327* Sun Aug 3 2008 Daniel Lezcano <dlezcano@fr.ibm.com> - 0.1.0
5e97c3fc 328- Initial RPM release.
329
330# Local variables:
331# mode: shell-script
332# sh-shell: rpm
333# end: