24 lines
765 B
Cheetah
24 lines
765 B
Cheetah
{{- if (ne .host.distro.family "windows") -}}
|
|
#!/usr/bin/env bash
|
|
|
|
{{ $homeDirs := (output "find" .host.homeParentFolder "-mindepth" "1" "-maxdepth" "1" "-type" "d") -}}
|
|
{{- range $homeDir := splitList "\n" $homeDirs -}}
|
|
{{- if ne $homeDir "" -}}
|
|
# home dir: {{ $homeDir }}
|
|
{{ end -}}
|
|
{{- end }}
|
|
|
|
{{ includeTemplate "universal/profile" }}
|
|
{{ includeTemplate "universal/logg" }}
|
|
|
|
find '{{ .host.homeParentFolder }}' -mindepth 1 -maxdepth 1 -type d | while read HOME_DIR; do
|
|
USER_FOLDER="$(echo "$HOME_DIR" | sed 's/.*\/\([^\/]*\)$/\1/')"
|
|
if [ -d "$HOME_DIR/.local" ]; then
|
|
if [ ! -d "/var/log/user/$USER_FOLDER" ]; then
|
|
logg info 'Creating `/var/log/user/'"$USER_FOLDER"'`'
|
|
sudo mkdir -p "/var/log/user/$USER_FOLDER"
|
|
fi
|
|
fi
|
|
done
|
|
|
|
{{ end -}}
|