]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/amazon-ssm-agent
suricata: Change midstream policy to "pass-flow"
[people/pmueller/ipfire-2.x.git] / lfs / amazon-ssm-agent
CommitLineData
44cc9a3d
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
70f08332 4# Copyright (C) 2019-2023 IPFire Team <info@ipfire.org> #
44cc9a3d
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
f15707c7
RR
27SUMMARY = Amazon Remote System Config Management
28
70f08332 29VER = 3.2.582.0
f605a2d3 30SUP_ARCH = aarch64 x86_64
44cc9a3d
MT
31
32THISAPP = amazon-ssm-agent-$(VER)
33DL_FILE = $(THISAPP).tar.gz
34DL_FROM = $(URL_IPFIRE)
35DIR_APP = $(DIR_SRC)/$(THISAPP)
36TARGET = $(DIR_INFO)/$(THISAPP)
37PROG = amazon-ssm-agent
70f08332 38PAK_VER = 8
44cc9a3d 39
2dc2a278 40DEPS =
44cc9a3d 41
f15707c7
RR
42SERVICES = amazon-ssm-agent
43
44cc9a3d
MT
44DIR_BUILD = $(GOPATH)/src/github.com/aws/amazon-ssm-agent
45
46###############################################################################
47# Top-level Rules
48###############################################################################
49
50objects = $(DL_FILE)
51
52$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
53
70f08332 54$(DL_FILE)_BLAKE2 = df2c6111d0c3e941773c5657b199d414435742b20187788b4b07253f67ba0c54ce42e6c62851fba26635b01226b1e1a3e8b4db1f3b3b983323fe764f12c19ddc
44cc9a3d
MT
55
56install : $(TARGET)
57
58check : $(patsubst %,$(DIR_CHK)/%,$(objects))
59
60download :$(patsubst %,$(DIR_DL)/%,$(objects))
61
9a7e4d85 62b2 : $(subst %,%_BLAKE2,$(objects))
44cc9a3d
MT
63
64dist:
65 @$(PAK)
66
67###############################################################################
9a7e4d85 68# Downloading, checking, b2sum
44cc9a3d
MT
69###############################################################################
70
71$(patsubst %,$(DIR_CHK)/%,$(objects)) :
72 @$(CHECK)
73
74$(patsubst %,$(DIR_DL)/%,$(objects)) :
75 @$(LOAD)
76
9a7e4d85
PM
77$(subst %,%_BLAKE2,$(objects)) :
78 @$(B2SUM)
44cc9a3d
MT
79
80###############################################################################
81# Installation Details
82###############################################################################
83
84$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
85 @$(PREBUILD)
86 @rm -rf $(DIR_APP) $(DIR_BUILD) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
87
88 # The build system is searching for code in a certain path
89 mkdir -pv $$(dirname $(DIR_BUILD))
aab6ec60 90 mv -v $(DIR_APP) $(DIR_BUILD)
44cc9a3d
MT
91
92 # Disable style check
93 cd $(DIR_BUILD) && sed -e "/checkstyle.sh/d" -i makefile
94
229a6dff
MT
95 # agent/plugins/inventory/gatherers/application/dataProvider.go:10:78: error: imported and not used: localpackages
96 cd $(DIR_BUILD) && sed -e "/localpackages/d" \
97 -i agent/plugins/inventory/gatherers/application/dataProvider.go
98
f605a2d3
MT
99 # Cleanup anything shipped
100 cd $(DIR_BUILD) && make clean
101
44cc9a3d 102 # Build
f605a2d3
MT
103ifeq "$(BUILD_ARCH)" "aarch64"
104 cd $(DIR_BUILD) && make build-arm64
105else
44cc9a3d 106 cd $(DIR_BUILD) && make build-linux
f605a2d3 107endif
44cc9a3d 108
8bded835
MT
109 # Remove some temporary files (no idea why those are being created)
110 rm -rfv /usr/lib/go/pkg/linux_$(GOARCH)_shared
111
44cc9a3d
MT
112 # Install
113 mkdir -pv /etc/amazon/ssm /usr/bin /var/lib/amazon/ssm
114 cd $(DIR_BUILD) && install -v -m 755 \
f605a2d3
MT
115 bin/linux_$(GOARCH)/amazon-ssm-agent \
116 bin/linux_$(GOARCH)/ssm-agent-worker \
117 bin/linux_$(GOARCH)/ssm-cli \
118 bin/linux_$(GOARCH)/ssm-document-worker \
119 bin/linux_$(GOARCH)/ssm-session-worker \
120 bin/linux_$(GOARCH)/ssm-session-logger \
44cc9a3d
MT
121 /usr/bin
122 cd $(DIR_BUILD) && install -v -m 644 \
123 seelog_unix.xml /etc/amazon/ssm/seelog.xml
124 cd $(DIR_BUILD) && install -v -m 644 \
125 amazon-ssm-agent.json.template /etc/amazon/ssm/amazon-ssm-agent.json
126
127 # Install initscript
f15707c7 128 $(call INSTALL_INITSCRIPTS,$(SERVICES))
44cc9a3d
MT
129
130 # Install backup include
131 install -v -m 644 $(DIR_SRC)/config/backup/includes/amazon-ssm-agent \
132 /var/ipfire/backup/addons/includes/amazon-ssm-agent
133
134 @rm -rf $(DIR_APP) $(DIR_BUILD)
135 @$(POSTBUILD)