Use dedicated users to run services

This commit is contained in:
2018-11-10 11:34:16 +01:00
parent 516d4899b4
commit 7d7f4ccfc2
7 changed files with 49 additions and 23 deletions

View File

@ -1,4 +1,13 @@
#!/bin/bash
fdroid update -c --rename-apks --clean
fdroid update --rename-apks --clean
set -eo pipefail
EVENT=$1
DIR=$2
FILE=$3
if [ -z "$FILE" ] || [[ "$FILE" == *.apk ]]; then
fdroid update -c --rename-apks --clean --use-date-from-apk
fdroid update --rename-apks --clean --use-date-from-apk
fi