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:
parent
ad0f04630b
commit
781a726ab9
1 changed files with 5 additions and 0 deletions
|
@ -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 -}}
|
Loading…
Reference in a new issue