From e2fbf6da923604e902bfc99d368bb6702ca8927f Mon Sep 17 00:00:00 2001 From: mwiegand Date: Tue, 13 Jul 2021 02:07:14 +0200 Subject: [PATCH] wip --- bundles/picsort/files/picsort.sh | 60 ++++++++++++++++++++++++++++++++ bundles/systemd-timers/items.py | 5 +++ bundles/zfs/items.py | 9 +++++ bundles/zfs/metadata.py | 30 ++++++++++++++++ 4 files changed, 104 insertions(+) create mode 100644 bundles/picsort/files/picsort.sh diff --git a/bundles/picsort/files/picsort.sh b/bundles/picsort/files/picsort.sh new file mode 100644 index 0000000..e1363f3 --- /dev/null +++ b/bundles/picsort/files/picsort.sh @@ -0,0 +1,60 @@ +#!/bin/bash + +#exit 0 +export LANGUAGE=en_US.UTF-8 +export LANG=en_US.UTF-8 +export LC_ALL=en_US.UTF-8 + +function log { + logger -st nc-picsort "${*:-$(/dev/null + then + log "SKIP: no 'Create Date' in exif ($f)" + continue + fi + SCAN="TRUE" + YEAR=`echo $DATE | cut -d':' -f2 | cut -c 2-` + MONTH=`echo $DATE | cut -d':' -f3` + DAY=`echo $DATE | cut -d':' -f4 | cut -d' ' -f1` + HOUR=`echo $DATE | cut -d':' -f4 | cut -d' ' -f2` + MINUTE=`echo $DATE | cut -d':' -f5` + SECOND=`echo $DATE | cut -d':' -f6` + HASH=`sha256sum "$f" | xxd -r -p | base64 | head -c 3 | tr '/+' '_-'` + EXT=`echo "${f##*.}" | tr '[:upper:]' '[:lower:]'` + if [[ "$EXT" = "cr2" ]] || [[ "$EXT" = "cr3" ]] + then + RAW="raw/" + else + RAW="" + fi + FILE="$DESTINATIONPATH$YEAR-$MONTH/$RAW$YEAR$MONTH$DAY"-"$HOUR$MINUTE$SECOND"_"$HASH"."$EXT" + log "DESTINATION: $FILE" + mkdir -p "$(dirname "$FILE")" + mv -v "$f" "$FILE" +done + +if [ "$SCAN" == "TRUE" ]; then + log "SCANNING..." + # find "$SOURCEPATH/"* -type d -empty -delete >> /var/log/nc-picsort.log # nextcloud app bug when deleting folders + chown -R www-data:www-data "$DESTINATIONPATH" + chmod -R 777 "$DESTINATIONPATH" + sudo -u www-data php /var/www/nextcloud/occ files:scan $USER | log + sudo -u www-data php /var/www/nextcloud/occ preview:generate-all $USER | log +fi + +log "FINISH." diff --git a/bundles/systemd-timers/items.py b/bundles/systemd-timers/items.py index 3012f75..1c050e9 100644 --- a/bundles/systemd-timers/items.py +++ b/bundles/systemd-timers/items.py @@ -1,3 +1,7 @@ +# svc_systemd['cron'] = { +# 'enabled': False, +# } + for name, config in node.metadata.get('systemd-timers').items(): files[f'/etc/systemd/system/{name}.timer'] = { 'content': repo.libs.systemd.generate_unitfile({ @@ -6,6 +10,7 @@ for name, config in node.metadata.get('systemd-timers').items(): }, 'Timer': { 'OnCalendar': config['when'], + 'Persistent': config.get('persistent', False), 'Unit': f'{name}.service', }, 'Install': { diff --git a/bundles/zfs/items.py b/bundles/zfs/items.py index 6f902ed..1d3fe18 100644 --- a/bundles/zfs/items.py +++ b/bundles/zfs/items.py @@ -1,6 +1,15 @@ from json import dumps from bundlewrap.metadata import MetadataJSONEncoder +files = { + '/etc/cron.d/zfsutils-linux': {'delete': True}, + '/etc/cron.d/zfs-auto-snapshot': {'delete': True}, + '/etc/cron.hourly/zfs-auto-snapshot': {'delete': True}, + '/etc/cron.daily/zfs-auto-snapshot': {'delete': True}, + '/etc/cron.weekly/zfs-auto-snapshot': {'delete': True}, + '/etc/cron.monthly/zfs-auto-snapshot': {'delete': True}, +} + actions = { 'modprobe_zfs': { 'command': 'modprobe zfs', diff --git a/bundles/zfs/metadata.py b/bundles/zfs/metadata.py index f134078..43543e0 100644 --- a/bundles/zfs/metadata.py +++ b/bundles/zfs/metadata.py @@ -38,6 +38,36 @@ defaults = { }, }, }, + 'systemd-timers': { + 'zfs-trim': { + 'command': '/usr/lib/zfs-linux/trim', + 'when': 'Sat 00:00', + 'persistent': True, + }, + 'zfs-scrub': { + 'command': '/usr/lib/zfs-linux/scrub', + 'when': 'Sun 00:00', + 'persistent': True, + }, + 'zfs-auto-snapshot-hourly': { + 'command': '/usr/sbin/zfs-auto-snapshot --quiet --syslog --label=hourly --keep=24 //', + 'when': 'hourly', + }, + 'zfs-auto-snapshot-daily': { + 'command': '/usr/sbin/zfs-auto-snapshot --quiet --syslog --label=daily --keep=7 //', + 'when': 'daily', + }, + 'zfs-auto-snapshot-weekly': { + 'command': '/usr/sbin/zfs-auto-snapshot --quiet --syslog --label=weekly --keep=4 //', + 'when': 'weekly', + 'persistent': True, + }, + 'zfs-auto-snapshot-monthly': { + 'command': '/usr/sbin/zfs-auto-snapshot --quiet --syslog --label=monthly --keep=24 //', + 'when': 'monthly', + 'persistent': True, + }, + }, 'telegraf': { 'config': { 'inputs': {