9 lines
162 B
Bash
Executable File
9 lines
162 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
sed -i 's/10.10.10.80/10.5.10.56/g' /etc/fstab
|
|
ssh-copy-id -f le@10.5.10.56
|
|
mount -a
|
|
if [ -f /opt/copycerts.sh ]; then
|
|
/opt/copycerts.sh
|
|
fi
|