Scripts directory

main2
Bob Mottram 2019-10-03 10:55:11 +01:00
parent dbb40ec1b8
commit 364d204564
5 changed files with 11 additions and 0 deletions

4
scripts/devrepo 100755
View File

@ -0,0 +1,4 @@
#!/bin/bash
cd /etc/epicyon || exit 0
git remote set-url origin https://code.freedombone.net/bashrc/epicyon.git
git checkout main

7
scripts/errors~ 100755
View File

@ -0,0 +1,7 @@
#!/bin/bash
journalctl -u epicyon | grep 'File "' > .errors.txt
if [ ! -f .errors.txt ]; then
echo 'No errors'
else
cat .errors.txt
fi