Last active
April 14, 2016 20:56
-
-
Save linuxsimba/76842d7a58f2d6ffa840 to your computer and use it in GitHub Desktop.
gcp-cups-connector.conf upstart script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Start Google Print Cups Connector | |
| # Found at github.com/google/cups-connector | |
| description "gcp-cups-connector" | |
| author "Google" | |
| # Start only when cups is up. | |
| start on (filesystem | |
| and (started cups and runlevel [2345])) | |
| # When to stop the service | |
| stop on runlevel [016] | |
| respawn | |
| exec /usr/bin/gcp-cups-connector | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment