Merge branch 'master' of gitea.home.pellegq.com:mikepell/eve-ng

This commit is contained in:
root
2022-11-25 18:43:51 +00:00
2 changed files with 8 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
Misc scripts for eve-ng. Misc scripts for eve-ng.
* listimages2 -- this will produce a listing of all images on the server that are currently in use in a lab. Useful for cleaning up old versions of images.
* Filebrowser role * Filebrowser role -- FileBrowser is a web-based upload and download tool. This will allow web-based uploading of images to the eve-ng server as opposed to using SCP/WinSCP. Uploading a folder with an image to the eve-ng server via this interface will automatically run the eve-ng commands (unl_wrapper -a fixpermissions) upon completion.
* apt install ansible sshpass * apt install ansible sshpass
* ansible-playbook -i hosts filebrowser.yaml * ansible-playbook -i hosts filebrowser.yaml -kK

View File

@@ -1,7 +1,7 @@
--- ---
- name: get filebrowser binary - name: get filebrowser binary
get_url: get_url:
url: "https://github.com/filebrowser/filebrowser/releases/download/v2.16.1/linux-amd64-filebrowser.tar.gz" url: "https://github.com/filebrowser/filebrowser/releases/download/v2.22.4/linux-amd64-filebrowser.tar.gz"
dest: "/root/linux-amd64-filebrowser.tar.gz" dest: "/root/linux-amd64-filebrowser.tar.gz"
tags: filebrowser tags: filebrowser
register: filebrowser_download register: filebrowser_download
@@ -43,6 +43,10 @@
with_items: with_items:
- config init -a 0.0.0.0 -p 8899 - config init -a 0.0.0.0 -p 8899
- users add admin admin --perm.admin - users add admin admin --perm.admin
- cmds add "after_copy" "/opt/unetlab/wrappers/unl_wrapper -a fixpermissions"
- cmds add "after_delete" "/opt/unetlab/wrappers/unl_wrapper -a fixpermissions"
- cmds add "after_rename" "/opt/unetlab/wrappers/unl_wrapper -a fixpermissions"
- cmds add "after_save" "/opt/unetlab/wrappers/unl_wrapper -a fixpermissions"
- cmds add "after_upload" "/opt/unetlab/wrappers/unl_wrapper -a fixpermissions" - cmds add "after_upload" "/opt/unetlab/wrappers/unl_wrapper -a fixpermissions"
register: filebrowser_init register: filebrowser_init
when: filebrowser_etc when: filebrowser_etc