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.
ansible/roles/common/templates/ssh_config.makefile

11 lines
238 B
Makefile

dest:={{ global_ssh_configuration_link_name }}
ssh_files:=$(sort $(wildcard *.ssh_config))
sshd_files:=$(sort $(wildcard *.sshd_config))
${dest}/ssh_config: ${ssh_files}
cat $^ > "$@"
${dest}/sshd_config: ${sshd_files}
cat $^ > "$@"