Optimized pkgmgr variables and removed 'Ensure main.py is executable' because it should be preset by repositories itself

This commit is contained in:
2025-08-29 10:53:36 +02:00
parent 983287a84a
commit 3a79d9d630
3 changed files with 18 additions and 24 deletions

View File

@@ -2,16 +2,16 @@
# Variables for Kevin's Package Manager installation
# The Git repository URL for Kevin's Package Manager
pkgmgr_repo_url: "https://github.com/kevinveenbirkenbach/package-manager.git"
# Directory which contains all Repositories managed by Kevin's Package Manager
repositories_directory: "/opt/Repositories/"
# The directory where the repository will be cloned
pkgmgr_install_path: "{{repositories_directory}}github.com/kevinveenbirkenbach/package-manager"
# File containing the configuration
pkgmgr_config_path: "{{pkgmgr_install_path}}/config/config.yaml"
PKGMGR_REPO_URL: "https://github.com/kevinveenbirkenbach/package-manager.git"
# The directory where executable aliases will be installed (ensure it's in your PATH)
binaries_directory: "/usr/local/bin"
PKGMGR_BINARIES_DIR: "/usr/local/bin"
# Directory which contains all Repositories managed by Kevin's Package Manager
PKGMGR_REPOSITORIES_DIR: "/opt/Repositories/"
# The directory where the repository will be cloned
PKGMGR_INSTALL_PATH: "{{ [ PKGMGR_REPOSITORIES_DIR, 'github.com/kevinveenbirkenbach/package-manager' ] | path_join }}"
# File containing the configuration
PKGMGR_CONFIG_PATH: "{{ [ PKGMGR_INSTALL_PATH, 'config/config.yaml' ] | path_join }}"