# Conflicts: # roles/vhosts/gateway_openclaw/templates/openclaw.json.j2 # roles/vhosts/xworkmate_bridge/defaults/main.yml
11 lines
319 B
YAML
11 lines
319 B
YAML
- hosts: localhost
|
|
tasks:
|
|
- name: test
|
|
command: npm -v
|
|
environment:
|
|
PATH: "/Users/shenlan/.local/bin:/Users/shenlan/.npm-global/bin:/Users/shenlan/bin:/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin"
|
|
become: true
|
|
become_user: shenlan
|
|
register: out
|
|
- debug: var=out.stdout
|