diff moveLogs.sh @ 18:64eee582fec1 default tip

add move logs while restart
author Vadim Filimonov <fffilimonov@yandex.ru>
date Wed, 19 Jun 2024 11:45:10 +0300
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/moveLogs.sh	Wed Jun 19 11:45:10 2024 +0300
@@ -0,0 +1,10 @@
+#!/bin/bash -e
+
+. common.sh;
+
+mv $hgaccesslog ${hgaccesslog}".0";
+
+reposLogsDir=${ROOTPWD}"/logs/repos";
+ls $reposLogsDir | while read filename; do
+  mv $reposLogsDir/$filename $reposLogsDir/${filename}".0";
+done;