Skip to content

Commit

Permalink
Enable uname collector on AIX
Browse files Browse the repository at this point in the history
  • Loading branch information
discordianfish committed Sep 7, 2024
1 parent 2f53b9a commit 163e932
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions collector/uname.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build (darwin || freebsd || openbsd || netbsd || linux) && !nouname
// +build darwin freebsd openbsd netbsd linux
//go:build (darwin || freebsd || openbsd || netbsd || linux || aix) && !nouname
// +build darwin freebsd openbsd netbsd linux aix
// +build !nouname

package collector
Expand Down
4 changes: 2 additions & 2 deletions collector/uname_bsd.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build (darwin || freebsd || openbsd || netbsd) && !nouname
// +build darwin freebsd openbsd netbsd
//go:build (darwin || freebsd || openbsd || netbsd || aix) && !nouname
// +build darwin freebsd openbsd netbsd aix
// +build !nouname

package collector
Expand Down

0 comments on commit 163e932

Please sign in to comment.