- Adjust inventory file to standardize ansible_user settings for listmonk and jellyfin hosts, ensuring consistent user access across services. - Update .zshrc file to include SSH aliases for new hosts, enhancing accessibility for remote management. These changes streamline host management and improve the usability of SSH connections for infrastructure operations.
31 lines
690 B
YAML
31 lines
690 B
YAML
ansible_become_password: root
|
|
|
|
ansible_python_interpreter: /usr/bin/python3
|
|
|
|
# Shell configuration
|
|
# ansible_user (root) is configured by default
|
|
# Add additional users here if needed:
|
|
shell_additional_users:
|
|
- devuser01
|
|
- devuser02
|
|
- dev
|
|
|
|
# Data Science configuration (datascience role)
|
|
install_conda: true
|
|
conda_install_path: "/root/anaconda3"
|
|
install_jupyter: true
|
|
jupyter_port: 8888
|
|
jupyter_allow_remote: true
|
|
jupyter_bind_all_interfaces: true
|
|
|
|
# R configuration
|
|
install_r: true
|
|
|
|
# Cursor IDE configuration
|
|
install_cursor_extensions: true
|
|
|
|
# Cursor extension groups to enable
|
|
install_python: true # Python development
|
|
|
|
install_docs: true # Markdown/documentation
|