22 lines
490 B
Bash
Executable file
22 lines
490 B
Bash
Executable file
#!/bin/sh
|
|
|
|
## live-config(7) - System Configuration Scripts
|
|
## Copyright (C) 2006-2013 Daniel Baumann <daniel@debian.org>
|
|
##
|
|
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
|
## This is free software, and you are welcome to redistribute it
|
|
## under certain conditions; see COPYING for details.
|
|
|
|
|
|
Update ()
|
|
{
|
|
|
|
if [ -e /lib/live/mount/medium/live/loupiottes-update.txz ]
|
|
then
|
|
tar xJf /lib/live/mount/medium/live/loupiottes-update.txz -C /
|
|
fi
|
|
|
|
return
|
|
}
|
|
|
|
Update
|