- Refactor installer code for better readability and maintainability. - Move `dagu_server.vsh` to `examples/virt/daguserver/dagu_server.vsh`. - Remove unnecessary `println` statements. - Improve error handling in `zinit_installer_actions.v`. - Update `zinit_installer_actions.v` startup type to systemd. - Refactor several factory functions.
python
To get started
import freeflowuniverse.herolib.installers.something.python as python_installer
heroscript:="
!!python.configure name:'test'
password: '1234'
port: 7701
!!python.start name:'test' reset:1
"
python_installer.play(heroscript=heroscript)!
//or we can call the default and do a start with reset
//mut installer:= python_installer.get()!
//installer.start(reset:true)!
example heroscript
!!python.configure
homedir: '/home/user/python'
username: 'admin'
password: 'secretpassword'
title: 'Some Title'
host: 'localhost'
port: 8888