~cloud-init-dev/cloud-init/trunk

« back to all changes in this revision

Viewing changes to systemd/cloud-init-local.service

  • Committer: Scott Moser
  • Date: 2016-08-10 15:06:15 UTC
  • Revision ID: smoser@ubuntu.com-20160810150615-ma2fv107w3suy1ma
README: Mention move of revision control to git.

cloud-init development has moved its revision control to git.
It is available at 
  https://code.launchpad.net/cloud-init

Clone with 
  git clone https://git.launchpad.net/cloud-init
or
  git clone git+ssh://git.launchpad.net/cloud-init

For more information see
  https://git.launchpad.net/cloud-init/tree/HACKING.rst

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
[Unit]
2
 
Description=Initial cloud-init job (pre-networking)
3
 
DefaultDependencies=no
4
 
Wants=local-fs.target
5
 
Wants=network-pre.target
6
 
After=local-fs.target
7
 
Conflicts=shutdown.target
8
 
Before=network-pre.target
9
 
Before=shutdown.target
10
 
 
11
 
[Service]
12
 
Type=oneshot
13
 
ExecStart=/usr/bin/cloud-init init --local
14
 
ExecStart=/bin/touch /run/cloud-init/network-config-ready
15
 
RemainAfterExit=yes
16
 
TimeoutSec=0
17
 
 
18
 
# Output needs to appear in instance console output
19
 
StandardOutput=journal+console
20
 
 
21
 
[Install]
22
 
WantedBy=cloud-init.target