diff options
| author | Joey Hess <joeyh@joeyh.name> | 2016-04-26 11:10:35 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2016-04-26 11:10:35 -0400 |
| commit | de99e4b6b45201d6af92eb0571ceaba678830989 (patch) | |
| tree | dee559220ca01331e621da09033b588fc4cfbac3 | |
| parent | 938e97fccd21ed859c1a0378681f7966d6d8e9d0 (diff) | |
comment
| -rw-r--r-- | doc/forum/Formatting_struggle_with_Apt.backportSuite/comment_1_9d4f41976824ef29381bbd2bbb3eaf39._comment | 27 |
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"] +"""]] |
