This commit is contained in:
2025-07-06 22:09:18 -04:00
parent 71117b2fcd
commit a356b58b12
26 changed files with 801 additions and 417 deletions

View File

@@ -1,41 +0,0 @@
#
# glacier.cfg
# The settings defined in this file will be loaded when Glacier is called.
# For more information on this file, see https://www.everestlinux.org/docs/intro-to-glacier
#
# Services
# Whether Glacier will allow external service files to be called
# WARNING: Services may pose a security risk to your system. Only use services you trust.
GLACIER_ALLOW_SERVICES = false;
# Permitted software licenses
# When installing a package, Glacier will check its license. If said license is listed here,
# it will proceed with the installation. Otherwise, it'll return an error.
# For more information on licenses listed below, see https://www.everestlinux.org/docs/intro-to-glacier
# Some common license names with their designation codes are:
# - GNU General Public License (GPL)
# - MIT License (MIT)
# - BSD License (BSD)
# - Apache license (APACHE)
# - Binary-redistributable software (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.
GLACIER_ALLOWED_LICENSES = [ "GPL", "MIT", "BSD", "APACHE" ];
# Package integrity checking
# WARNING: It is strongly recommended to keep this enabled.
# This ensures all incoming packages are not tampered with.
GLACIER_DO_INT_CHECK = true;
# Verbose logging
# Enable this option to see exta verbosity.
GLACIER_VERBOSE = false;
# Profile-specific settings
# WARNING: The settings below are tied into the system's profile. Changing any of these manually
# will certainly cause breakage.
# If, for any reason, you must change any of these settings, use `glacier-mkprofile`.
# Profile migration may cause breakage. Doing a clean install is the preferred method for changing profiles.
@include "/etc/glacier/profile.cfg";

50
etc/glacier.conf Normal file
View File

@@ -0,0 +1,50 @@
#
# glacier.conf
# The settings defined in this file will be loaded when Glacier is called.
# For more information, see https://www.everestlinux.org/docs/intro-to-glacier
#
# Services
# Whether Glacier will allow external service files to be called
# Services may pose a security risk to your system. Only use services you trust.
# default: false
GLACIER_ALLOW_SERVICES = false
# Permitted software licenses
# When installing a package, Glacier will check its license. If said license is listed
# here, it will proceed with the installation. Otherwise, it'll return an error.
# Some common license names with their designation codes are:
# * GNU General Public License (GPL)
# * MIT License (MIT)
# * BSD License (BSD)
# * Apache License (APACHE)
# * Binary-redistributable and EULA software (NONFREE)
# Packages may use custom licenses. In this case, Glacier will ask permission
# before adding it to this list.
# Default license configuration
GLACIER_ALLOWED_LICENSES = ["GPL", "MIT", "BSD", "APACHE"]
# Including non-free software
#GLACIER_ALLOWED_LICENSES = ["GPL", "MIT", "BSD", "APACHE", "NONFREE"]
# Package Integrity Checking
# Whether Glacier will check a package's expected checksum versus its actual checksum
# It is STRONGLY recommened to keep this setting ON
# default: true
GLACIER_DO_INT_CHECK = true
# Verbose logging
# Glacier will output more verbosely if this setting is enabled.
# default: false
GLACIER_VERBOSE = false
# Profile-specific settings
# These settings are tied into the system's profile. Changing these manually will
# certainly cause breakage.
# If, for any reason, you must change any of these settings, use `glacier-mkprofile`.
# You may need to recompile packages after doing so.
# Profile migration may cause breakage. Doing a clean install is the preferred and
# officially supported method for changing profiles.
@include "profile.conf"

46
etc/glacier.ini Normal file
View File

@@ -0,0 +1,46 @@
#
# glacier.ini
# The settings defined in this file will be loaded when Glacier is executed.
# For more information, see https://www.everestlinux.org/docs/intro-to-glacier
#
# Services
# Whether Glacier will allow external service files to be called
# Services may pose a security risk to your system. Only use services you trust.
# Default: false
[services]
enabled=false
# Permitted software licenses
# When installing a package, Glacier will check its license. If said license is listed
# here, it will proceed with the installation. Otherwise, it'll return an error.
# Some common license names with their designation codes are:
# * GNU General Public License (GPL)
# * MIT License (MIT)
# * BSD License (BSD)
# * Apache License (APACHE)
# * All proprietary licenses (NONFREE)
# Packages may use custon licenses. In this case, Glacier will ask permission
# before adding it to this list.
# Default configuration
[licenses]
allowed={"GPL", "MIT", "BSD", "APACHE"}
# Including non-free software
# [licenses]
# allowed={"GPL", "MIT", "BSD", "APACHE"}
# Package integrity checking
# Whether Glacier will check a package's expected checksum versus its actual checksum.
# It is STRONGLY recommended to keep this setting ON
# Default: true
[integrity-check]
enabled=true
# Verbose logging
# Glacier will output more verbosely if this setting is enabled.
# This setting may assist with debugging.
# Default: false
[verbose]
enabled=false

View File

@@ -1,24 +1,23 @@
#
# profile.cfg
# The settings defined in this file descirbe the system's profile.
# For more information on this file, see https://www.everestlinux.org/docs/intro-to-glacier
# The settings defined in this file describe the system's profile.
# For more information, see https://www.everestlinux.org/docs/intro-to-glacier
#
# Package Repository
# This is the URL which glacier-update-pkgdb will clone to the localdb
GLACIER_REPO = "";
GLACIER_REPO = ""
# System architecture
# The architecture of your system's CPU
GLACIER_ARCH = "";
GLACIER_ARCH = ""
# Target compulation triplet
# Target compilation triplet
# The triplet to be used during compilation, if cross compilation must be invoked
GLACIER_TARGET = "";
GLACIER_TARGET = ""
# System profile
# This variable tells Glacier about your system and which packages can be installed.
# This setting depends on the three above and should not be changed manually.
# If you wixh to migrate system profiles, see https://www.everestlinux.org/docs/musl-or-glibc
GLACIER_SYSTEM_PROFILE = "";
# If you wish to migrate, see https://www.everestlinux.org/docs/musl-or-glibc
GLACIER_SYSTEM_PROFILE = ""

27
etc/profile.ini Normal file
View File

@@ -0,0 +1,27 @@
#
# profile.cfg
# The setting defined in this file describes the system's profile.
# For more information, see https://www.everestlinux.org/docs/intro-to-glacier
#
# Package repository
# This is the URL which glacier-update-pkgdb will clone to the localdb
[repo]
url=""
# System architecture
# The architecture of your system's CPU
[cpu]
arch=""
# Target compilation triplet
# THe triplet to be used during cross compilation, if it must be invoked
[cross-compile]
target=""
# System profile
# This variable tells Glacier about your system and which packages can be installed.
# This setting depends on the three above and should not be changed manually.
# If you wish to migrate, see https://www.everestlinux.org/docs/musl-or-glibc
[system]
profile=""