-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Begin work on a logrotate filesystem (#1034)
### What does this PR do? This commit starts a series of work that is intended to end in our first user-defined generator, a FUSE version of our logrotate file-gen. Although this UDG is bundled in-project I'll puruse an independent interface and build it in a separate container, eventually, adding the mechanism in lading for a UDG to be run. ### Additional Notes I may eventually migrate `logrotate_rs` into a separate crate. For now it was convenient to build it in the `lading` crate.
- Loading branch information
Showing
9 changed files
with
797 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: 'Install FUSE' | ||
description: 'Installs FUSE on the runner OS' | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- run: | | ||
if [ "${{ runner.os }}" == "Linux" ]; then | ||
sudo apt-get update && sudo apt-get install -y fuse3 libfuse3-dev | ||
elif [ "${{ runner.os }}" == "macOS" ]; then | ||
brew install macfuse | ||
fi | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.