mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-30 23:38:13 +02:00
18 lines
754 B
YAML
18 lines
754 B
YAML
---
|
|
# 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"
|
|
|
|
# The directory where executable aliases will be installed (ensure it's in your PATH)
|
|
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 }}"
|