forked from openclaw/openclaw-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.yml
More file actions
41 lines (32 loc) · 1.41 KB
/
Copy pathmain.yml
File metadata and controls
41 lines (32 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
# Clawdbot default variables
# Tailscale settings
tailscale_authkey: "" # Optional: set to auto-connect during installation
# Node.js version
nodejs_version: "22.x"
# Clawdbot settings
clawdbot_port: 3000
# Clawdbot config directory
clawdbot_config_dir: "{{ clawdbot_home }}/.clawdbot"
# User settings (will be created as system user)
clawdbot_user: clawdbot
clawdbot_home: /home/clawdbot
# OS-specific settings (set dynamically in tasks)
homebrew_prefix: "{{ '/opt/homebrew' if ansible_os_family == 'Darwin' else '/home/linuxbrew/.linuxbrew' }}"
package_manager: "{{ 'brew' if ansible_os_family == 'Darwin' else 'apt' }}"
# Installation mode: 'release' or 'development'
# release: Install via pnpm install -g clawdbot@latest
# development: Clone repo, build from source, link globally
clawdbot_install_mode: "release"
# Development mode settings (only used when clawdbot_install_mode: development)
clawdbot_repo_url: "https://github.com/clawdbot/clawdbot.git"
clawdbot_repo_branch: "main"
clawdbot_code_dir: "{{ clawdbot_home }}/code"
clawdbot_repo_dir: "{{ clawdbot_code_dir }}/clawdbot"
# SSH keys for clawdbot user
# Add your public SSH keys here to allow SSH access as clawdbot user
# Example:
# clawdbot_ssh_keys:
# - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx user@host"
# - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDxxxxxxxxxxxxxxxxxxxxxxx user@host"
clawdbot_ssh_keys: []