diff options
| author | Craig Jennings <c@cjennings.net> | 2026-02-22 23:22:48 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-02-22 23:22:48 -0600 |
| commit | 8ef5c24abd55d3fe7dafe93687be5928e0152c02 (patch) | |
| tree | 333e0f4bf7e32c73ad39ba187be2f30707959f71 /custom/zfssnapshot | |
| parent | b8f4bf5e9caae747345dfab05ef9e5c2b2cb6de6 (diff) | |
| download | archangel-8ef5c24abd55d3fe7dafe93687be5928e0152c02.tar.gz archangel-8ef5c24abd55d3fe7dafe93687be5928e0152c02.zip | |
fix: correct broken shebangs in zfssnapshot and zfsrollback
#!/bin/env bash doesn't exist — changed to #!/usr/bin/env bash.
Diffstat (limited to 'custom/zfssnapshot')
| -rwxr-xr-x | custom/zfssnapshot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/zfssnapshot b/custom/zfssnapshot index 749ea5a..98f8315 100755 --- a/custom/zfssnapshot +++ b/custom/zfssnapshot @@ -1,4 +1,4 @@ -#!/bin/env bash +#!/usr/bin/env bash # Craig Jennings <c@cjennings.net> # Create a ZFS snapshot across all datasets with a dated, descriptive name. |
