From 944991408acfb9ffa37bd8ddb9af402b73b25801 Mon Sep 17 00:00:00 2001 From: Serghey Rodin Date: Sun, 19 Jun 2011 17:36:11 +0300 Subject: [PATCH] replaced cp with mv on cert adding --- bin/v_add_ssl_certificate | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/v_add_ssl_certificate b/bin/v_add_ssl_certificate index bc28fa396..ea028e288 100755 --- a/bin/v_add_ssl_certificate +++ b/bin/v_add_ssl_certificate @@ -42,8 +42,8 @@ is_cert_valid "$V_TMP" #----------------------------------------------------------# # Adding certificate to user dir -cp $V_TMP/$cert.crt $V_USERS/$user/cert/ -cp $V_TMP/$cert.key $V_USERS/$user/cert/ +mv $V_TMP/$cert.crt $V_USERS/$user/cert/ +mv $V_TMP/$cert.key $V_USERS/$user/cert/ #----------------------------------------------------------#