Added Playbook for Schuelerlaptops for testing
This commit is contained in:
parent
de3ba99106
commit
6ee40cdec0
9 changed files with 301 additions and 21 deletions
14
qgm_create_bgimages.sh
Executable file
14
qgm_create_bgimages.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ "x$1" == x ]; then
|
||||
echo "Das erste Argument muss das neue Hintergrundbild sein"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -f $1 ]; then
|
||||
echo "Die Datei \"$1\" existiert nicht."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
convert $1 -colorspace Gray ./roles/lmn_qgm/files/qgm_background.jpg
|
||||
convert $1 -quality 77 ./roles/lmn_qgm/files/qgm_background_wallpaper.jpg
|
Loading…
Add table
Add a link
Reference in a new issue