]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - lfs/amazon-ssm-agent
suricata: Change midstream policy to "pass-flow"
[ipfire-2.x.git] / lfs / amazon-ssm-agent
index 25c9ce33b200296e65b7100f8b3d1c9c92aeda10..bc19b30ee5534cde4d40fbf6f3e5669a4a4cf97f 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2019  IPFire Team  <info@ipfire.org>                          #
+# Copyright (C) 2019-2023  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -26,8 +26,8 @@ include Config
 
 SUMMARY    = Amazon Remote System Config Management
 
-VER        = 3.0.356.0
-SUP_ARCH   = x86_64
+VER        = 3.2.582.0
+SUP_ARCH   = aarch64 x86_64
 
 THISAPP    = amazon-ssm-agent-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -35,7 +35,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = amazon-ssm-agent
-PAK_VER    = 6
+PAK_VER    = 8
 
 DEPS       =
 
@@ -51,7 +51,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 5657c0f4400b1c573ad4e9f1c5845537
+$(DL_FILE)_BLAKE2 = df2c6111d0c3e941773c5657b199d414435742b20187788b4b07253f67ba0c54ce42e6c62851fba26635b01226b1e1a3e8b4db1f3b3b983323fe764f12c19ddc
 
 install : $(TARGET)
 
@@ -59,13 +59,13 @@ check : $(patsubst %,$(DIR_CHK)/%,$(objects))
 
 download :$(patsubst %,$(DIR_DL)/%,$(objects))
 
-md5 : $(subst %,%_MD5,$(objects))
+b2 : $(subst %,%_BLAKE2,$(objects))
 
 dist:
        @$(PAK)
 
 ###############################################################################
-# Downloading, checking, md5sum
+# Downloading, checking, b2sum
 ###############################################################################
 
 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
@@ -74,8 +74,8 @@ $(patsubst %,$(DIR_CHK)/%,$(objects)) :
 $(patsubst %,$(DIR_DL)/%,$(objects)) :
        @$(LOAD)
 
-$(subst %,%_MD5,$(objects)) :
-       @$(MD5)
+$(subst %,%_BLAKE2,$(objects)) :
+       @$(B2SUM)
 
 ###############################################################################
 # Installation Details
@@ -96,8 +96,15 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        cd $(DIR_BUILD) && sed -e "/localpackages/d" \
                -i agent/plugins/inventory/gatherers/application/dataProvider.go
 
+       # Cleanup anything shipped
+       cd $(DIR_BUILD) && make clean
+
        # Build
+ifeq "$(BUILD_ARCH)" "aarch64"
+       cd $(DIR_BUILD) && make build-arm64
+else
        cd $(DIR_BUILD) && make build-linux
+endif
 
        # Remove some temporary files (no idea why those are being created)
        rm -rfv /usr/lib/go/pkg/linux_$(GOARCH)_shared
@@ -105,12 +112,12 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        # Install
        mkdir -pv /etc/amazon/ssm /usr/bin /var/lib/amazon/ssm
        cd $(DIR_BUILD) && install -v -m 755 \
-               bin/linux_amd64/amazon-ssm-agent \
-               bin/linux_amd64/ssm-agent-worker \
-               bin/linux_amd64/ssm-cli \
-               bin/linux_amd64/ssm-document-worker \
-               bin/linux_amd64/ssm-session-worker \
-               bin/linux_amd64/ssm-session-logger \
+               bin/linux_$(GOARCH)/amazon-ssm-agent \
+               bin/linux_$(GOARCH)/ssm-agent-worker \
+               bin/linux_$(GOARCH)/ssm-cli \
+               bin/linux_$(GOARCH)/ssm-document-worker \
+               bin/linux_$(GOARCH)/ssm-session-worker \
+               bin/linux_$(GOARCH)/ssm-session-logger \
                /usr/bin
        cd $(DIR_BUILD) && install -v -m 644 \
                seelog_unix.xml /etc/amazon/ssm/seelog.xml