|
|
c22365 |
From 3aa5fe71fd77f07c5b35ef40e774840f12ee4ee8 Mon Sep 17 00:00:00 2001
|
|
|
5d90b8 |
From: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
5d90b8 |
Date: Thu, 6 Oct 2016 12:25:35 +0200
|
|
|
5d90b8 |
Subject: Add inital redhat build support
|
|
|
5d90b8 |
|
|
|
5d90b8 |
Rebase notes (2.2.32):
|
|
|
5d90b8 |
- Fix license text
|
|
|
5d90b8 |
|
|
|
5d90b8 |
Rebase notes (2.2.26):
|
|
|
5d90b8 |
- update to RHEL 8 build
|
|
|
5d90b8 |
- Do not use INSTALED_FILES for %files
|
|
|
5d90b8 |
|
|
|
5d90b8 |
Rebase notes (2.2.10):
|
|
|
5d90b8 |
- switched to sha256
|
|
|
5d90b8 |
- added .gitpublish profile
|
|
|
5d90b8 |
|
|
|
5d90b8 |
Rebase notes (2.2.46):
|
|
|
5d90b8 |
- added waagent-extn.logrotate
|
|
|
5d90b8 |
|
|
|
5d90b8 |
Merged patches (2.2.45):
|
|
|
5d90b8 |
- df29beb Switch from platform-python to python36
|
|
|
5d90b8 |
- 6749108 Stop packaging legacy waagent2.0
|
|
|
5d90b8 |
|
|
|
5d90b8 |
Merged patches (2.2.32):
|
|
|
5d90b8 |
- ce36fd9 Use Python3
|
|
|
5d90b8 |
- 952c830 Remove FIPS setting from the default config
|
|
|
5d90b8 |
- cc9df73 Switch hardcoded python3 shebangs into the %%{__python3} macro
|
|
|
5d90b8 |
- 66b6f8c Use correct macro for waagent.service
|
|
|
5d90b8 |
- 1b15ada Switch to platform-python in systemd unit file
|
|
|
5d90b8 |
- 59f682b Use sys.executable to find system python
|
|
|
5d90b8 |
|
|
|
eb9da2 |
Merged patches (2.2.49):
|
|
|
eb9da2 |
- 3a23336 Mark logrotate configs with %config(noreplace)
|
|
|
c22365 |
|
|
|
c22365 |
Merged patches (2.3.0.2):
|
|
|
c22365 |
- 30bb06f9 Provide udev rules as a separate subpackage.
|
|
|
5d90b8 |
---
|
|
|
eb9da2 |
.gitignore | 1 +
|
|
|
5d90b8 |
.gitpublish | 8 +
|
|
|
5d90b8 |
bin/waagent | 2 +-
|
|
|
5d90b8 |
bin/waagent2.0 | 2 +-
|
|
|
5d90b8 |
init/arch/waagent.service | 2 +-
|
|
|
5d90b8 |
init/clearlinux/waagent.service | 2 +-
|
|
|
5d90b8 |
init/suse/waagent | 2 +-
|
|
|
5d90b8 |
init/waagent.service | 2 +-
|
|
|
5d90b8 |
makepkg.py | 2 +-
|
|
|
5d90b8 |
redhat/.gitignore | 1 +
|
|
|
c22365 |
redhat/Makefile | 72 +++++
|
|
|
c22365 |
redhat/Makefile.common | 37 +++
|
|
|
c22365 |
redhat/WALinuxAgent.spec.template | 234 ++++++++++++++++
|
|
|
5d90b8 |
redhat/rpmbuild/BUILD/.gitignore | 2 +
|
|
|
5d90b8 |
redhat/rpmbuild/RPMS/.gitignore | 2 +
|
|
|
5d90b8 |
redhat/rpmbuild/SOURCES/.gitignore | 2 +
|
|
|
5d90b8 |
redhat/rpmbuild/SPECS/.gitignore | 2 +
|
|
|
5d90b8 |
redhat/rpmbuild/SRPMS/.gitignore | 2 +
|
|
|
c22365 |
redhat/scripts/frh.py | 27 ++
|
|
|
c22365 |
redhat/scripts/git-backport-diff | 327 ++++++++++++++++++++++
|
|
|
c22365 |
redhat/scripts/git-compile-check | 215 ++++++++++++++
|
|
|
c22365 |
redhat/scripts/process-patches.sh | 93 ++++++
|
|
|
5d90b8 |
redhat/scripts/tarball_checksum.sh | 3 +
|
|
|
5d90b8 |
setup.py | 2 +-
|
|
|
5d90b8 |
tests/data/ext/sample_ext-1.3.0/sample.py | 2 +-
|
|
|
c22365 |
25 files changed, 1037 insertions(+), 9 deletions(-)
|
|
|
5d90b8 |
create mode 100644 .gitpublish
|
|
|
5d90b8 |
create mode 100644 redhat/.gitignore
|
|
|
5d90b8 |
create mode 100644 redhat/Makefile
|
|
|
5d90b8 |
create mode 100644 redhat/Makefile.common
|
|
|
5d90b8 |
create mode 100644 redhat/WALinuxAgent.spec.template
|
|
|
5d90b8 |
create mode 100644 redhat/rpmbuild/BUILD/.gitignore
|
|
|
5d90b8 |
create mode 100644 redhat/rpmbuild/RPMS/.gitignore
|
|
|
5d90b8 |
create mode 100644 redhat/rpmbuild/SOURCES/.gitignore
|
|
|
5d90b8 |
create mode 100644 redhat/rpmbuild/SPECS/.gitignore
|
|
|
5d90b8 |
create mode 100644 redhat/rpmbuild/SRPMS/.gitignore
|
|
|
5d90b8 |
create mode 100755 redhat/scripts/frh.py
|
|
|
5d90b8 |
create mode 100755 redhat/scripts/git-backport-diff
|
|
|
5d90b8 |
create mode 100755 redhat/scripts/git-compile-check
|
|
|
5d90b8 |
create mode 100755 redhat/scripts/process-patches.sh
|
|
|
5d90b8 |
create mode 100755 redhat/scripts/tarball_checksum.sh
|
|
|
5d90b8 |
|
|
|
5d90b8 |
diff --git a/bin/waagent b/bin/waagent
|
|
|
c22365 |
index 60cdf56c..0443ecb4 100755
|
|
|
5d90b8 |
--- a/bin/waagent
|
|
|
5d90b8 |
+++ b/bin/waagent
|
|
|
5d90b8 |
@@ -1,4 +1,4 @@
|
|
|
5d90b8 |
-#!/usr/bin/env python
|
|
|
5d90b8 |
+#!/usr/bin/python3.6
|
|
|
5d90b8 |
#
|
|
|
5d90b8 |
# Azure Linux Agent
|
|
|
5d90b8 |
#
|
|
|
5d90b8 |
diff --git a/bin/waagent2.0 b/bin/waagent2.0
|
|
|
c22365 |
index 34732677..762d211f 100644
|
|
|
5d90b8 |
--- a/bin/waagent2.0
|
|
|
5d90b8 |
+++ b/bin/waagent2.0
|
|
|
5d90b8 |
@@ -1,4 +1,4 @@
|
|
|
5d90b8 |
-#!/usr/bin/env python
|
|
|
5d90b8 |
+#!/usr/bin/env python3
|
|
|
5d90b8 |
#
|
|
|
5d90b8 |
# Azure Linux Agent
|
|
|
5d90b8 |
#
|
|
|
5d90b8 |
diff --git a/init/arch/waagent.service b/init/arch/waagent.service
|
|
|
c22365 |
index d426eb21..ff1ebab1 100644
|
|
|
5d90b8 |
--- a/init/arch/waagent.service
|
|
|
5d90b8 |
+++ b/init/arch/waagent.service
|
|
|
5d90b8 |
@@ -8,7 +8,7 @@ ConditionPathExists=/etc/waagent.conf
|
|
|
5d90b8 |
|
|
|
5d90b8 |
[Service]
|
|
|
5d90b8 |
Type=simple
|
|
|
5d90b8 |
-ExecStart=/usr/bin/python -u /usr/bin/waagent -daemon
|
|
|
5d90b8 |
+ExecStart=/usr/bin/python3 -u /usr/bin/waagent -daemon
|
|
|
5d90b8 |
Restart=always
|
|
|
5d90b8 |
RestartSec=5
|
|
|
5d90b8 |
|
|
|
5d90b8 |
diff --git a/init/clearlinux/waagent.service b/init/clearlinux/waagent.service
|
|
|
c22365 |
index 9afee454..c29fc1b2 100644
|
|
|
5d90b8 |
--- a/init/clearlinux/waagent.service
|
|
|
5d90b8 |
+++ b/init/clearlinux/waagent.service
|
|
|
5d90b8 |
@@ -8,7 +8,7 @@ ConditionPathExists=/usr/share/defaults/waagent/waagent.conf
|
|
|
5d90b8 |
|
|
|
5d90b8 |
[Service]
|
|
|
5d90b8 |
Type=simple
|
|
|
5d90b8 |
-ExecStart=/usr/bin/python -u /usr/bin/waagent -daemon
|
|
|
5d90b8 |
+ExecStart=/usr/bin/python3 -u /usr/bin/waagent -daemon
|
|
|
5d90b8 |
Restart=always
|
|
|
5d90b8 |
RestartSec=5
|
|
|
5d90b8 |
|
|
|
5d90b8 |
diff --git a/init/suse/waagent b/init/suse/waagent
|
|
|
c22365 |
index b77b0fa4..317e89ec 100755
|
|
|
5d90b8 |
--- a/init/suse/waagent
|
|
|
5d90b8 |
+++ b/init/suse/waagent
|
|
|
5d90b8 |
@@ -34,7 +34,7 @@
|
|
|
5d90b8 |
# Description: Start the MicrosoftAzureLinuxAgent
|
|
|
5d90b8 |
### END INIT INFO
|
|
|
5d90b8 |
|
|
|
5d90b8 |
-PYTHON=/usr/bin/python
|
|
|
5d90b8 |
+PYTHON=/usr/bin/python3
|
|
|
5d90b8 |
WAZD_BIN=/usr/sbin/waagent
|
|
|
5d90b8 |
WAZD_CONF=/etc/waagent.conf
|
|
|
5d90b8 |
WAZD_PIDFILE=/var/run/waagent.pid
|
|
|
5d90b8 |
diff --git a/init/waagent.service b/init/waagent.service
|
|
|
c22365 |
index e91f1433..99f31830 100644
|
|
|
5d90b8 |
--- a/init/waagent.service
|
|
|
5d90b8 |
+++ b/init/waagent.service
|
|
|
5d90b8 |
@@ -8,7 +8,7 @@ ConditionPathExists=/etc/waagent.conf
|
|
|
5d90b8 |
|
|
|
5d90b8 |
[Service]
|
|
|
5d90b8 |
Type=simple
|
|
|
5d90b8 |
-ExecStart=/usr/bin/python -u /usr/sbin/waagent -daemon
|
|
|
5d90b8 |
+ExecStart=/usr/bin/python3.6 -u /usr/sbin/waagent -daemon
|
|
|
5d90b8 |
Restart=always
|
|
|
5d90b8 |
RestartSec=5
|
|
|
5d90b8 |
|
|
|
5d90b8 |
diff --git a/makepkg.py b/makepkg.py
|
|
|
c22365 |
index 11e90b95..1b6b4351 100755
|
|
|
5d90b8 |
--- a/makepkg.py
|
|
|
5d90b8 |
+++ b/makepkg.py
|
|
|
5d90b8 |
@@ -1,4 +1,4 @@
|
|
|
5d90b8 |
-#!/usr/bin/env python
|
|
|
5d90b8 |
+#!/usr/bin/env python3
|
|
|
5d90b8 |
|
|
|
5d90b8 |
import glob
|
|
|
5d90b8 |
import os
|
|
|
5d90b8 |
diff --git a/setup.py b/setup.py
|
|
|
c22365 |
index c258e4b8..ba6783c6 100755
|
|
|
5d90b8 |
--- a/setup.py
|
|
|
5d90b8 |
+++ b/setup.py
|
|
|
5d90b8 |
@@ -1,4 +1,4 @@
|
|
|
5d90b8 |
-#!/usr/bin/env python
|
|
|
5d90b8 |
+#!/usr/bin/env python3
|
|
|
5d90b8 |
#
|
|
|
5d90b8 |
# Microsoft Azure Linux Agent setup.py
|
|
|
5d90b8 |
#
|
|
|
5d90b8 |
diff --git a/tests/data/ext/sample_ext-1.3.0/sample.py b/tests/data/ext/sample_ext-1.3.0/sample.py
|
|
|
c22365 |
index 47f86af8..92585ed3 100755
|
|
|
5d90b8 |
--- a/tests/data/ext/sample_ext-1.3.0/sample.py
|
|
|
5d90b8 |
+++ b/tests/data/ext/sample_ext-1.3.0/sample.py
|
|
|
5d90b8 |
@@ -1,4 +1,4 @@
|
|
|
5d90b8 |
-#!/usr/bin/env python
|
|
|
5d90b8 |
+#!/usr/bin/env python3
|
|
|
c22365 |
import json
|
|
|
5d90b8 |
import os
|
|
|
c22365 |
import re
|
|
|
5d90b8 |
--
|
|
|
c22365 |
2.27.0
|
|
|
5d90b8 |
|