Skip to content

refactor: Improve Snort uninstallation script and remove temporary files #22

refactor: Improve Snort uninstallation script and remove temporary files

refactor: Improve Snort uninstallation script and remove temporary files #22

name: Snort 3 Build and Remove Test
on: [push, pull_request]
jobs:
test-snort:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libpcap-dev
- name: Run installation script
run: |
chmod +x ./build/build.sh
sudo bash ./build/build.sh
- name: Verify Snort installation
run: |
snort -V
sudo systemctl status snort
- name: Run uninstallation script
run: |
chmod +x ./build/remove.sh
sudo bash ./build/remove.sh
- name: Verify Snort uninstallation
run: |
if command -v snort &> /dev/null; then
echo "Snort is still installed"
exit 1
else
echo "Snort has been successfully uninstalled"
fi