You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
222 B
Plaintext
11 lines
222 B
Plaintext
5 years ago
|
dest:={{ global_ssh_configuration_link_name }}
|
||
|
|
||
|
ssh_files:=$(wildcard *.ssh_config)
|
||
|
sshd_files:=$(wildcard *.sshd_config)
|
||
|
|
||
|
${dest}/ssh_config: ${ssh_files}
|
||
|
cat $^ > "$@"
|
||
|
|
||
|
${dest}/sshd_config: ${sshd_files}
|
||
|
cat $^ > "$@"
|