uucpconfig/update.sh

13 lines
166 B
Bash
Raw Normal View History

2019-02-28 16:31:58 +00:00
#!/bin/bash
2019-03-01 20:11:54 +00:00
echo "Updating Git"
2019-02-28 16:31:58 +00:00
cd $HOME/uucp
git pull
2019-03-01 20:11:54 +00:00
echo "Updating SSH"
2019-02-28 16:31:58 +00:00
cp ~/uucp/ssh/authorized_keys ~/.ssh/authorized_keys
2019-03-01 20:11:54 +00:00
chmod 644 ~/.ssh/authorized_keys
2019-02-28 16:31:58 +00:00