Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(729)

Delta Between Two Patch Sets: hooks/install

Issue 6940084: Serve the GUI assets over HTTPS
Left Patch Set: Serve the GUI assets over HTTPS Created 12 years, 4 months ago
Right Patch Set: Serve the GUI assets over HTTPS Created 12 years, 4 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « hooks/config-changed ('k') | hooks/start » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(Both sides are equal)
1 #!/usr/bin/env python2 1 #!/usr/bin/env python2
2 # -*- python -*- 2 # -*- python -*-
3 3
4 from subprocess import ( 4 from subprocess import (
5 CalledProcessError, 5 CalledProcessError,
6 check_call, 6 check_call,
7 ) 7 )
8 8
9 # python-shelltoolbox is installed as a dependency of python-charmhelpers. 9 # python-shelltoolbox is installed as a dependency of python-charmhelpers.
10 check_call(['apt-get', 'install', '-y', 'python-charmhelpers']) 10 check_call(['apt-get', 'install', '-y', 'python-charmhelpers'])
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 if __name__ == '__main__': 53 if __name__ == '__main__':
54 log_entry() 54 log_entry()
55 try: 55 try:
56 main() 56 main()
57 except CalledProcessError as e: 57 except CalledProcessError as e:
58 log('Exception caught:') 58 log('Exception caught:')
59 log(e.output) 59 log(e.output)
60 raise 60 raise
61 finally: 61 finally:
62 log_exit() 62 log_exit()
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b