]> git.ipfire.org Git - people/mfischer/ipfire-2.x.git/blame - lfs/amazon-ssm-agent
Merge branch 'next'
[people/mfischer/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
f15707c7
RR
27SUMMARY = Amazon Remote System Config Management
28
ff699760 29VER = 3.0.356.0
44cc9a3d
MT
30SUP_ARCH = x86_64
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
6cab8977 38PAK_VER = 6
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
9a7e4d85 54$(DL_FILE)_BLAKE2 = cd30fe1931c02ff5d969ef19152d4f4a8f5883ab6952fa05eb0878526ed02c949afac36c0d363bc37c54594baf9fd96002d30605d9d687e36c8f0e9acb69148b
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
44cc9a3d
MT
99 # Build
100 cd $(DIR_BUILD) && make build-linux
101
8bded835
MT
102 # Remove some temporary files (no idea why those are being created)
103 rm -rfv /usr/lib/go/pkg/linux_$(GOARCH)_shared
104
44cc9a3d
MT
105 # Install
106 mkdir -pv /etc/amazon/ssm /usr/bin /var/lib/amazon/ssm
107 cd $(DIR_BUILD) && install -v -m 755 \
108 bin/linux_amd64/amazon-ssm-agent \
6cab8977 109 bin/linux_amd64/ssm-agent-worker \
44cc9a3d
MT
110 bin/linux_amd64/ssm-cli \
111 bin/linux_amd64/ssm-document-worker \
112 bin/linux_amd64/ssm-session-worker \
113 bin/linux_amd64/ssm-session-logger \
114 /usr/bin
115 cd $(DIR_BUILD) && install -v -m 644 \
116 seelog_unix.xml /etc/amazon/ssm/seelog.xml
117 cd $(DIR_BUILD) && install -v -m 644 \
118 amazon-ssm-agent.json.template /etc/amazon/ssm/amazon-ssm-agent.json
119
120 # Install initscript
f15707c7 121 $(call INSTALL_INITSCRIPTS,$(SERVICES))
44cc9a3d
MT
122
123 # Install backup include
124 install -v -m 644 $(DIR_SRC)/config/backup/includes/amazon-ssm-agent \
125 /var/ipfire/backup/addons/includes/amazon-ssm-agent
126
127 @rm -rf $(DIR_APP) $(DIR_BUILD)
128 @$(POSTBUILD)