Skip to content

Commit

Permalink
fix: util-linux is a required runtime package
Browse files Browse the repository at this point in the history
The snapshot.py code uses `findmnt` at runtime which is provided
by the `util-linux` or `util-linux-core` package.

Signed-off-by: Rich Megginson <[email protected]>
  • Loading branch information
richm committed Feb 15, 2024
1 parent 7b10011 commit d616e2a
Show file tree
Hide file tree
Showing 12 changed files with 5 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions vars/CentOS_7.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: MIT
---
__snapshot_packages: ["lvm2", "util-linux"]
__snapshot_python: /usr/bin/python
1 change: 1 addition & 0 deletions vars/CentOS_8.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: MIT
---
__snapshot_packages: ["lvm2", "util-linux"]
__snapshot_python: /usr/libexec/platform-python
1 change: 1 addition & 0 deletions vars/RedHat_7.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: MIT
---
__snapshot_packages: ["lvm2", "util-linux"]
__snapshot_python: /usr/bin/python
1 change: 1 addition & 0 deletions vars/RedHat_8.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: MIT
---
__snapshot_packages: ["lvm2", "util-linux"]
__snapshot_python: /usr/libexec/platform-python
3 changes: 1 addition & 2 deletions vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# SPDX-License-Identifier: MIT
---

__snapshot_packages: ["lvm2"]
__snapshot_packages: ["lvm2", "util-linux-core"]
__snapshot_services: []
# python to use on managed nodes for snapshot.py
__snapshot_python: /usr/bin/python3
Expand Down

0 comments on commit d616e2a

Please sign in to comment.