← Back to team overview

curtin-dev team mailing list archive

[Merge] ~cpete/curtin:apt-add-ppa-common-snippet into curtin:master

 

Chris Peterson has proposed merging ~cpete/curtin:apt-add-ppa-common-snippet into curtin:master.

Requested reviews:
  curtin developers (curtin-dev)

For more details, see:
https://code.launchpad.net/~cpete/curtin/+git/curtin/+merge/471552

The subiquity autoinstall reference has an example snippet for adding a PPA using curtin's apt sources configuration: https://github.com/canonical/subiquity/blob/83955d7754a49f8d8785c0ba194afc077e2f661b/doc/reference/autoinstall-reference.rst?plain=1#L472

We should move this to the curtin docs for better visibility.
-- 
Your team curtin developers is requested to review the proposed merge of ~cpete/curtin:apt-add-ppa-common-snippet into curtin:master.
diff --git a/doc/topics/apt_source.rst b/doc/topics/apt_source.rst
index 0fcb359..0b244b6 100644
--- a/doc/topics/apt_source.rst
+++ b/doc/topics/apt_source.rst
@@ -159,7 +159,7 @@ Common snippets
 ~~~~~~~~~~~~~~~
 This is a collection of additional ideas people can use the feature for customizing their to-be-installed system.
 
-* enable proposed on installing
+* Enable proposed on installing:
 
 ::
 
@@ -169,7 +169,17 @@ This is a collection of additional ideas people can use the feature for customiz
        source: |
          deb $MIRROR $RELEASE-proposed main restricted universe multiverse
 
-* Make debug symbols available
+* Add a PPA:
+
+::
+
+  apt:
+    sources:
+      curtin-ppa:
+        source: ppa:curtin-dev/test-archive
+
+
+* Make debug symbols available:
 
 ::
 

Follow ups