Ubuntu Pastebin

Paste from rr at Fri, 18 Nov 2016 19:29:03 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#cloud-config
password: passw0rd
chpasswd: { expire: False }
ssh_pwauth: True
ssh-authorized-keys:
- |
  <inline ssh public key here for default user fedora>
users:
  - name: rharper
    lock_passwd: False
    sudo: ALL=(ALL) NOPASSWD:ALL
    shell: /bin/bash
    ssh-authorized-keys:
    - |
      <inline ssh public key here for username: rharper>
Download as text