Last change
on this file was
1751,
checked in by mabarracus, 5 years ago
|
Add Initial Release
|
-
Property svn:executable set to
*
|
File size:
302 bytes
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | set -e |
---|
3 | |
---|
4 | source CONFIG |
---|
5 | source functions |
---|
6 | |
---|
7 | ensure BASE NAME |
---|
8 | |
---|
9 | echo "Running update-kernels ..." |
---|
10 | |
---|
11 | if [ "x${VERBOSE}" = "x0" ]; then |
---|
12 | exec &> /dev/null |
---|
13 | fi |
---|
14 | |
---|
15 | ltsp-chroot --arch ${ARCH} --base ${BASE} -pcma ${NAME} /usr/share/ltsp/update-kernels |
---|
16 | |
---|
17 | if [ "$?" -ne 0 ]; then |
---|
18 | exit 1 |
---|
19 | fi |
---|
20 | |
---|
21 | |
---|
22 | exit 0 |
---|
Note: See
TracBrowser
for help on using the repository browser.