From 73e61cdfadb10dcdbc2a8117ef82c413a67aeef0 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 30 Mar 2016 16:31:46 -0400 Subject: improve comments --- src/Propellor/Property/Apt/PPA.hs | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'src/Propellor') diff --git a/src/Propellor/Property/Apt/PPA.hs b/src/Propellor/Property/Apt/PPA.hs index 9831ff30..b708fae4 100644 --- a/src/Propellor/Property/Apt/PPA.hs +++ b/src/Propellor/Property/Apt/PPA.hs @@ -1,4 +1,6 @@ --- | This module provides properties software-properties-common. +-- | Maintainer: 2016 Evan Cofsky +-- +-- Personal Package Archives module Propellor.Property.Apt.PPA where import Data.List @@ -9,20 +11,19 @@ import Data.String (IsString(..)) import Propellor.Base import qualified Propellor.Property.Apt as Apt --- | Ensure it's installed in case it's not. It's part of Buntish's defaults so --- one might assume... +-- | Ensure software-properties-common is installed. installed :: Property DebianLike installed = Apt.installed ["software-properties-common"] --- | Personal Package Archives are people's individual package contributions to --- Ubuntu. There's a well-known format for adding them, and this type represents --- that. It's also an instance of 'Show' and 'IsString' so it can work with --- 'OverloadedStrings'. More on PPAs can be found at --- +-- | Personal Package Archives are people's individual package +-- contributions to the Buntish distro. There's a well-known format for +-- representing them, and this type represents that. It's also an instance +-- of 'Show' and 'IsString' so it can work with 'OverloadedStrings'. +-- More on PPAs can be found at data PPA = PPA { -- | The Launchpad account hosting this archive. ppaAccount :: String, - -- | The + -- | The name of the archive. ppaArchive :: String } deriving (Eq, Ord) -- cgit v1.2.3