Skip to content
Merged
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
13 changes: 13 additions & 0 deletions tests/kola/files/openvswitch-hugetlbfs-groups
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash
## kola:
## exclusive: false
## architectures: "x86_64 ppc64le"
## description: Verify openvswitch user is in the hugetlbfs group.
Comment thread
mike-nguyen marked this conversation as resolved.

set -xeuo pipefail

. $KOLA_EXT_DATA/commonlib.sh

if ! sudo getent group hugetlbfs | grep openvswitch; then
fatal "openvswitch user is not in hugetlbfs group"
fi