summaryrefslogtreecommitdiff
path: root/doc/forum/Formatting_struggle_with_Apt.backportSuite/comment_1_9d4f41976824ef29381bbd2bbb3eaf39._comment
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2016-06-10 15:21:47 +0900
committerSean Whitton <spwhitton@spwhitton.name>2016-06-10 15:21:47 +0900
commit19b3eb8ff90092748d8718d751d5fd6865b6e7cd (patch)
tree466321e4bf273a01439adda82de94f070b1c329d /doc/forum/Formatting_struggle_with_Apt.backportSuite/comment_1_9d4f41976824ef29381bbd2bbb3eaf39._comment
parentde50503e4dbdea853e899f01e8828cf4f454dd57 (diff)
parent2cdc8a2eb9a3cf87c3f5ac09ee8c00931a666997 (diff)
Record propellor (3.0.5-1) in archive suite sid
Diffstat (limited to 'doc/forum/Formatting_struggle_with_Apt.backportSuite/comment_1_9d4f41976824ef29381bbd2bbb3eaf39._comment')
-rw-r--r--doc/forum/Formatting_struggle_with_Apt.backportSuite/comment_1_9d4f41976824ef29381bbd2bbb3eaf39._comment27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/forum/Formatting_struggle_with_Apt.backportSuite/comment_1_9d4f41976824ef29381bbd2bbb3eaf39._comment b/doc/forum/Formatting_struggle_with_Apt.backportSuite/comment_1_9d4f41976824ef29381bbd2bbb3eaf39._comment
new file mode 100644
index 00000000..99dccf58
--- /dev/null
+++ b/doc/forum/Formatting_struggle_with_Apt.backportSuite/comment_1_9d4f41976824ef29381bbd2bbb3eaf39._comment
@@ -0,0 +1,27 @@
+[[!comment format=mdwn
+ username="joey"
+ subject="""comment 1"""
+ date="2016-04-26T15:02:03Z"
+ content="""
+Well, `backportSuite` takes a `DebianSuite` data type, and `Stable`
+is a constructor for it. So, you don't quote the data constructor,
+but only quote the release name string passed to it:
+
+ (Stable "jessie")
+
+But, `backportSuite` is not a property, so you can't add it to a host
+with `&` anyway.
+
+If you're trying to set up a sources.list that can install backports, the
+way to do it is:
+
+ & osDebian (Stable "jessie") "amd64"
+ & Apt.stdSourcesList
+
+The standard sources.list configuration includes backports when
+the `DebianSuite` part of the host's OS is a stable release.
+
+There's also a property to install packages from backports:
+
+ & Apt.installedBackport ["somepackage"]
+"""]]