From 0c42f567e3a5bc703cc3e1c89ae5e1f0122c3f19 Mon Sep 17 00:00:00 2001 From: Jonathan Bauer Date: Thu, 23 Jan 2014 18:31:56 +0100 Subject: [pam] typo fix in WARNING.txt --- remote/modules/pam/data/opt/openslx/scripts/pam_script_auth | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'remote') diff --git a/remote/modules/pam/data/opt/openslx/scripts/pam_script_auth b/remote/modules/pam/data/opt/openslx/scripts/pam_script_auth index 611b565a..62de1f89 100755 --- a/remote/modules/pam/data/opt/openslx/scripts/pam_script_auth +++ b/remote/modules/pam/data/opt/openslx/scripts/pam_script_auth @@ -35,7 +35,7 @@ mount -t tmpfs -o size=100m tmpfs "${TEMP_HOME_DIR}" || \ # create a WARNING.txt for the user cat > "${TEMP_HOME_DIR}/WARNING.txt" << EOF -ATTENTION: This is the non-persistant home directory! +ATTENTION: This is the non-persistent home directory! Files saved here will be lost on shutdown. Your real home is under /home//PERSISTENT. Please save your files there. -- cgit v1.2.3-55-g7522 From 2a1a957dba7e5be0447e2391a6ab37d58230c1a9 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Thu, 23 Jan 2014 19:29:18 +0100 Subject: [smartctl] Create new temp file for each drive to prevent race conditions --- remote/modules/smartctl/data/opt/openslx/scripts/systemd-smartctl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'remote') diff --git a/remote/modules/smartctl/data/opt/openslx/scripts/systemd-smartctl b/remote/modules/smartctl/data/opt/openslx/scripts/systemd-smartctl index 6a798563..1eef0a23 100755 --- a/remote/modules/smartctl/data/opt/openslx/scripts/systemd-smartctl +++ b/remote/modules/smartctl/data/opt/openslx/scripts/systemd-smartctl @@ -5,9 +5,11 @@ . /opt/openslx/config [ -z "$SLX_SMARTCTL_MIN_REALLOC" ] && SLX_SMARTCTL_MIN_REALLOC=0 +FILES= -FILE=$(mktemp) for dev in /dev/sd?; do + FILE=$(mktemp) + FILES="$FILES $FILE" smartctl -H -A -f "brief" "$dev" > "$FILE" || continue # should we report devices where smartctl doesn't work? # parse OVERALL=$(grep -o "test result: .*$" "$FILE" | cut -c 14-) @@ -27,5 +29,5 @@ for dev in /dev/sd?; do fi done sleep 2 # give slxlog a little time, as it's running async -rm -f -- "$FILE" +[ -n "$FILES" ] && rm -f -- $FILES # list, no "" -- cgit v1.2.3-55-g7522