diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2024-02-15 17:16:45 +0100 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2024-02-15 17:16:45 +0100 |
commit | 2c44c7e152cd3201919dd70d6979d99b0660b9e9 (patch) | |
tree | bd9a84aa4f5cc55e5ce01a109b746f161b807a22 /hbak/src | |
parent | bda42ce29655d1ed8454af0870af53ecc9aa23dc (diff) |
switch from MIT to AGPL-3.0
Diffstat (limited to 'hbak/src')
-rw-r--r-- | hbak/src/error.rs | 16 | ||||
-rw-r--r-- | hbak/src/main.rs | 16 |
2 files changed, 32 insertions, 0 deletions
diff --git a/hbak/src/error.rs b/hbak/src/error.rs index c5dd6d1..2518150 100644 --- a/hbak/src/error.rs +++ b/hbak/src/error.rs @@ -1,3 +1,19 @@ +// hbak is a tool for distributed incremental btrfs snapshotting. +// Copyright (C) 2024 Himbeer <himbeerserverde@gmail.com> +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see <https://www.gnu.org/licenses/>. + use std::{io, net}; use thiserror::Error; diff --git a/hbak/src/main.rs b/hbak/src/main.rs index ce22b56..052be20 100644 --- a/hbak/src/main.rs +++ b/hbak/src/main.rs @@ -1,3 +1,19 @@ +// hbak is a tool for distributed incremental btrfs snapshotting. +// Copyright (C) 2024 Himbeer <himbeerserverde@gmail.com> +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see <https://www.gnu.org/licenses/>. + mod error; use error::*; |