mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-12-13 01:36:43 +00:00
8 lines
101 B
Bash
8 lines
101 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if [[ ! -f /root/sync.sh ]]; then
|
||
|
|
cp /etc/sync.sh /root/sync.sh
|
||
|
|
fi
|
||
|
|
|
||
|
|
bash /root/sync.sh
|