]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/amazon-ssm-agent
fireinfo: Update to 2.2.0
[people/pmueller/ipfire-2.x.git] / lfs / amazon-ssm-agent
CommitLineData
44cc9a3d
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2019 IPFire Team <info@ipfire.org> #
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
ff699760 27VER = 3.0.356.0
44cc9a3d
MT
28SUP_ARCH = x86_64
29
30THISAPP = amazon-ssm-agent-$(VER)
31DL_FILE = $(THISAPP).tar.gz
32DL_FROM = $(URL_IPFIRE)
33DIR_APP = $(DIR_SRC)/$(THISAPP)
34TARGET = $(DIR_INFO)/$(THISAPP)
35PROG = amazon-ssm-agent
6cab8977 36PAK_VER = 6
44cc9a3d 37
2dc2a278 38DEPS =
44cc9a3d 39
44cc9a3d
MT
40DIR_BUILD = $(GOPATH)/src/github.com/aws/amazon-ssm-agent
41
42###############################################################################
43# Top-level Rules
44###############################################################################
45
46objects = $(DL_FILE)
47
48$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
49
ff699760 50$(DL_FILE)_MD5 = 5657c0f4400b1c573ad4e9f1c5845537
44cc9a3d
MT
51
52install : $(TARGET)
53
54check : $(patsubst %,$(DIR_CHK)/%,$(objects))
55
56download :$(patsubst %,$(DIR_DL)/%,$(objects))
57
58md5 : $(subst %,%_MD5,$(objects))
59
60dist:
61 @$(PAK)
62
63###############################################################################
64# Downloading, checking, md5sum
65###############################################################################
66
67$(patsubst %,$(DIR_CHK)/%,$(objects)) :
68 @$(CHECK)
69
70$(patsubst %,$(DIR_DL)/%,$(objects)) :
71 @$(LOAD)
72
73$(subst %,%_MD5,$(objects)) :
74 @$(MD5)
75
76###############################################################################
77# Installation Details
78###############################################################################
79
80$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
81 @$(PREBUILD)
82 @rm -rf $(DIR_APP) $(DIR_BUILD) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
83
84 # The build system is searching for code in a certain path
85 mkdir -pv $$(dirname $(DIR_BUILD))
aab6ec60 86 mv -v $(DIR_APP) $(DIR_BUILD)
44cc9a3d
MT
87
88 # Disable style check
89 cd $(DIR_BUILD) && sed -e "/checkstyle.sh/d" -i makefile
90
229a6dff
MT
91 # agent/plugins/inventory/gatherers/application/dataProvider.go:10:78: error: imported and not used: localpackages
92 cd $(DIR_BUILD) && sed -e "/localpackages/d" \
93 -i agent/plugins/inventory/gatherers/application/dataProvider.go
94
44cc9a3d
MT
95 # Build
96 cd $(DIR_BUILD) && make build-linux
97
8bded835
MT
98 # Remove some temporary files (no idea why those are being created)
99 rm -rfv /usr/lib/go/pkg/linux_$(GOARCH)_shared
100
44cc9a3d
MT
101 # Install
102 mkdir -pv /etc/amazon/ssm /usr/bin /var/lib/amazon/ssm
103 cd $(DIR_BUILD) && install -v -m 755 \
104 bin/linux_amd64/amazon-ssm-agent \
6cab8977 105 bin/linux_amd64/ssm-agent-worker \
44cc9a3d
MT
106 bin/linux_amd64/ssm-cli \
107 bin/linux_amd64/ssm-document-worker \
108 bin/linux_amd64/ssm-session-worker \
109 bin/linux_amd64/ssm-session-logger \
110 /usr/bin
111 cd $(DIR_BUILD) && install -v -m 644 \
112 seelog_unix.xml /etc/amazon/ssm/seelog.xml
113 cd $(DIR_BUILD) && install -v -m 644 \
114 amazon-ssm-agent.json.template /etc/amazon/ssm/amazon-ssm-agent.json
115
116 # Install initscript
117 $(call INSTALL_INITSCRIPT,amazon-ssm-agent)
118
119 # Install backup include
120 install -v -m 644 $(DIR_SRC)/config/backup/includes/amazon-ssm-agent \
121 /var/ipfire/backup/addons/includes/amazon-ssm-agent
122
123 @rm -rf $(DIR_APP) $(DIR_BUILD)
124 @$(POSTBUILD)