mirror of
https://github.com/A2osX/A2osX.git
synced 2024-10-31 23:09:33 +00:00
Added netupdate script
This commit is contained in:
parent
a4f22f87d3
commit
8d350f1f29
18
ADMIN/netupdate
Normal file
18
ADMIN/netupdate
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Update A2osX over the Internet
|
||||||
|
# Bobbi 2021
|
||||||
|
|
||||||
|
if [ $# -ne 1 ]
|
||||||
|
echo usage: update <buildnum>
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
if [ -d ${ROOT}root/updates ]
|
||||||
|
else
|
||||||
|
mkdir ${ROOT}root/updates
|
||||||
|
fi
|
||||||
|
echo Requesting A2osX build $1
|
||||||
|
httpget update.a2osx.net -U update.$1 -o ${ROOT}root/updates/update.$1
|
||||||
|
cd ${ROOT}
|
||||||
|
unpak root/updates/update.$1
|
||||||
|
|
Loading…
Reference in New Issue
Block a user