should have all the variables needed
This commit is contained in:
@@ -2,20 +2,31 @@
|
||||
# variables used in ansible_role_package
|
||||
---
|
||||
default_flatpak_method: system
|
||||
default_flatpak_remotes:
|
||||
- name: flathub
|
||||
url: https://dl.flathub.org/repo/flathub.flatpakrepo
|
||||
default_flatpak_remote_name: flathub
|
||||
default_install_method: system
|
||||
default_install_prefix: /usr/local
|
||||
debug: false
|
||||
default_store_path: HOME/.cache/ansible_role_package
|
||||
default_path_appimage: /usr/local/appimage
|
||||
default_path_archive: /usr/local/archive
|
||||
default_path_bin: /usr/local/bin
|
||||
default_path_cargo: /usr/local/cargo
|
||||
default_path_go: /usr/local/go
|
||||
default_path_pipx: /usr/local/pipx
|
||||
default_path_git: /usr/local/git
|
||||
packages: [] # list of packages to install
|
||||
extra_packages: [] # list of extra packages to add to pkg_sys
|
||||
|
||||
# Path suffixes for installation types. Prefixed by `default_install_prefix`
|
||||
path_suffix_appimage: appimage
|
||||
path_suffix_archive: archive
|
||||
path_suffix_bin: bin
|
||||
path_suffix_cargo: cargo
|
||||
path_suffix_go: go
|
||||
path_suffix_pipx: pipx
|
||||
path_suffix_source: source
|
||||
directory_appimage: appimage
|
||||
directory_archive: archive
|
||||
directory_bin: bin
|
||||
directory_cargo: cargo
|
||||
directory_go: go
|
||||
directory_pipx: pipx
|
||||
directory_git: git
|
||||
|
||||
default_clean_source: false
|
||||
|
||||
@@ -27,3 +38,18 @@ _pkgconfig_force_rebuild: false
|
||||
# neovim configuration
|
||||
_pkgversion_neovim: master
|
||||
_gitbranch_neovim: master
|
||||
|
||||
# Empty variables that need to exist
|
||||
flatpak_remotes: null # flatpak remotes to add instead of default
|
||||
flatpak_remote_name: null # the source of flatpak installations
|
||||
flatpak_method: null # the method to use when installing flatpak
|
||||
install_method: null # the way to install packages (system, source, etc)
|
||||
install_prefix: null # the path prefix to install files
|
||||
store_path: null # the path to store archives, git repos and appimages, etc.
|
||||
path_appimage: null
|
||||
path_archive: null
|
||||
path_bin: null
|
||||
path_cargo: null
|
||||
path_go: null
|
||||
path_pipx: null
|
||||
use_become: true
|
||||
|
||||
Reference in New Issue
Block a user