An open API service indexing awesome lists of open source software.

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.

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
```