summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2014-06-24 13:54:00 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2014-06-24 13:54:00 +0000
commita77af3ec96015b2382ea31020d0a14b482d10a76 (patch)
tree91a2cd7ca6c873e166f096a64490122f58ceb9f8
parentdc8ee9a30e2df2568f2b37e3fb61e4b0bb601b13 (diff)
downloadsystemd-a77af3ec96015b2382ea31020d0a14b482d10a76.tar.gz
Fix tab characters and convert to yamlbaserock/morphbaserock/adamcoldrick/yaml-morphology
-rw-r--r--systemd.morph38
1 files changed, 17 insertions, 21 deletions
diff --git a/systemd.morph b/systemd.morph
index 5151ec2ace..45e0ef9879 100644
--- a/systemd.morph
+++ b/systemd.morph
@@ -1,21 +1,17 @@
-{
- "name": "systemd",
- "kind": "chunk",
- "build-system": "autotools",
- "max-jobs": 1,
- "configure-commands": [
- "sh autogen.sh",
- "./configure --prefix=\"$PREFIX\" --enable-xz --disable-manpages --sysconfdir=/etc --localstatedir=/var --libdir=\"$PREFIX/lib\" --libexecdir=\"$PREFIX/libexec\" --with-rootprefix= --with-rootlibdir=/lib --with-firmware-path=/lib/firmware/updates:/lib/firmware"
- ],
- "install-commands": [
- "make DESTDIR=\"$DESTDIR\" install",
- "mkdir -p \"$DESTDIR\"/sbin",
- "ln -s /lib/systemd/systemd \"$DESTDIR\"/sbin/init",
- "for f in telinit runlevel shutdown poweroff reboot halt; do ln -s /bin/systemctl \"$DESTDIR/sbin/$f\"; done",
- "rm -f \"$DESTDIR/etc/udev/rules.d/80-net-name-slot.rules\"",
- "touch \"$DESTDIR/etc/udev/rules.d/80-net-name-slot.rules\"",
- "sed -e 's|@sushell@|/bin/sh|g' units/debug-shell.service.in >\"$DESTDIR/etc/systemd/system/debug-shell.service\"",
- "sed -r -e '/Options=/s/,?strictatime//' \"$DESTDIR/lib/systemd/system/tmp.mount\" >\"$DESTDIR/etc/systemd/system/tmp.mount\"",
- "touch \"$DESTDIR/etc/machine-id\""
- ]
-}
+name: systemd
+kind: chunk
+build-system: autotools
+max-jobs: 1
+configure-commands:
+- sh autogen.sh
+- ./configure --prefix="$PREFIX" --enable-xz --disable-manpages --sysconfdir=/etc --localstatedir=/var --libdir="$PREFIX/lib" --libexecdir="$PREFIX/libexec" --with-rootprefix= --with-rootlibdir=/lib --with-firmware-path=/lib/firmware/updates:/lib/firmware
+install-commands:
+- make DESTDIR="$DESTDIR" install
+- mkdir -p "$DESTDIR"/sbin
+- ln -s /lib/systemd/systemd "$DESTDIR"/sbin/init
+- for f in telinit runlevel shutdown poweroff reboot halt; do ln -s /bin/systemctl "$DESTDIR/sbin/$f"; done
+- rm -f "$DESTDIR/etc/udev/rules.d/80-net-name-slot.rules"
+- touch "$DESTDIR/etc/udev/rules.d/80-net-name-slot.rules"
+- sed -e 's|@sushell@|/bin/sh|g' units/debug-shell.service.in >"$DESTDIR/etc/systemd/system/debug-shell.service"
+- sed -r -e '/Options=/s/,?strictatime//' "$DESTDIR/lib/systemd/system/tmp.mount" >"$DESTDIR/etc/systemd/system/tmp.mount"
+- touch "$DESTDIR/etc/machine-id"