# Specfile based and updated from # https://github.com/theforeman/foreman-packaging/blob/rpm/develop/packages/client/foreman_ygg_worker/foreman_ygg_worker.spec %define debug_package %{nil} # Flags for building the package %global buildflags -compiler gc -a -v -x # Package constants %global repo_orgname oamg %global repo_name rhc-worker-script %global binary_name rhc-script-worker %global rhc_libexecdir %{_libexecdir}/rhc %{!?_root_sysconfdir:%global _root_sysconfdir %{_sysconfdir}} %global rhc_worker_conf_dir %{_root_sysconfdir}/rhc/workers Name: %{repo_name} Version: 0.10 Release: 2.20241115024243566431.main.4.gf80379a%{?dist} Summary: Worker executing scripts on hosts managed by Red Hat Insights License: GPLv3+ URL: https://github.com/%{repo_orgname}/%{repo_name} Source0: rhc-worker-script-0.10.tar.gz ExclusiveArch: x86_64 BuildRequires: git BuildRequires: golang Requires: rhc %description Remote Host Configuration (rhc) worker for executing scripts on hosts managed by Red Hat Insights. %prep %setup -q -n rhc-worker-script-0.10 %build export BUILDFLAGS="%{buildflags}" make build %install # Create a temporary directory /var/lib/rhc-worker-script - used mainly for storing temporary files install -d %{buildroot}%{_sharedstatedir}/%{binary_name}/ install -D -m 755 build/%{binary_name} %{buildroot}%{rhc_libexecdir}/%{binary_name} install -D -d -m 755 %{buildroot}%{rhc_worker_conf_dir} cat <%{buildroot}%{rhc_worker_conf_dir}/rhc-worker-script.yml # Recipient directive to register with dispatcher directive: "%{name}" # Whether to verify incoming yaml files verify_yaml: true # Temporary directory in which the temporary script will be placed and executed. temporary_worker_directory: "/var/lib/rhc-worker-script" # Pass environment variables to the script being executed # env: # environment variables to be set for the script # FOO: "some-string-value" # BAR: "other-string-value" # Log level that will be sent to the script script_log_level: "info" EOF %files %{rhc_libexecdir}/%{binary_name} %license LICENSE %doc README.md %config %{rhc_worker_conf_dir}/rhc-worker-script.yml %changelog * Fri Nov 15 2024 Packit - 0.10-2.20241115024243566431.main.4.gf80379a - [pre-commit.ci] pre-commit autoupdate (#156) (pre-commit-ci[bot]) - Update codecov/codecov-action action to v5 (#158) (renovate[bot]) - [pre-commit.ci] pre-commit autoupdate (#154) (pre-commit-ci[bot]) - Update module google.golang.org/grpc to v1.67.1 (#155) (renovate[bot]) * Fri Nov 15 2024 Packit - 0.10-2 - latest upstream build * Mon Sep 30 2024 Rodolfo Olivieri 0.10-1 - Bump google.golang.org/grpc from v1.64.0 to v1.67.0 - Adressing CVE-2024-24791 * Tue Jul 02 2024 Rodolfo Olivieri 0.9-5 - Patch specfile to build with RHEL 8 * Fri Jun 21 2024 Rodolfo Olivieri 0.9-1 - Update module google.golang.org/grpc to v1.64.0 - Bump golang version to 1.21 - Adressing CVE-2024-24783, CVE-2024-24785, CVE-2023-45290, CVE-2024-24790. * Wed Apr 24 2024 Rodolfo Olivieri 0.8-1 - Pass log level to executed script for more granular logging possibility - Bump golang.org/x/net from 0.17.0 to 0.23.0 - Refactor specfile for building the worker package * Wed Apr 10 2024 Rodolfo Olivieri 0.7-1 - Load env vars from worker config file into script execution env - Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 * Wed Feb 28 2024 Rodolfo Olivieri 0.6-1 - Fix grpc to newest v1.59.x version - Remove insights_core_gpg_check from worker config - When script fails with exit code 1 we want to see the reason in logs * Mon Oct 16 2023 Rodolfo Olivieri 0.5-1 - Rebuild against newer golang which addresses CVE-2023-39325 and CVE-2023-44487 - Fix OpenScanHub defects related to runtime code - Update specfile to include default config file - Improve logging when config file can't be used and default values are used instead - Move the logging init to be before anything else - Improve logging when insights_core_gpg_check is disabled * Thu Aug 10 2023 Rodolfo Olivieri 0.4-1 - Update specfile binary name generation - Add couple more unit tests for util.go * Thu Aug 10 2023 Rodolfo Olivieri 0.3-1 - Parse minimal yaml instead of raw bash script - Tidy up the modules and replace deprecated call WithInsecure - Add option to create config for rhc-worker-bash - Fix build for go1.16 - Use separate environment for every executed command - Update to make the yaml-file more generic - Expected yaml structure should be list on top level - Add setup for sos report - Update the worker to make it more generic * Thu Jul 06 2023 Eric Gustavsson 0.2-1 - Fix RPM specfile Source * Wed Jun 14 2023 Rodolfo Olivieri 0.1-1 - Initial RPM release