mirror of
https://github.com/trailofbits/algo.git
synced 2025-08-02 10:53:01 +02:00
update troubleshooting doc for local installation per discussion with David Meyers on gitter
This commit is contained in:
parent
3f86ae0713
commit
4c9141890a
1 changed files with 3 additions and 2 deletions
|
@ -283,10 +283,11 @@ TASK [wireguard : Generate public keys] ****************************************
|
||||||
|
|
||||||
fatal: [localhost]: FAILED! => {"msg": "An unhandled exception occurred while running the lookup plugin 'file'. Error was a <class 'ansible.errors.AnsibleError'>, original message: could not locate file in lookup: configs/xxx.xxx.xxx.xxx/wireguard//private/dan"}
|
fatal: [localhost]: FAILED! => {"msg": "An unhandled exception occurred while running the lookup plugin 'file'. Error was a <class 'ansible.errors.AnsibleError'>, original message: could not locate file in lookup: configs/xxx.xxx.xxx.xxx/wireguard//private/dan"}
|
||||||
```
|
```
|
||||||
This error is usually hit when using the local install option on a server that isn't Ubuntu 18.04 or later. You should upgrade your server to Ubuntu 18.04 or later. If this doesn't work, try removing `*.lock` files at /etc/wireguard/ as follows:
|
This error is usually hit when using the local install option on a server that isn't Ubuntu 18.04 or later. You should upgrade your server to Ubuntu 18.04 or later. If this doesn't work, remove the files in /etc/wireguard and the configs directories as follows:
|
||||||
|
|
||||||
```ssh
|
```ssh
|
||||||
sudo rm -rf /etc/wireguard/*.lock
|
sudo rm -rf /etc/wireguard/*
|
||||||
|
rm -rf configs/*
|
||||||
```
|
```
|
||||||
Then immediately re-run `./algo`.
|
Then immediately re-run `./algo`.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue