~nuclearbob/charms/trusty/qlbr/dev

« back to all changes in this revision

Viewing changes to hooks/hooks.py

  • Committer: Max Brustkern
  • Date: 2014-09-30 13:30:58 UTC
  • Revision ID: max@canonical.com-20140930133058-zrp2ie1pzwab2i56
Fixed adduser and updated description for base64

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
    wg = config['wsgi_group']
116
116
    qu = config['qlbr_user']
117
117
    qg = config['qlbr_group']
118
 
    host.add_user(wu)
 
118
    host.adduser(wu)
119
119
    host.add_user_to_group(wu, wg)
120
 
    host.add_user(qu)
 
120
    host.adduser(qu)
121
121
    host.add_user_to_group(qu, qg)
122
122
 
123
123
    for ppa in config['ppas'].split():