Skip to content

Commit 9db9758

Browse files
committed
fall back to port installs for Go apps
packages are currently AWOL on pkg server
1 parent f18fbd4 commit 9db9758

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

provision/elasticsearch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ install_elasticsearch()
9797

9898
install_beats()
9999
{
100-
stage_pkg_install beats8
100+
stage_pkg_install beats8 || stage_port_install sysutils/beats8
101101

102102
local _xcfg="$STAGE_MNT/usr/local/etc/beats/metricbeat.modules.d/elasticsearch-xpack.yml"
103103
cp "$STAGE_MNT/usr/local/share/examples/beats/metricbeat.modules.d/elasticsearch-xpack.yml.disabled" "$_xcfg"

provision/grafana.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export JAIL_FSTAB=""
99
install_grafana()
1010
{
1111
tell_status "installing Grafana"
12-
stage_pkg_install grafana || exit
12+
stage_pkg_install grafana || stage_port_install www/grafana || exit
1313
}
1414

1515
configure_grafana()

provision/influxdb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export JAIL_FSTAB=""
99
install_influxdb()
1010
{
1111
tell_status "installing influxdb"
12-
stage_pkg_install influxdb || exit
12+
stage_pkg_install influxdb || stage_port_install databases/influxdb || exit
1313

1414
tell_status "Enable InfluxdDB"
1515
stage_sysrc influxd_enable=YES

0 commit comments

Comments
 (0)