summaryrefslogtreecommitdiff
path: root/cloud-init.morph
blob: ce646b54dc65a775c25589a1856016dddc7dd924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: cloud-init
kind: chunk
build-system: python-distutils
post-install-commands:
  - mkdir -p "$DESTDIR"/lib/systemd/system
  - cp systemd/* "$DESTDIR"/lib/systemd/system/
  - mkdir -p "$DESTDIR"/etc/systemd/system/
  - >
    for S in $(cd systemd; ls *.service); do
       ln -s /lib/systemd/system/$S "$DESTDIR"/etc/systemd/system/$S;
    done
  - mkdir -p "$DESTDIR"/lib/systemd/system/multi-user.target.wants/
  - >
    for S in $(cd systemd; ls *.service); do
       ln -s /lib/systemd/system/$S "$DESTDIR"/lib/systemd/system/multi-user.target.wants/$S;
    done