~smoser/ubuntu/maverick/cloud-init/lp942961-apt-pipeline

« back to all changes in this revision

Viewing changes to doc/examples/cloud-config.txt

  • Committer: Scott Moser
  • Date: 2010-06-18 19:48:13 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: smoser@ubuntu.com-20100618194813-1hk4vuin8w2zxypj
Tags: upstream-0.5.12
ImportĀ upstreamĀ versionĀ 0.5.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
205
205
 - config-puppet
206
206
 - config-ssh
207
207
 - disable-ec2-metadata
 
208
 
 
209
# ssh_import_id: [ user1, user2 ]
 
210
# ssh_import_id will feed the list in that variable to
 
211
#  ssh-import-lp-id, so that public keys stored in launchpad
 
212
#  can easily be imported into the configured user
 
213
# This can be a single string ('smoser') or a list ([smoser, kirkland])
 
214
ssh_import_id: [smoser]
 
215
 
 
216
# Provide debconf answers
 
217
#
 
218
# See debconf-set-selections man page.
 
219
#
 
220
# Default: none
 
221
 
222
debconf_selections: |     # Need to perserve newlines
 
223
        # Force debconf priority to critical.
 
224
        debconf debconf/priority select critical
 
225
 
 
226
        # Override default frontend to readline, but allow user to select.
 
227
        debconf debconf/frontend select readline
 
228
        debconf debconf/frontend seen false
 
229
 
 
230
# manage byobu defaults
 
231
# byobu_by_default: ('user'|'system')
 
232
#   'user' will set byobu 'launch-by-default' for the default user
 
233
#   'system' will enable launch-by-default for for all users
 
234
byobu_by_default: system
 
235