glacier4/src/etc/glacier.conf

44 lines
1.6 KiB
Plaintext

#
# /etc/glacier.conf
#
# Colors and symbols to be used
export red="\033[1;31m"
export green="\033[1;32m"
export yellow="\033[1;33m"
export blue="\033[1;34m"
export reset="\033[m"
export check="\xE2\x9C\x93"
export error="\xE2\x9C\x95"
# Command to be used for downloading packages
# This command will be invoked to download files
export GLACIER_DOWNLOAD_BACKEND="curl -O -J" # -O flag tells curl to output to a file, -J tells curl to get filename from URL
#export GLACIER_DOWNLOAD_BACKEND="wget"
# Services
# WARNING: Services may pose a security risk to your system. Only use services from trusted users.
export GLACIER_ALLOW_SERVICES="false"
# Permitted software licenses
# Glacier will install software licensed under what's listed here. Otherwise, it'll quit.
# Some common licenses are:
# - GNU General Public License version 3 (GPL v3)
# - MIT License (MIT)
# - BSD License (BSD)
# - Apache License (APACHE)
# - Binary redistributable (BIN-REDIST)
# - End-user-license-agreement (EULA)
# If, for any reason, a package uses a custom license, you can simply add it to this list.
export GLACIER_ALLOWED_LICENSES=("GPL v3" "GPL v2" "GPL" "MIT" "BSD" "APACHE")
#export GLACIER_ALLOWED_LICENSES=("GPL v3" "GPL v2" "GPL") # Copyleft ONLY
#export GLACIER_ALLOWED_LICENSES=("GPL v3" "GPL v2" "GPL" "MIT" "BSD" "APACHE" "BIN-REDIST" "EULA")
### DO NOT EDIT ANY SETTINGS BELOW THIS LINE!!! ###
### DO NOT EDIT ANY SETTINGS BELOW THIS LINE!!! ###
### DO NOT EDIT ANY SETTINGS BELOW THIS LINE!!! ###
# Package repository
# WARNING: DO NOT SET OR CHANGE MANUALLY!!!
# This variable is set by `glacier-mkprofile`, changing it will cause issues