Update 2 files

- /home/.chezmoiscripts/universal/run_onchange_after_05-log-config.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_05-log-config.sh.tmpl
This commit is contained in:
Brian Zalewski 2023-04-11 21:29:49 +00:00
parent ad0f04630b
commit 781a726ab9

View file

@ -1,5 +1,10 @@
{{- if (ne .host.distro.family "windows") -}} {{- if (ne .host.distro.family "windows") -}}
#!/usr/bin/env bash #!/usr/bin/env bash
# @file `/var/log/user` Folder
# @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") -}} {{ $homeDirs := (output "find" .host.homeParentFolder "-mindepth" "1" "-maxdepth" "1" "-type" "d") -}}
{{- range $homeDir := splitList "\n" $homeDirs -}} {{- range $homeDir := splitList "\n" $homeDirs -}}