Update file run_onchange_after_05-log-config.tmpl
This commit is contained in:
parent
eb2d496345
commit
108d61a779
1 changed files with 6 additions and 6 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
{{- if (ne .host.distro.family "windows") -}}
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
{{ $homeDirs := (output "find" .host.homeParentFolder "-mindepth" "1" "-maxdepth" "1" "-type" "d") -}}
|
{{ $homeDirs := (output "find" .host.homeParentFolder "-mindepth" "1" "-maxdepth" "1" "-type" "d") -}}
|
||||||
|
@ -10,15 +11,14 @@
|
||||||
{{ includeTemplate "universal/profile" }}
|
{{ includeTemplate "universal/profile" }}
|
||||||
{{ includeTemplate "universal/logg" }}
|
{{ includeTemplate "universal/logg" }}
|
||||||
|
|
||||||
find /home -mindepth 1 -maxdepth 1 -type d | while read HOME_DIR; do
|
find '{{ .host.homeParentFolder }}' -mindepth 1 -maxdepth 1 -type d | while read HOME_DIR; do
|
||||||
USER_FOLDER="$(echo "$HOME_DIR" | sed 's/.*\/\([^\/]*\)$/\1/')"
|
USER_FOLDER="$(echo "$HOME_DIR" | sed 's/.*\/\([^\/]*\)$/\1/')"
|
||||||
if [ -d "$HOME_DIR/.local" ]; then
|
if [ -d "$HOME_DIR/.local" ]; then
|
||||||
if [ ! -d "/var/log/user/$USER_FOLDER" ]; then
|
if [ ! -d "/var/log/user/$USER_FOLDER" ]; then
|
||||||
if [ ! -d "$HOME_DIR/.local/log" ]; then
|
logg info 'Creating `/var/log/user/'"$USER_FOLDER"'`'
|
||||||
mkdir -p "$HOME_DIR/.local/log"
|
sudo mkdir -p "/var/log/user/$USER_FOLDER"
|
||||||
fi
|
|
||||||
sudo ln -s "$HOME_DIR/.local/log" "/var/log/user/$USER_FOLDER"
|
|
||||||
logg success 'Symlinked /var/log/user/'"$USER_FOLDER"' to ~/.local/log'
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
{{ end -}}
|
||||||
|
|
Loading…
Reference in a new issue