Skip to content
Open
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
3 changes: 2 additions & 1 deletion .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ runs:
lib${{ inputs.fuse }}-dev \
meson \
pkg-config \
uuid-runtime
uuid-runtime \
libcap-dev

echo "::endgroup::"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
sudo apt-get update -qq
sudo apt-get install -qq gcc clang meson
sudo apt-get install -qq libfuse-dev uuid-runtime python3 python3-setuptools
sudo apt-get install -qq libcap-dev libfuse-dev uuid-runtime python3 python3-setuptools

- name: Run coverity
run: |
Expand Down
1 change: 1 addition & 0 deletions lxcfs.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ BuildRequires: libtool
BuildRequires: docbook2X
BuildRequires: doxygen
BuildRequires: fuse-devel
BuildRequires: libcap-devel
Requires: fuse-libs

%description
Expand Down
2 changes: 2 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,8 @@ liblxcfs_sources = files(
'src/syscall_numbers.h',
'src/sysfs_fuse.c',
'src/sysfs_fuse.h',
'src/lxcfsctl_fuse.c',
'src/lxcfsctl_fuse.h',
'src/utils.c',
'src/utils.h')

Expand Down
1 change: 1 addition & 0 deletions src/api_extensions.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ static char *api_extensions[] = {
"cpuview_daemon",
"loadavg_daemon",
"pidfds",
"per_instance_configuration",
};

static size_t nr_api_extensions = sizeof(api_extensions) / sizeof(*api_extensions);
Expand Down
Loading