#!/bin/sh

if [ -f /usr/bin/dnf ]
then
    dnf list --installed > $1
else
    exit 200
fi
