Tiny cleanup (#397)
* use license file from gnu.org They changed http link to https. File downloaded from: https://www.gnu.org/licenses/lgpl-3.0.txt * invoke bash using /usr/bin/env * fix shellcheck warnings * fix spelling * trim excess whitespace
This commit is contained in:
parent
ca6c14d84b
commit
fdaa9270a0
@ -59,4 +59,3 @@ CheckOptions:
|
|||||||
- key: modernize-use-nullptr.NullMacros
|
- key: modernize-use-nullptr.NullMacros
|
||||||
value: 'NULL'
|
value: 'NULL'
|
||||||
...
|
...
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ runs:
|
|||||||
./test/blockstore/blockstore-test ${{inputs.gtest_args}}
|
./test/blockstore/blockstore-test ${{inputs.gtest_args}}
|
||||||
./test/blobstore/blobstore-test ${{inputs.gtest_args}}
|
./test/blobstore/blobstore-test ${{inputs.gtest_args}}
|
||||||
./test/cryfs/cryfs-test ${{inputs.gtest_args}}
|
./test/cryfs/cryfs-test ${{inputs.gtest_args}}
|
||||||
|
|
||||||
# TODO Also run on macOS once fixed
|
# TODO Also run on macOS once fixed
|
||||||
if [[ "${{runner.os}}" == "macOS" ]]; then
|
if [[ "${{runner.os}}" == "macOS" ]]; then
|
||||||
echo Skipping some tests because they are not fixed for macOS yet
|
echo Skipping some tests because they are not fixed for macOS yet
|
||||||
|
2
.github/workflows/main.yaml
vendored
2
.github/workflows/main.yaml
vendored
@ -403,7 +403,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
gtest_args: ${{matrix.gtest_args}}
|
gtest_args: ${{matrix.gtest_args}}
|
||||||
extra_env_vars: ${{matrix.extra_env_vars_for_test}}
|
extra_env_vars: ${{matrix.extra_env_vars_for_test}}
|
||||||
|
|
||||||
windows:
|
windows:
|
||||||
name: CI (Windows)
|
name: CI (Windows)
|
||||||
strategy:
|
strategy:
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
GNU LESSER GENERAL PUBLIC LICENSE
|
GNU LESSER GENERAL PUBLIC LICENSE
|
||||||
Version 3, 29 June 2007
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
of this license document, but changing it is not allowed.
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
@ -13,9 +13,9 @@ This only works for Ubuntu 17.04 and later, and Debian Stretch and later.
|
|||||||
You can also use CryFS on older versions of these distributions by following the **Building from source** instructions below.
|
You can also use CryFS on older versions of these distributions by following the **Building from source** instructions below.
|
||||||
|
|
||||||
sudo apt install cryfs
|
sudo apt install cryfs
|
||||||
|
|
||||||
The following should work on Arch and Arch-based distros:
|
The following should work on Arch and Arch-based distros:
|
||||||
|
|
||||||
sudo pacman -S cryfs
|
sudo pacman -S cryfs
|
||||||
|
|
||||||
Additionally, the following would work for any Linux distro with the Nix package manager:
|
Additionally, the following would work for any Linux distro with the Nix package manager:
|
||||||
@ -53,7 +53,7 @@ CryFS has experimental Windows support since the 0.10 release series. To install
|
|||||||
|
|
||||||
GUI
|
GUI
|
||||||
===
|
===
|
||||||
Theres some GUI applications with CryFS support. You usually have to install the GUI **and** also CryFS itself for it to work.
|
There are some GUI applications with CryFS support. You usually have to install the GUI **and** also CryFS itself for it to work.
|
||||||
- [SiriKali](https://mhogomchungu.github.io/sirikali/)
|
- [SiriKali](https://mhogomchungu.github.io/sirikali/)
|
||||||
- [Plasma Vault](https://www.kde.org/announcements/plasma-5.11.0.php) in KDE Plasma >= 5.11
|
- [Plasma Vault](https://www.kde.org/announcements/plasma-5.11.0.php) in KDE Plasma >= 5.11
|
||||||
|
|
||||||
|
10
archive.sh
10
archive.sh
@ -1,10 +1,10 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
TAG=$1
|
TAG=$1
|
||||||
GPGHOMEDIR=$2
|
GPGHOMEDIR=$2
|
||||||
|
|
||||||
git archive --format=tgz "$1" > cryfs-$1.tar.gz
|
git archive --format=tgz "$1" > "cryfs-$1.tar.gz"
|
||||||
gpg --homedir "$GPGHOMEDIR" --armor --detach-sign cryfs-$1.tar.gz
|
gpg --homedir "$GPGHOMEDIR" --armor --detach-sign "cryfs-$1.tar.gz"
|
||||||
|
|
||||||
git archive --format=tar "$1" | xz -9 > cryfs-$1.tar.xz
|
git archive --format=tar "$1" | xz -9 > "cryfs-$1.tar.xz"
|
||||||
gpg --homedir "$GPGHOMEDIR" --armor --detach-sign cryfs-$1.tar.xz
|
gpg --homedir "$GPGHOMEDIR" --armor --detach-sign "cryfs-$1.tar.xz"
|
||||||
|
@ -219,7 +219,7 @@ Unmount automatically after \fIarg\fR minutes of inactivity.
|
|||||||
Pass through options to the FUSE filesystem driver.
|
Pass through options to the FUSE filesystem driver.
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
For example:
|
For example:
|
||||||
.TP
|
.TP
|
||||||
\fB\-o\fR \fIallow_other\fR
|
\fB\-o\fR \fIallow_other\fR
|
||||||
This option overrides the security measure restricting file
|
This option overrides the security measure restricting file
|
||||||
|
Loading…
Reference in New Issue
Block a user