summaryrefslogtreecommitdiff
path: root/bin/locmaint
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-02-09 22:25:04 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-02-09 22:25:32 -0700
commit4efe25e4f5fe5b7030254f096dc70abcfe6b8ce3 (patch)
tree93cafef5ce573610a2e1bba77c88827c77e2a92a /bin/locmaint
parentda0a5a15b92c70f7ea7fecb55d0a4b53cd5beb17 (diff)
downloaddotfiles-4efe25e4f5fe5b7030254f096dc70abcfe6b8ce3.tar.gz
locmaint: fix finding athena gcrypt repos
Diffstat (limited to 'bin/locmaint')
-rwxr-xr-xbin/locmaint2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/locmaint b/bin/locmaint
index d509e290..98aa980c 100755
--- a/bin/locmaint
+++ b/bin/locmaint
@@ -378,7 +378,7 @@ sub do_coldbkup {
# athena gcrypt repos
mkdir catfile($gitbk, "athena_gcrypt");
my @gcrypt_repos
- = map { m|^/srv/gcrypt/(.+)$|; { uri => "athenag:$1", dir => "$1" } }
+ = map { m|^local/gcrypt/(.+)$|; { uri => "athenag:$1", dir => "$1" } }
`ssh athena find local/gcrypt -name "*.git" -type d`;
chomp @gcrypt_repos;
backup_repo($_->{uri}, catfile($gitbk, "athena_gcrypt", $_->{dir}))