set owner of i3 config files
This commit is contained in:
parent
902b7677cb
commit
d43dcbb099
1 changed files with 6 additions and 0 deletions
|
@ -5,6 +5,8 @@ class i3 {
|
||||||
path => '/home/jake/.config/i3/config',
|
path => '/home/jake/.config/i3/config',
|
||||||
ensure => file,
|
ensure => file,
|
||||||
mode => "0644",
|
mode => "0644",
|
||||||
|
owner => "jake",
|
||||||
|
group => "users",
|
||||||
source => 'puppet:///modules/i3/i3.conf'
|
source => 'puppet:///modules/i3/i3.conf'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,6 +14,8 @@ class i3 {
|
||||||
path => '/home/jake/.config/i3/status.toml',
|
path => '/home/jake/.config/i3/status.toml',
|
||||||
ensure => file,
|
ensure => file,
|
||||||
mode => "0644",
|
mode => "0644",
|
||||||
|
owner => "jake",
|
||||||
|
group => "users",
|
||||||
source => 'puppet:///modules/i3/i3status-rust.toml'
|
source => 'puppet:///modules/i3/i3status-rust.toml'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,6 +23,8 @@ class i3 {
|
||||||
path => '/home/jake/.config/i3status/config',
|
path => '/home/jake/.config/i3status/config',
|
||||||
ensure => file,
|
ensure => file,
|
||||||
mode => "0644",
|
mode => "0644",
|
||||||
|
owner => "jake",
|
||||||
|
group => "users",
|
||||||
source => 'puppet:///modules/i3/i3status.conf'
|
source => 'puppet:///modules/i3/i3status.conf'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue