]> git.ipfire.org Git - people/mfischer/ipfire-2.x.git/blobdiff - lfs/amazon-ssm-agent
python3-setuptools: Fix rootfile
[people/mfischer/ipfire-2.x.git] / lfs / amazon-ssm-agent
index 25c9ce33b200296e65b7100f8b3d1c9c92aeda10..451dfa9cf77122e6e445998b738c3a0fda409d3a 100644 (file)
@@ -27,7 +27,7 @@ include Config
 SUMMARY    = Amazon Remote System Config Management
 
 VER        = 3.0.356.0
-SUP_ARCH   = x86_64
+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    = 7
 
 DEPS       =
 
@@ -51,7 +51,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 5657c0f4400b1c573ad4e9f1c5845537
+$(DL_FILE)_BLAKE2 = cd30fe1931c02ff5d969ef19152d4f4a8f5883ab6952fa05eb0878526ed02c949afac36c0d363bc37c54594baf9fd96002d30605d9d687e36c8f0e9acb69148b
 
 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