mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-25 15:45:23 +00:00
Updated info
This commit is contained in:
parent
0408e1d9cd
commit
dccdd48975
2 changed files with 17 additions and 4 deletions
18
README.md
18
README.md
|
@ -3,7 +3,17 @@
|
|||
|
||||
## Features
|
||||
|
||||
* User can change root password in Virtual Machine (Tested only Ubuntu)
|
||||
* User can add SSH public key to root in Instance (Tested only Ubuntu)
|
||||
* User can change root password in Instance (Tested only Ubuntu)
|
||||
|
||||
### Warning!!!
|
||||
|
||||
How to update <code>gstfsd</code> daemon on hypervior:
|
||||
|
||||
```bash
|
||||
wget -O - https://clck.ru/9VMRH | sudo tee -a /usr/local/bin/gstfsd
|
||||
sudo service supervisor restart
|
||||
```
|
||||
|
||||
### Description
|
||||
|
||||
|
@ -46,7 +56,7 @@ password: admin
|
|||
|
||||
### How To Update
|
||||
```bash
|
||||
$ git pull
|
||||
$ python manage.py migrate
|
||||
$ sudo service supervisor restart
|
||||
git pull
|
||||
python manage.py migrate
|
||||
sudo service supervisor restart
|
||||
```
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
#
|
||||
# gstfsd - WebVirtCloud daemon for managing VM's filesystem
|
||||
#
|
||||
|
||||
import SocketServer
|
||||
import json
|
||||
|
|
Loading…
Reference in a new issue