Files
herolib/lib/installers/sysadmintools/fungistor
Mahmoud-Emad ecdc8f4a2a feat: Add heroscript serialization/deserialization functions
- Add heroscript_dumps and heroscript_loads functions
- Replace paramsparser with encoderhero import
- Add ulist_get and upload functions to docker installer
- Add ulist_get and upload functions to zola installer
2025-10-13 22:25:18 +03:00
..
...
2025-10-13 11:41:26 +04:00
...
2025-10-13 11:41:26 +04:00

fungistor

To get started



import incubaid.herolib.installers.something.fungistor as fungistor_installer

heroscript:="
!!fungistor.configure name:'test'
    password: '1234'
    port: 7701

!!fungistor.start name:'test' reset:1 
"

fungistor_installer.play(heroscript=heroscript)!

//or we can call the default and do a start with reset
//mut installer:= fungistor_installer.get()!
//installer.start(reset:true)!




example heroscript

!!fungistor.configure
    homedir: '/home/user/fungistor'
    username: 'admin'
    password: 'secretpassword'
    title: 'Some Title'
    host: 'localhost'
    port: 8888