2016-04-03 07:46:30 +00:00
|
|
|
%global commit 5bb9df7f2f485dbd5be057bbb657afe54bc1bf1b
|
2015-01-11 21:53:44 +00:00
|
|
|
|
|
|
|
%if 0%{?fedora}
|
|
|
|
%global distro fedora
|
|
|
|
%global initsys systemd
|
|
|
|
%else
|
|
|
|
%if 0%{?rhel}
|
|
|
|
%global distro redhat
|
|
|
|
%if 0%{?rhel} < 7
|
|
|
|
%global initsys sysV
|
2015-06-01 20:23:30 +00:00
|
|
|
%{!?_udevrulesdir: %global _udevrulesdir /lib/udev/rules.d}
|
2015-01-11 21:53:44 +00:00
|
|
|
%else
|
|
|
|
%global initsys systemd
|
|
|
|
%endif
|
|
|
|
%{!?__python2: %global __python2 /usr/bin/python2}
|
|
|
|
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print (get_python_lib())")}
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
Name: WALinuxAgent
|
2016-04-03 07:46:30 +00:00
|
|
|
Version: 2.0.18
|
2017-02-10 05:38:04 +00:00
|
|
|
Release: 2%{?dist}
|
2015-01-12 22:16:41 +00:00
|
|
|
Summary: The Microsoft Azure Linux Agent
|
2015-01-11 21:53:44 +00:00
|
|
|
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
License: ASL 2.0
|
|
|
|
URL: https://github.com/Azure/%{name}
|
|
|
|
Source0: https://github.com/Azure/%{name}/archive/%{commit}/%{name}-%{commit}.tar.gz
|
|
|
|
# Redhat-specific patch (not submitted upstream)
|
|
|
|
Patch0: %{name}-2.0.8-logrotate-name.patch
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
BuildRequires: python-setuptools
|
|
|
|
Requires: net-tools
|
|
|
|
Requires: ntfsprogs
|
|
|
|
Requires: openssh
|
|
|
|
Requires: openssh-server
|
|
|
|
Requires: openssl
|
|
|
|
Requires: parted
|
|
|
|
Requires: python-pyasn1
|
|
|
|
|
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 7
|
|
|
|
Conflicts: NetworkManager
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{initsys} == systemd
|
|
|
|
BuildRequires: systemd
|
|
|
|
Requires(post): systemd
|
|
|
|
Requires(preun): systemd
|
|
|
|
Requires(postun): systemd
|
|
|
|
%else
|
|
|
|
%if %{initsys} == sysv
|
|
|
|
Requires(post): chkconfig
|
|
|
|
Requires(preun): chkconfig
|
|
|
|
Requires(preun): initscripts
|
|
|
|
Requires(postun): initscripts
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description
|
2015-01-12 22:16:41 +00:00
|
|
|
The Microsoft Azure Linux Agent supports the provisioning and running of Linux
|
|
|
|
VMs in the Microsoft Azure cloud. This package should be installed on Linux disk
|
|
|
|
images that are built to run in the Microsoft Azure environment.
|
2015-01-11 21:53:44 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -qn %{name}-%{commit}
|
|
|
|
%patch0 -p1
|
|
|
|
|
|
|
|
chmod 0755 distro/redhat/waagent.sysV
|
|
|
|
|
|
|
|
%build
|
|
|
|
%{__python2} setup.py build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%{__python2} setup.py install --skip-build --root %{buildroot} --lnx-distro '%{distro}' --init-system '%{initsys}'
|
|
|
|
|
|
|
|
mkdir -p -m 0700 %{buildroot}%{_sharedstatedir}/waagent
|
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/log
|
|
|
|
touch %{buildroot}%{_localstatedir}/log/waagent.log
|
|
|
|
|
2015-06-01 20:23:30 +00:00
|
|
|
mkdir -p %{buildroot}%{_udevrulesdir}
|
|
|
|
mv %{buildroot}%{_sysconfdir}/udev/rules.d/99-azure-product-uuid.rules %{buildroot}%{_udevrulesdir}/99-azure-product-uuid.rules
|
|
|
|
|
2015-01-11 21:53:44 +00:00
|
|
|
%post
|
|
|
|
%if %{initsys} == systemd
|
|
|
|
%systemd_post waagent.service
|
|
|
|
%else
|
|
|
|
%if %{initsys} == sysV
|
|
|
|
/sbin/chkconfig --add waagent
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%preun
|
|
|
|
%if %{initsys} == systemd
|
|
|
|
%systemd_preun waagent.service
|
|
|
|
%else
|
|
|
|
%if %{initsys} == sysV
|
|
|
|
if [ $1 = 0 ]; then
|
|
|
|
/sbin/service waagent stop >/dev/null 2>&1
|
|
|
|
/sbin/chkconfig --del waagent
|
|
|
|
fi
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%if %{initsys} == systemd
|
|
|
|
%systemd_postun_with_restart waagent.service
|
|
|
|
%else
|
|
|
|
%if %{initsys} == sysV
|
|
|
|
if [ "$1" -ge "1" ]; then
|
|
|
|
/sbin/service waagent restart >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc Changelog LICENSE-2.0.txt NOTICE README
|
|
|
|
%ghost %{_localstatedir}/log/waagent.log
|
|
|
|
%dir %attr(0700, root, root) %{_sharedstatedir}/waagent
|
|
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d
|
|
|
|
%{_sbindir}/waagent
|
|
|
|
%config(noreplace) %{_sysconfdir}/waagent.conf
|
2015-06-01 20:23:30 +00:00
|
|
|
%{_udevrulesdir}/99-azure-product-uuid.rules
|
2015-01-11 21:53:44 +00:00
|
|
|
|
|
|
|
%if %{initsys} == systemd
|
|
|
|
%{_unitdir}/waagent.service
|
|
|
|
%else
|
|
|
|
%{_initddir}/waagent
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%changelog
|
2017-02-10 05:38:04 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.18-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-04-03 07:46:30 +00:00
|
|
|
* Sat Apr 02 2016 Scott K Logan <logans@cottsay.net> - 2.0.18-1
|
|
|
|
- Update to 2.0.18
|
|
|
|
|
2016-02-03 15:52:57 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.14-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-07-02 17:45:40 +00:00
|
|
|
* Thu Jul 02 2015 Scott K Logan <logans@cottsay.net> - 2.0.14-1
|
|
|
|
- Update to 2.0.14
|
|
|
|
|
2015-06-16 23:28:44 +00:00
|
|
|
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.13-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-01 20:23:30 +00:00
|
|
|
* Mon Jun 01 2015 Scott K Logan <logans@cottsay.net> - 2.0.13-1
|
|
|
|
- Update to 2.0.13
|
|
|
|
|
2015-04-02 08:15:51 +00:00
|
|
|
* Thu Apr 02 2015 Scott K Logan <logans@cottsay.net> - 2.0.12-1
|
|
|
|
- Update to 2.0.12-Oracle
|
|
|
|
|
2015-01-11 21:53:44 +00:00
|
|
|
* Sat Jan 10 2015 Scott K Logan <logans@cottsay.net> - 2.0.11-2
|
|
|
|
- Use systemd for rhel7
|
|
|
|
- Own logrotate.d
|
|
|
|
- Fix python2-devel dep
|
|
|
|
|
|
|
|
* Sat Dec 20 2014 Scott K Logan <logans@cottsay.net> - 2.0.11-1
|
|
|
|
- Initial package
|