mirror of
https://gitlab.crans.org/bde/nk20-scripts
synced 2025-06-30 02:01:07 +02:00
Compare commits
1 Commits
borg_backu
...
a17fda358d
Author | SHA1 | Date | |
---|---|---|---|
a17fda358d |
1
.gitignore
vendored
1
.gitignore
vendored
@ -33,7 +33,6 @@ coverage
|
|||||||
|
|
||||||
# Local data
|
# Local data
|
||||||
secrets.py
|
secrets.py
|
||||||
*/.env_borg
|
|
||||||
*.log
|
*.log
|
||||||
|
|
||||||
# Virtualenv
|
# Virtualenv
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
# Copyright (C) 2018-2021 by BDE ENS Paris-Saclay
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
from datetime import date
|
from datetime import date
|
||||||
@ -10,7 +10,7 @@ from member.models import Club, Membership
|
|||||||
|
|
||||||
class Command(BaseCommand):
|
class Command(BaseCommand):
|
||||||
help = "Get mailing list registrations from the last wei. " \
|
help = "Get mailing list registrations from the last wei. " \
|
||||||
"Usage: manage.py extract_ml_registrations -t {events,art,sport} -l {fr, en} -y {0, 1, ...}. " \
|
"Usage: manage.py extract_ml_registrations -t {events,art,sport} -t {fr, en} -y {0, 1, ...}. " \
|
||||||
"You can write this into a file with a pipe, then paste the document into your mail manager."
|
"You can write this into a file with a pipe, then paste the document into your mail manager."
|
||||||
|
|
||||||
def add_arguments(self, parser):
|
def add_arguments(self, parser):
|
||||||
@ -53,11 +53,8 @@ class Command(BaseCommand):
|
|||||||
return
|
return
|
||||||
|
|
||||||
if options["type"] == "art":
|
if options["type"] == "art":
|
||||||
nb=0
|
|
||||||
for user in User.objects.filter(profile__ml_art_registration=True).all():
|
for user in User.objects.filter(profile__ml_art_registration=True).all():
|
||||||
self.stdout.write(user.email)
|
self.stdout.write(user.email)
|
||||||
nb+=1
|
|
||||||
self.stdout.write(str(nb))
|
|
||||||
return
|
return
|
||||||
|
|
||||||
if options["type"] == "sport":
|
if options["type"] == "sport":
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
BORG_PASSPHRASE='CHANGE_ME'
|
|
||||||
BORG_REPO='USER@SERVER:PATH'
|
|
||||||
BACKUP_FILE='PATH'
|
|
@ -1,14 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
export $(cat .env_borg | xargs)
|
|
||||||
|
|
||||||
# Create temporary backups directory
|
# Create temporary backups directory
|
||||||
mkdir -p /tmp/note-backups
|
[[ -d /tmp/note-backups ]] || mkdir /tmp/note-backups
|
||||||
|
date=$(date +%Y-%m-%d)
|
||||||
# Backup database
|
# Backup database and save it as tar archive
|
||||||
sudo -u postgres pg_dump -F t note_db > $BACKUP_FILE
|
su postgres -c "pg_dump -F t note_db" | tee "/tmp/note-backups/$date.tar" > /dev/null
|
||||||
|
# Compress backup as gzip
|
||||||
# Keep the last 30 backups
|
gzip "/tmp/note-backups/$date.tar"
|
||||||
borg prune --keep-last 30
|
scp "/tmp/note-backups/$date.tar.gz" "club-bde@zamok.crans.org:backup/$date.tar.gz"
|
||||||
|
|
||||||
# Save backup
|
|
||||||
borg create --compression lz4 ::backup-{now} $BACKUP_FILE
|
|
||||||
|
Reference in New Issue
Block a user