mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
81dea0164c
http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg156659.html git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32740 a592a061-630c-0410-9148-cb99ea01b6c8
33 lines
985 B
Bash
Executable File
33 lines
985 B
Bash
Executable File
|
|
#This won't work on an RPM based distro. Easy to fix though.
|
|
sudo apt-get install xclip xvkbd wmctrl xvfb libqt4-dbg icewm #svn pylint
|
|
sudo adduser keytest < /dev/null
|
|
|
|
if ! grep keytest /etc/sudoers
|
|
then
|
|
echo allowing admin users to switch to keytest user
|
|
#echo '%adm ALL =(keytest) NOPASSWD: ALL' >> /etc/sudoers
|
|
fi
|
|
# cat /mnt/jaunty/etc/cups/printers.conf |grep -o '[^ ]*>$' |grep -v '^<'| sed 's/>$//'
|
|
|
|
#we should really handle each printer seperately, but this will work if they are similar
|
|
if grep AllowUser /etc/cups/printers.conf
|
|
then
|
|
echo printer: using whitelisting, nothings needs be done.
|
|
exit
|
|
fi
|
|
|
|
if grep DenyUser /etc/cups/printers.conf
|
|
then
|
|
echo There are already denied users. We do not support this yet, exiting
|
|
exit
|
|
fi
|
|
|
|
#(cd /etc/cups/ppd/ && ls *.ppd) | sed s/.ppd$// | while read L
|
|
cat /etc/cups/printers.conf |grep -o '[^ ]*>$' |grep -v '^<'| sed 's/>$//' | while read L
|
|
do
|
|
echo $L
|
|
echo lpadmin -p $L -u deny:keytest
|
|
lpadmin -p $L -u deny:keytest
|
|
done
|