Skip to content

Commit

Permalink
Add SPDX-License-Identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
vaeth committed Jul 26, 2020
1 parent ca7ed45 commit 5798d93
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog for squashmount

*squashmount-22.0.1:
Martin Väth <martin at mvath.de>:
- Add SPDX-License-Identifier

*squashmount-22.0:
Martin Väth <martin at mvath.de>:
- Introduce functions to handle rust libraries conveniently:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
(C) Martin Väth (martin at mvath.de)

This project is under the BSD license 2.0 (“3-clause BSD license”).
SPDX-License-Identifier: BSD-3-Clause

Init and management script for mounting rewritable squashfs-compressed data

Expand Down
1 change: 1 addition & 0 deletions bin/squashmount
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env perl
# SPDX-License-Identifier: BSD-3-Clause
BEGIN { require 5.022 }
package Squashmount v22.0.0;

Expand Down
1 change: 1 addition & 0 deletions etc/portage/repo.postsync.d/10-squashmount-gentoo
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/sh
# SPDX-License-Identifier: BSD-3-Clause
# This file remounts the squashmount mount-point "gentoo" after each syncing
# of the "gentoo" repository.
# Do not use this file if you want to use a mount-point named "gentoo" with
Expand Down
1 change: 1 addition & 0 deletions etc/revdep-rebuild/66-squashmount
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: BSD-3-Clause
# The python variant of revdep-rebuild requires full paths and " "
# On the other hand, it accecpts several SEARCH_DIR_MASK entries in one file
SEARCH_DIRS_MASK="/*/*.mount/readonly"
Expand Down
1 change: 1 addition & 0 deletions etc/systemd/system/squashmount.service.d/timeout.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: BSD-3-Clause
[Service]
# Replace the value by a generous upper bound for the maximally
# expected compression time on your system:
Expand Down
1 change: 1 addition & 0 deletions lib/find_cruft/find_cruft.d/50-squashmount.pl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: BSD-3-Clause
# find_cruft should ignore *.mount/{changes,readonly,workdir}
push(@cutre, '[^/]\.mount/(?:changes|readonly|workdir)$');
1;
1 change: 1 addition & 0 deletions lib/squashmount.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/perl (this is only for editors)
# SPDX-License-Identifier: BSD-3-Clause

# To use this file as e.g. /etc/squashmount.pl, copy it to that path and
# remove this comment and the following "fatal()" command from the file
Expand Down
3 changes: 2 additions & 1 deletion openrc/init.d/squashmount
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/sbin/openrc-run
# (C) Martin V\"ath <[email protected]>
# (C) Martin V\"ath <martin at mvath.de>
# SPDX-License-Identifier: BSD-3-Clause

depend() {
need localmount tmpfiles.setup
Expand Down
1 change: 1 addition & 0 deletions systemd/system/squashmount.service
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: BSD-3-Clause
[Unit]
Description=mount/umount all squashmount configured mount points
After=local-fs.target systemd-tmpfiles-setup.service
Expand Down
1 change: 1 addition & 0 deletions tmpfiles.d/squashmount.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: BSD-3-Clause
# Use "d" or "D" depending on whether /run is on a ramdisk or not.
# With "D" make sure to run tmpfiles.d only once and before starting squasmount
d /run/squashmount 0755 root root -
1 change: 1 addition & 0 deletions zsh/_squashmount
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#compdef squashmount
# SPDX-License-Identifier: BSD-3-Clause
local curcontext="$curcontext" state state_descr line
typeset -A opt_args
_arguments -C -s -S : \
Expand Down

0 comments on commit 5798d93

Please sign in to comment.