system changes
This commit is contained in:
parent
27a2332034
commit
a5b4410383
1 changed files with 6 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
{
|
||||
echo "Usage: $0 [command] where command is one of"
|
||||
echo "help - show this message and exit"
|
||||
echo "backup - push the configuration to the remote"
|
||||
echo "update - update the system"
|
||||
echo "install - install the system configurations"
|
||||
}
|
||||
|
@ -22,6 +23,11 @@
|
|||
cd "$dir" || exit 1
|
||||
exit 0
|
||||
;;
|
||||
backup)
|
||||
git push
|
||||
cd "$dir" || exit 1
|
||||
exit 0
|
||||
;;
|
||||
update)
|
||||
make update
|
||||
cd "$dir" || exit 1
|
||||
|
|
Loading…
Add table
Reference in a new issue