https://github.com/hobart2967/wsl-setup
This repository is an automation example of my personal WSL Setup to easily destroy and bring up a WSL instance again.
https://github.com/hobart2967/wsl-setup
ansible linux windows wsl
Last synced: 3 months ago
JSON representation
This repository is an automation example of my personal WSL Setup to easily destroy and bring up a WSL instance again.
- Host: GitHub
- URL: https://github.com/hobart2967/wsl-setup
- Owner: Hobart2967
- Created: 2025-03-04T23:59:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-01T21:34:30.000Z (about 1 year ago)
- Last Synced: 2025-05-17T10:09:09.035Z (about 1 year ago)
- Topics: ansible, linux, windows, wsl
- Language: Jinja
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Personal WSL Setup
## Install required tools
```sh
sudo apt install \
python3 \
python3-pip \
ansible-core
#python3 -m pip install --user ansible
```
## Run ansible playbook
```sh
ansible-playbook provision-machine.yml \
--connection=local \
--inventory 127.0.0.1, \
--diff \
--ask-become-pass
```