Replace first dot
This commit is contained in:
parent
6763125aa9
commit
ac0a7afe0e
|
@ -234,7 +234,7 @@ function restore_local_htmly {
|
||||||
if [ -d /var/www/${HTMLY_DOMAIN_NAME}/htdocs ]; then
|
if [ -d /var/www/${HTMLY_DOMAIN_NAME}/htdocs ]; then
|
||||||
rm -rf /var/www/${HTMLY_DOMAIN_NAME}/htdocs
|
rm -rf /var/www/${HTMLY_DOMAIN_NAME}/htdocs
|
||||||
fi
|
fi
|
||||||
temp_source_dir=$(find ${temp_restore_dir} -name htdocs | sed 's/\.//g')
|
temp_source_dir=$(find ${temp_restore_dir} -name htdocs | sed '0,/RE/s/\.//')
|
||||||
cp -r ${temp_source_dir} /var/www/${HTMLY_DOMAIN_NAME}/
|
cp -r ${temp_source_dir} /var/www/${HTMLY_DOMAIN_NAME}/
|
||||||
if [ ! "$?" = "0" ]; then
|
if [ ! "$?" = "0" ]; then
|
||||||
set_user_permissions
|
set_user_permissions
|
||||||
|
@ -294,7 +294,7 @@ function restore_remote_htmly {
|
||||||
if [ -d /var/www/${HTMLY_DOMAIN_NAME}/htdocs ]; then
|
if [ -d /var/www/${HTMLY_DOMAIN_NAME}/htdocs ]; then
|
||||||
rm -rf /var/www/${HTMLY_DOMAIN_NAME}/htdocs
|
rm -rf /var/www/${HTMLY_DOMAIN_NAME}/htdocs
|
||||||
fi
|
fi
|
||||||
temp_source_dir=$(find ${temp_restore_dir} -name htdocs | sed 's/\.//g')
|
temp_source_dir=$(find ${temp_restore_dir} -name htdocs | sed '0,/RE/s/\.//')
|
||||||
cp -r ${temp_source_dir} /var/www/${HTMLY_DOMAIN_NAME}/
|
cp -r ${temp_source_dir} /var/www/${HTMLY_DOMAIN_NAME}/
|
||||||
if [ ! "$?" = "0" ]; then
|
if [ ! "$?" = "0" ]; then
|
||||||
exit 593
|
exit 593
|
||||||
|
|
Loading…
Reference in New Issue