2018-04-30 18:57:01 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#remaster lib
|
2018-05-07 01:49:19 +02:00
|
|
|
[ -d "<LIBDIR>"] || { echo "LIBDIR not exist"; exit 1; }
|
2018-04-30 18:57:01 +02:00
|
|
|
|
|
|
|
#check_dependency
|
|
|
|
# -> 0 | -> 16
|
|
|
|
function check_dependency() {
|
|
|
|
for packet in squashfs-tools xorriso wget sed sendemail; do
|
|
|
|
[ "`dpkg -l $packet 2>&1`" == "dpkg-query: Kein Paket gefunden, das auf $packet passt" ] && {
|
|
|
|
echo "### ERROR ### Packet $packet not installed"
|
|
|
|
return 16
|
|
|
|
}
|
|
|
|
done
|
|
|
|
return 0
|
|
|
|
}
|