Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: cloud_print/virtual_driver/posix/linux_packaging/postinst

Issue 7599018: Code to package Cloud Print Linux and Mac virtual drivers. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Style fix. Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/bin/sh
2 set -e
3 chown root:root /usr/lib/cups/backend/GCP-driver
4 chmod 0700 /usr/lib/cups/backend/GCP-driver
5 chown root:root /usr/share/ppd/GCP
6 chmod 755 /usr/share/ppd/GCP
7 chown root:root /usr/share/ppd/GCP/GCP-driver.ppd
8 chmod 644 /usr/share/ppd/GCP/GCP-driver.ppd
9 invoke-rc.d cups restart
10 lpadmin -p Google-Cloud-Print -E -P /usr/share/ppd/GCP/GCP-driver.ppd \
11 -D "Google Cloud Print" -o printer-is-shared=false -v GCP-driver:/
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698