diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2021-06-15 16:45:20 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2021-06-15 16:45:20 +0200 |
commit | b9601cf46a75b373f6b6b902d7ac2be38ab2ffe8 (patch) | |
tree | daa3ef109d6f0b1dd7884622a2b2fba8c10e32cb /borg-family-0.1/debian | |
parent | 1ada10f44e2baf28823156c006c82a076c52f530 (diff) | |
download | borg-family-b9601cf46a75b373f6b6b902d7ac2be38ab2ffe8.tar.gz borg-family-b9601cf46a75b373f6b6b902d7ac2be38ab2ffe8.tar.bz2 borg-family-b9601cf46a75b373f6b6b902d7ac2be38ab2ffe8.zip |
borg-family_0.2-1
Diffstat (limited to 'borg-family-0.1/debian')
-rw-r--r-- | borg-family-0.1/debian/borg-family.config | 4 | ||||
-rw-r--r-- | borg-family-0.1/debian/borg-family.docs | 1 | ||||
-rw-r--r-- | borg-family-0.1/debian/borg-family.examples | 1 | ||||
-rw-r--r-- | borg-family-0.1/debian/borg-family.init | 17 | ||||
-rw-r--r-- | borg-family-0.1/debian/borg-family.manpages | 3 | ||||
-rw-r--r-- | borg-family-0.1/debian/borg-family.postinst | 15 | ||||
-rw-r--r-- | borg-family-0.1/debian/borg-family.postrm | 10 | ||||
-rw-r--r-- | borg-family-0.1/debian/borg-family.service | 14 | ||||
-rw-r--r-- | borg-family-0.1/debian/borg-family.substvars | 2 | ||||
-rw-r--r-- | borg-family-0.1/debian/borg-family.templates | 8 | ||||
-rw-r--r-- | borg-family-0.1/debian/borg-family.timer | 10 | ||||
-rw-r--r-- | borg-family-0.1/debian/changelog | 5 | ||||
-rw-r--r-- | borg-family-0.1/debian/compat | 1 | ||||
-rw-r--r-- | borg-family-0.1/debian/control | 14 | ||||
-rw-r--r-- | borg-family-0.1/debian/debhelper-build-stamp | 1 | ||||
-rw-r--r-- | borg-family-0.1/debian/files | 2 | ||||
-rwxr-xr-x | borg-family-0.1/debian/rules | 3 | ||||
-rw-r--r-- | borg-family-0.1/debian/source/format | 1 |
18 files changed, 0 insertions, 112 deletions
diff --git a/borg-family-0.1/debian/borg-family.config b/borg-family-0.1/debian/borg-family.config deleted file mode 100644 index d0e4f26..0000000 --- a/borg-family-0.1/debian/borg-family.config +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -e -. /usr/share/debconf/confmodule -db_input critical borg-family/borg-repo || true -db_go diff --git a/borg-family-0.1/debian/borg-family.docs b/borg-family-0.1/debian/borg-family.docs deleted file mode 100644 index e845566..0000000 --- a/borg-family-0.1/debian/borg-family.docs +++ /dev/null @@ -1 +0,0 @@ -README diff --git a/borg-family-0.1/debian/borg-family.examples b/borg-family-0.1/debian/borg-family.examples deleted file mode 100644 index e002ac5..0000000 --- a/borg-family-0.1/debian/borg-family.examples +++ /dev/null @@ -1 +0,0 @@ -doc/examples/envvars diff --git a/borg-family-0.1/debian/borg-family.init b/borg-family-0.1/debian/borg-family.init deleted file mode 100644 index 72e9267..0000000 --- a/borg-family-0.1/debian/borg-family.init +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -### BEGIN INIT INFO -# Provides: borg-family -# Required-Start: $network $local_fs $syslog -# Required-Stop: $local_fs $syslog -# Default-Start: 2 3 4 5 -# Default-Stop: 0 1 6 -# Short-Description: borg-family backup scripts -# Description: Makes Borg running periodically to backup computers to a remote server -### END INIT INFO - -. /lib/lsb/init-functions - -case "$1" in - start|stop|restart|reload|status|force-reload) - log_action_msg "This is a stub, you shuld run bfrun from cron if not using systemd borg-family.timer" ;; -esac diff --git a/borg-family-0.1/debian/borg-family.manpages b/borg-family-0.1/debian/borg-family.manpages deleted file mode 100644 index 160e2fa..0000000 --- a/borg-family-0.1/debian/borg-family.manpages +++ /dev/null @@ -1,3 +0,0 @@ -doc/man/bfenv.1 -doc/man/bfrun.1 -doc/man/bfwhat.1 diff --git a/borg-family-0.1/debian/borg-family.postinst b/borg-family-0.1/debian/borg-family.postinst deleted file mode 100644 index 5bf8c69..0000000 --- a/borg-family-0.1/debian/borg-family.postinst +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -set -e - -EVFILE=/etc/borg-family/envvars - -if [ "$1" = configure ]; then - . /usr/share/debconf/confmodule - unset BORG_REPO - db_get borg-family/borg-repo && BORG_REPO="$RET" - db_stop - [ -f "$EVFILE" ] || install -m 644 /usr/share/doc/borg-family/examples/envvars "$EVFILE" - [ -n "$BORG_REPO" ] && sed --in-place -e 's#^export BORG_REPO=.*$#export BORG_REPO="'$BORG_REPO'"#' -- "$EVFILE" -fi - -#DEBHELPER# diff --git a/borg-family-0.1/debian/borg-family.postrm b/borg-family-0.1/debian/borg-family.postrm deleted file mode 100644 index 5ae54c6..0000000 --- a/borg-family-0.1/debian/borg-family.postrm +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -set -e - -if [ "$1" = "purge" ]; then - . /usr/share/debconf/confmodule - db_purge - rm -f /etc/borg-family/envvars -fi - -#DEBHELPER# diff --git a/borg-family-0.1/debian/borg-family.service b/borg-family-0.1/debian/borg-family.service deleted file mode 100644 index f6aab42..0000000 --- a/borg-family-0.1/debian/borg-family.service +++ /dev/null @@ -1,14 +0,0 @@ -[Unit] -Description=Makes Borg running periodically to backup computers to a remote server -Wants=default.target network-online.target -ConditionACPower=true - -[Service] -ExecStart=/usr/bin/systemd-inhibit --why="Prevent interrupting backup" /usr/sbin/bfrun -Restart=no -# Lower CPU and I/O priority. -Nice=19 -CPUSchedulingPolicy=batch -IOSchedulingClass=best-effort -IOSchedulingPriority=7 -IOWeight=100 diff --git a/borg-family-0.1/debian/borg-family.substvars b/borg-family-0.1/debian/borg-family.substvars deleted file mode 100644 index a595723..0000000 --- a/borg-family-0.1/debian/borg-family.substvars +++ /dev/null @@ -1,2 +0,0 @@ -misc:Depends=debconf (>= 0.5) | debconf-2.0 -misc:Pre-Depends= diff --git a/borg-family-0.1/debian/borg-family.templates b/borg-family-0.1/debian/borg-family.templates deleted file mode 100644 index b17ce60..0000000 --- a/borg-family-0.1/debian/borg-family.templates +++ /dev/null @@ -1,8 +0,0 @@ -Template: borg-family/borg-repo -Type: string -Description: Borg repository URL: - Please set the backup destination. - . - It will be exported to BORG_REPO by bfrun for borg commands. - Could be 'ssh://user@host:port/abspath/to/repo', or 'user@host:relpath/to/repo', see man borg. - diff --git a/borg-family-0.1/debian/borg-family.timer b/borg-family-0.1/debian/borg-family.timer deleted file mode 100644 index 14a848a..0000000 --- a/borg-family-0.1/debian/borg-family.timer +++ /dev/null @@ -1,10 +0,0 @@ -[Unit] -Description=Run borg-family backup - -[Timer] -OnCalendar=daily -Persistent=true - -[Install] -WantedBy=timers.target - diff --git a/borg-family-0.1/debian/changelog b/borg-family-0.1/debian/changelog deleted file mode 100644 index e2329ed..0000000 --- a/borg-family-0.1/debian/changelog +++ /dev/null @@ -1,5 +0,0 @@ -borg-family (0.1-1) UNRELEASED; urgency=medium - - * Initial release. - - -- Ludovic Pouzenc <ludovic@pouzenc.fr> Sat, 28 Nov 2020 17:07:53 +0100 diff --git a/borg-family-0.1/debian/compat b/borg-family-0.1/debian/compat deleted file mode 100644 index f599e28..0000000 --- a/borg-family-0.1/debian/compat +++ /dev/null @@ -1 +0,0 @@ -10 diff --git a/borg-family-0.1/debian/control b/borg-family-0.1/debian/control deleted file mode 100644 index 3ca323f..0000000 --- a/borg-family-0.1/debian/control +++ /dev/null @@ -1,14 +0,0 @@ -Source: borg-family -Maintainer: Ludovic Pouzenc <ludovic@pouzenc.fr> -Section: admin -Priority: optional -Standards-Version: 4.3.0 -Build-Depends: debhelper (>= 10) - -Package: borg-family -Architecture: all -Depends: bash (>= 2.0), borgbackup (>= 1.0), coreutils (>= 4.0), debconf, gawk, openssh-client, pwgen (>= 2.0), sed (>= 4.0), util-linux (>= 2.0), ${misc:Depends} -Description: Makes Borg running periodically to backup computers to a remote server - borg-family ease the backup automation configuration around Borg - in small environnements, like backuping some computers to a remote - family server. diff --git a/borg-family-0.1/debian/debhelper-build-stamp b/borg-family-0.1/debian/debhelper-build-stamp deleted file mode 100644 index e8dd97e..0000000 --- a/borg-family-0.1/debian/debhelper-build-stamp +++ /dev/null @@ -1 +0,0 @@ -borg-family diff --git a/borg-family-0.1/debian/files b/borg-family-0.1/debian/files deleted file mode 100644 index 225c048..0000000 --- a/borg-family-0.1/debian/files +++ /dev/null @@ -1,2 +0,0 @@ -borg-family_0.1-1_all.deb admin optional -borg-family_0.1-1_amd64.buildinfo admin optional diff --git a/borg-family-0.1/debian/rules b/borg-family-0.1/debian/rules deleted file mode 100755 index cbe925d..0000000 --- a/borg-family-0.1/debian/rules +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/make -f -%: - dh $@ diff --git a/borg-family-0.1/debian/source/format b/borg-family-0.1/debian/source/format deleted file mode 100644 index 163aaf8..0000000 --- a/borg-family-0.1/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (quilt) |