Skip to content

Commit

Permalink
chore: setup: package seccomp filter
Browse files Browse the repository at this point in the history
Add seccomp.json to setup mrack package so it is included on pkg install.

Signed-off-by: Alexander Bokovoy <[email protected]>
  • Loading branch information
abbra authored and dav-pascual committed Oct 16, 2024
1 parent 1265245 commit 2ebd729
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

MRACK_CONF = "mrack.conf"
PROV_CONF = "provisioning-config.yaml"
SECCOMP_JSON = "seccomp.json"

setup(
name="mrack",
Expand All @@ -52,7 +53,9 @@
install_requires=reqs,
scripts=["scripts/mrack"],
package_data={
"mrack": [f"data/{datafile}" for datafile in [MRACK_CONF, PROV_CONF]]
"mrack": [
f"data/{datafile}" for datafile in [MRACK_CONF, PROV_CONF, SECCOMP_JSON]
]
},
extras_require={
"krb-owner": ["gssapi"],
Expand Down

0 comments on commit 2ebd729

Please sign in to comment.