summaryrefslogtreecommitdiff
path: root/packaging/os/apt_repository.py
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/os/apt_repository.py')
-rw-r--r--packaging/os/apt_repository.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/packaging/os/apt_repository.py b/packaging/os/apt_repository.py
index aedf1cb2..fc33021e 100644
--- a/packaging/os/apt_repository.py
+++ b/packaging/os/apt_repository.py
@@ -85,23 +85,23 @@ requirements:
EXAMPLES = '''
# Add specified repository into sources list.
- apt_repository:
- repo: 'deb http://archive.canonical.com/ubuntu hardy partner'
+ repo: deb http://archive.canonical.com/ubuntu hardy partner
state: present
# Add specified repository into sources list using specified filename.
- apt_repository:
- repo: 'deb http://dl.google.com/linux/chrome/deb/ stable main'
+ repo: deb http://dl.google.com/linux/chrome/deb/ stable main
state: present
filename: 'google-chrome'
# Add source repository into sources list.
- apt_repository:
- repo: 'deb-src http://archive.canonical.com/ubuntu hardy partner'
+ repo: deb-src http://archive.canonical.com/ubuntu hardy partner
state: present
# Remove specified repository from sources list.
- apt_repository:
- repo: 'deb http://archive.canonical.com/ubuntu hardy partner'
+ repo: deb http://archive.canonical.com/ubuntu hardy partner
state: absent
# Add nginx stable repository from PPA and install its signing key.