12 lines
155 B
Plaintext
12 lines
155 B
Plaintext
|
# -*- mode: snippet -*-
|
||
|
# name: directory
|
||
|
# key: directory
|
||
|
# --
|
||
|
directory "${1:name}" do
|
||
|
owner "root"
|
||
|
group "root"
|
||
|
mode "0755"
|
||
|
|
||
|
action :create
|
||
|
end
|