summaryrefslogtreecommitdiff
path: root/buildstream/plugins/elements/dpkg_build.py
diff options
context:
space:
mode:
authorJonathan Maw <jonathan.maw@codethink.co.uk>2017-07-27 12:03:50 +0100
committerJürg Billeter <j@bitron.ch>2017-07-27 11:53:33 +0000
commit99ad08ae7284109e018932ee57374864717a8e57 (patch)
tree6dc70bdbb81a8700c63f45eef331a15b3ce269b3 /buildstream/plugins/elements/dpkg_build.py
parentbfd822b3232f69ed9df48a20fedf31be7e0986f1 (diff)
downloadbuildstream-jonathan/fix-dpkg-docs.tar.gz
Fix dpkg_build and dpkg_deploy documentation using wrong script namesjonathan/fix-dpkg-docs
When writing the yaml, pre-install and post-install scripts' fields are named "preinst" and "postinst", not "preinstall" and "postinstall"
Diffstat (limited to 'buildstream/plugins/elements/dpkg_build.py')
-rw-r--r--buildstream/plugins/elements/dpkg_build.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildstream/plugins/elements/dpkg_build.py b/buildstream/plugins/elements/dpkg_build.py
index d7e90a242..bd8402314 100644
--- a/buildstream/plugins/elements/dpkg_build.py
+++ b/buildstream/plugins/elements/dpkg_build.py
@@ -88,7 +88,7 @@ e.g.
package-scripts
---------------
-preinstall, postinstall, prerm and postrm scripts may be written to the
+preinst, postinst, prerm and postrm scripts may be written to the
package if they are detected. They are written as raw text. e.g.
.. code:: yaml
@@ -96,11 +96,11 @@ package if they are detected. They are written as raw text. e.g.
public:
package-scripts:
foo:
- preinstall: |
+ preinst: |
#!/usr/bin/bash
/sbin/ldconfig
bar:
- postinstall: |
+ postinst: |
#!/usr/bin/bash
/usr/share/fonts/generate_fonts.sh