2022-07-20 12:04:29 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# dependencies used by the app
|
2022-07-23 17:10:52 +02:00
|
|
|
pkg_dependencies=""
|
|
|
|
extra_pkg_dependencies="nomad"
|
2022-07-21 08:24:29 +02:00
|
|
|
|
2022-07-23 04:57:16 +02:00
|
|
|
server_pkg_dependencies=""
|
|
|
|
|
|
|
|
client_pkg_dependencies=""
|
|
|
|
client_lxc_pkg_dependencies="pkg-config lxc-dev lxc lxc-templates"
|
2022-07-21 08:24:29 +02:00
|
|
|
|
|
|
|
go_version=1.15
|
2022-07-20 12:04:29 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|