mirror of
https://github.com/hak5/nano-tetra-modules.git
synced 2025-10-29 16:58:09 +00:00
13 lines
235 B
Bash
Executable File
13 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Author: sud0nick
|
|
# Date: Jan 2016
|
|
|
|
if ! cp $1.key /etc/nginx/ssl/; then
|
|
echo "Failed to copy $1.key to /etc/nginx/ssl/";
|
|
fi
|
|
|
|
if ! cp $1.cer /etc/nginx/ssl/; then
|
|
echo "Failed to copy $1.cer to /etc/nginx/ssl/";
|
|
fi
|