16 lines
605 B
Plaintext
16 lines
605 B
Plaintext
# Recommended Options for Packaging, this example applies to RHEL/CentOS
|
|
|
|
# Disable Upgrades
|
|
allow_upgrades="no"
|
|
|
|
# Disable Update Checks
|
|
allow_update_checks="no"
|
|
|
|
# Provided two variables that package and port maintainers can use in order to
|
|
# prevent the script from removing itself with the '-r' flag
|
|
# If the script was installed via a package manager like yum, apt, pkg, etc.
|
|
# The script will instead provide feedback to the user about how to uninstall the package.
|
|
pkg_mgr="yum" #the package manager name
|
|
pkg_rm="yum erase clamav-unofficial-sigs" #the package manager command to remove the script
|
|
|