157 lines
4.3 KiB
RPMSpec
157 lines
4.3 KiB
RPMSpec
#
|
|
# spec file for package cloud-netconfig
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define base_name cloud-netconfig
|
|
|
|
%if "@BUILD_FLAVOR@" == ""
|
|
%define flavor_suffix %nil
|
|
%define csp_string None
|
|
ExclusiveArch: do-not-build
|
|
%endif
|
|
%if "@BUILD_FLAVOR@" == "azure"
|
|
%define flavor_suffix -azure
|
|
%define csp_string Microsoft Azure
|
|
%endif
|
|
%if "@BUILD_FLAVOR@" == "ec2"
|
|
%define flavor_suffix -ec2
|
|
%define csp_string Amazon EC2
|
|
%endif
|
|
%if "@BUILD_FLAVOR@" == "gce"
|
|
%define flavor_suffix -gce
|
|
%define csp_string Google Compute Engine
|
|
%endif
|
|
|
|
%if ! %{defined _distconfdir}
|
|
%define _distconfdir %{_sysconfdir}
|
|
%define no_dist_conf 1
|
|
%endif
|
|
|
|
%if 0%{?suse_version} == 1600
|
|
%define with_sysconfig 0
|
|
%else
|
|
%define with_sysconfig 1
|
|
%endif
|
|
|
|
Name: %{base_name}%{flavor_suffix}
|
|
Version: 1.13
|
|
Release: 0
|
|
License: GPL-3.0-or-later
|
|
Summary: Network configuration scripts for %{csp_string}
|
|
URL: https://github.com/SUSE-Enceladus/cloud-netconfig
|
|
Group: System/Management
|
|
Source0: %{base_name}-%{version}.tar.bz2
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
BuildRequires: NetworkManager
|
|
BuildRequires: systemd-rpm-macros
|
|
BuildRequires: pkgconfig(udev)
|
|
Requires: curl
|
|
Requires: udev
|
|
Provides: cloud-netconfig
|
|
Provides: cloud-netconfig-nm = %{version}
|
|
Obsoletes: cloud-netconfig-nm < %{version}
|
|
Conflicts: cloud-netconfig
|
|
%if 0%{?suse_version} == 1315
|
|
%{?systemd_requires}
|
|
%else
|
|
%{?systemd_ordering}
|
|
%endif
|
|
%define _scriptdir %{_libexecdir}/cloud-netconfig
|
|
%if 0%{?suse_version} > 1550
|
|
%define _netconfigdir %{_libexecdir}/netconfig.d
|
|
%define _dispatcherdir /usr/lib/NetworkManager/dispatcher.d
|
|
%else
|
|
%define _netconfigdir %{_sysconfdir}/netconfig.d
|
|
%define _dispatcherdir %{_sysconfdir}/NetworkManager/dispatcher.d
|
|
%endif
|
|
|
|
%description -n %{base_name}%{flavor_suffix}
|
|
This package contains scripts for automatically configuring network interfaces
|
|
in %{csp_string} with full support for hotplug.
|
|
|
|
%prep
|
|
%setup -q -n %{base_name}-%{version}
|
|
|
|
%build
|
|
|
|
%install
|
|
make install%{flavor_suffix} \
|
|
DESTDIR=%{buildroot} \
|
|
PREFIX=%{_usr} \
|
|
SYSCONFDIR=%{_sysconfdir} \
|
|
DISTCONFDIR=%{_distconfdir} \
|
|
SCRIPTDIR=%{_scriptdir} \
|
|
UDEVRULESDIR=%{_udevrulesdir} \
|
|
UNITDIR=%{_unitdir} \
|
|
NETCONFIGDIR=%{_netconfigdir} \
|
|
NMDISPATCHDIR=%{_dispatcherdir}
|
|
|
|
# Disable persistent net generator from udev-persistent-ifnames as
|
|
# it does not work for xen interfaces. This will likely produce a warning.
|
|
%if 0%{?suse_version} >= 1315
|
|
mkdir -p %{buildroot}/%{_sysconfdir}/udev/rules.d
|
|
ln -s /dev/null %{buildroot}/%{_sysconfdir}/udev/rules.d/75-persistent-net-generator.rules
|
|
%endif
|
|
|
|
%if %{with_sysconfig} == 1
|
|
make install-netconfig-wrapper \
|
|
SCRIPTDIR=%{_scriptdir} \
|
|
DESTDIR=%{buildroot} \
|
|
NETCONFIGDIR=%{_netconfigdir}
|
|
|
|
# install link to cleanup script in /etc/sysconfig/network/scripts to wicked
|
|
# will find it
|
|
mkdir -p %{buildroot}/%{_sysconfdir}/sysconfig/network/scripts
|
|
ln -s %{_scriptdir}/cloud-netconfig-cleanup %{buildroot}/%{_sysconfdir}/sysconfig/network/scripts/cloud-netconfig-cleanup
|
|
%endif
|
|
|
|
%files -n %{base_name}%{flavor_suffix}
|
|
%defattr(-,root,root)
|
|
%{_scriptdir}
|
|
%if %{defined no_dist_conf}
|
|
%config(noreplace) %{_distconfdir}/default/cloud-netconfig
|
|
%else
|
|
%{_distconfdir}/default/cloud-netconfig
|
|
%endif
|
|
%if %{with_sysconfig} == 1
|
|
%{_netconfigdir}
|
|
%{_sysconfdir}/sysconfig/network
|
|
%endif
|
|
%if 0%{?suse_version} >= 1315
|
|
%{_sysconfdir}/udev/rules.d
|
|
%endif
|
|
%{_udevrulesdir}/*
|
|
%{_unitdir}/*
|
|
%{_dispatcherdir}
|
|
%doc README.md
|
|
%license LICENSE
|
|
|
|
%pre
|
|
%service_add_pre %{base_name}.service %{base_name}.timer
|
|
|
|
%post
|
|
%service_add_post %{base_name}.service %{base_name}.timer
|
|
|
|
%preun
|
|
%service_del_preun %{base_name}.service %{base_name}.timer
|
|
|
|
%postun
|
|
%service_del_postun %{base_name}.service %{base_name}.timer
|
|
|
|
%changelog
|