7 lines
192 B
Bash
7 lines
192 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Chimera Linux
|
||
|
MIRROR=rsync://repo.chimera-linux.org/chimera
|
||
|
TARGET=/srv/dwalin/chimera.netig.net/public
|
||
|
rsync -rlptvSH --delete-delay --delay-updates --progress $MIRROR $TARGET
|