Skip to content
This repository was archived by the owner on Aug 19, 2019. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ This is the Stackdriver metadata agent.

1. Install runtime dependencies:

$ sudo apt-get install libyajl2 libboost-program-options1.55.0 \
libboost-system1.55.0 libboost-thread1.55.0
$ sudo apt-get install libyajl2 libboost-filesystem1.55.0 \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is for the health check stuff I suppose?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, the health check introduced in #85 actually used non-inlined functions from libboost_filesystem, so it linked the library.

libboost-program-options1.55.0 libboost-system1.55.0 \
libboost-thread1.55.0

2. Install build dependencies:

Expand All @@ -21,7 +22,7 @@ This is the Stackdriver metadata agent.

1. Install runtime dependencies:

$ sudo apt-get install libssl1.0.0 libyajl2 \
$ sudo apt-get install libssl1.0.0 libyajl2 libboost-filesystem1.58.0 \
libboost-program-options1.58.0 libboost-system1.58.0 \
libboost-thread1.58.0

Expand All @@ -37,7 +38,7 @@ This is the Stackdriver metadata agent.

1. Install runtime dependencies:

$ sudo apt-get install libssl1.0.2 libyajl2 \
$ sudo apt-get install libssl1.0.2 libyajl2 libboost-filesystem1.62.0 \
libboost-program-options1.62.0 libboost-system1.62.0 \
libboost-thread1.62.0

Expand Down
2 changes: 1 addition & 1 deletion pkg/deb/debian/control.base
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Build-Depends: g++, cmake, dpkg-dev, libyajl-dev (>= 2.0), libssl-dev, libboost1

Package: stackdriver-metadata
Architecture: amd64
Depends: libyajl2, libboost-program-options1.55.0 libboost-system1.55.0, libboost-thread1.55.0
Depends: libyajl2, libboost-filesystem1.55.0, libboost-program-options1.55.0, libboost-system1.55.0, libboost-thread1.55.0
Description: Stackdriver metadata collection daemon
The Stackdriver metadata daemon collects resource metadata and
sends it to the Stackdriver service.
2 changes: 1 addition & 1 deletion pkg/deb/debian/control.xenial
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Build-Depends: g++, cmake, dpkg-dev, libyajl-dev (>= 2.0), libssl-dev, libboost1

Package: stackdriver-metadata
Architecture: amd64
Depends: libssl1.0.0, libyajl2, libboost-program-options1.58.0, libboost-system1.58.0, libboost-thread1.58.0
Depends: libssl1.0.0, libyajl2, libboost-filesystem1.58.0, libboost-program-options1.58.0, libboost-system1.58.0, libboost-thread1.58.0
Description: Stackdriver metadata collection daemon
The Stackdriver metadata daemon collects resource metadata and
sends it to the Stackdriver service.