This video shows step by step demo tutorial as how to create SSM distributor package for crowdstrike on Amazon Linux 2023.
Following files were used:
install.sh
=======
!/bin/bash echo 'Installing Crowdstrike on Amazon Linux...' # Add command to call installer. For example "yum install ./ExamplePackage.rpm" dnf install falcon-sensor-6.58.0-15508.amzn2023.x86_64.rpm
uninstall.sh
=========
#!/bin/bash
echo 'Uninstalling CrowdStrike on Amazon Linux...'
# Add command to call uninstaller. For example "yum remove example-package-name -y"
dnf remove falcon-sensor-6.58.0-15508.amzn2023.x86_64.rpm
manifest.json
==========
{
"schemaVersion": "2.0",
"version": "6.58",
"publisher": "XYZ123567",
"description": "CrowdStrike AntiVirus for Linux",
"packages": {
"amazon": {
"2023": {
"x86_64": {
"file": "falcon658.zip"
}
}
}
},
"files": {
"falcon658.zip": {
"checksums": {
"sha256": ""
}
}
}
}
No comments:
Post a Comment