274291463e
Many of the templates use 600, remove unnecessary permission on these templates to bring them in line with the others. Change-Id: I30fe1b3822b9c7bb6ab98729fc519dc1d603db27
30 lines
848 B
Django/Jinja
30 lines
848 B
Django/Jinja
{
|
|
"command": "/usr/sbin/sshd -D",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/sshd_config",
|
|
"dest": "/etc/ssh/sshd_config",
|
|
"owner": "root",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/ssh_config",
|
|
"dest": "/var/lib/nova/.ssh/config",
|
|
"owner": "nova",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/id_rsa",
|
|
"dest": "/var/lib/nova/.ssh/id_rsa",
|
|
"owner": "nova",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/id_rsa.pub",
|
|
"dest": "/var/lib/nova/.ssh/authorized_keys",
|
|
"owner": "nova",
|
|
"perm": "0600"
|
|
}
|
|
]
|
|
}
|