{{- if (ne .host.distro.family "windows") -}} #!/usr/bin/env bash # @file User Log Folders # @brief Creates an empty directory for each user in `/var/log/user` # @description # This script creates an empty directory with each user's name in `/var/log/user`. It initializes the folder in hopes # that we can eventually store all user logs in a single directory alongside the system logs folder. {{ $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 -}}