diff options
author | Job Snijders <job@cvs.openbsd.org> | 2024-02-26 20:37:28 +0000 |
---|---|---|
committer | Job Snijders <job@cvs.openbsd.org> | 2024-02-26 20:37:28 +0000 |
commit | 7d71bafcdf0beba193e593aea2a775f24de297df (patch) | |
tree | 0e7103df03b487e8da3e970cb267591db65ddc1a /usr.sbin | |
parent | 4614c80075f2a7a43d7c3afadf505e1113052c54 (diff) |
Also download SPLs via rsync
OK tb@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rpki-client/rsync.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/rpki-client/rsync.c b/usr.sbin/rpki-client/rsync.c index 808a9207abc..ca838e08fa7 100644 --- a/usr.sbin/rpki-client/rsync.c +++ b/usr.sbin/rpki-client/rsync.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rsync.c,v 1.48 2023/11/24 14:05:47 job Exp $ */ +/* $OpenBSD: rsync.c,v 1.49 2024/02/26 20:37:27 job Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -159,6 +159,7 @@ exec_rsync(const char *prog, const char *bind_addr, char *uri, char *dst, args[i++] = "--include=*.roa"; args[i++] = "--include=*.asa"; args[i++] = "--include=*.tak"; + args[i++] = "--include=*.spl"; args[i++] = "--exclude=*"; if (bind_addr != NULL) { args[i++] = "--address"; |