f62eb125cf
- added a -host_trig command line option that creates a new host instance without blocking user input. - the build/install python scripts will no longer internally build platform specific shell scripts; instead, they will now copy the necessary templates from the /templates folder. - modified both build.py and install.py to include windows deployment support so this app can now be built/installed on windows based host. note: i decided to have it "daemonized" as a scheduled task that runs on system start instead of service because it is simply easier to do it this way and will not involve any 3rd party libraries or apps. - added the src/applink.c file to the source code since it is needed for windows openssl support. - changed over all references of "endl" to "Qt::endl" to avoid depreciation errors/warnings.
15 lines
276 B
Desktop File
15 lines
276 B
Desktop File
[Unit]
|
|
Description=$app_name Host Daemon
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=$app_target
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
TimeoutStopSec=infinity
|
|
ExecStart=/usr/bin/env $app_target -host
|
|
ExecStop=/usr/bin/env $app_target -stop
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |