Unquote urls in YAML - packaging (#5793)
This commit is contained in:
parent
e49667d94c
commit
8ae7d2dcc4
6 changed files with 12 additions and 12 deletions
|
@ -152,17 +152,17 @@ EXAMPLES = '''
|
||||||
|
|
||||||
# Install (MyApp) using one of the remote protocols (bzr+,hg+,git+,svn+). You do not have to supply '-e' option in extra_args.
|
# Install (MyApp) using one of the remote protocols (bzr+,hg+,git+,svn+). You do not have to supply '-e' option in extra_args.
|
||||||
- pip:
|
- pip:
|
||||||
name: 'svn+http://myrepo/svn/MyApp#'
|
name: svn+http://myrepo/svn/MyApp#
|
||||||
egg: MyApp'
|
egg: MyApp'
|
||||||
|
|
||||||
# Install MyApp using one of the remote protocols (bzr+,hg+,git+) in a non editable way.
|
# Install MyApp using one of the remote protocols (bzr+,hg+,git+) in a non editable way.
|
||||||
- pip:
|
- pip:
|
||||||
name: 'git+http://myrepo/app/MyApp'
|
name: git+http://myrepo/app/MyApp
|
||||||
editable: false
|
editable: false
|
||||||
|
|
||||||
# Install (MyApp) from local tarball
|
# Install (MyApp) from local tarball
|
||||||
- pip:
|
- pip:
|
||||||
name: 'file:///path/to/MyApp.tar.gz'
|
name: file:///path/to/MyApp.tar.gz
|
||||||
|
|
||||||
# Install (Bottle) into the specified (virtualenv), inheriting none of the globally installed modules
|
# Install (Bottle) into the specified (virtualenv), inheriting none of the globally installed modules
|
||||||
- pip:
|
- pip:
|
||||||
|
@ -193,7 +193,7 @@ EXAMPLES = '''
|
||||||
# Install specified python requirements and custom Index URL.
|
# Install specified python requirements and custom Index URL.
|
||||||
- pip:
|
- pip:
|
||||||
requirements: /my_app/requirements.txt
|
requirements: /my_app/requirements.txt
|
||||||
extra_args: '-i https://example.com/pypi/simple'
|
extra_args: -i https://example.com/pypi/simple
|
||||||
|
|
||||||
# Install (Bottle) for Python 3.3 specifically,using the 'pip-3.3' executable.
|
# Install (Bottle) for Python 3.3 specifically,using the 'pip-3.3' executable.
|
||||||
- pip:
|
- pip:
|
||||||
|
|
|
@ -85,23 +85,23 @@ requirements:
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Add specified repository into sources list.
|
# Add specified repository into sources list.
|
||||||
- apt_repository:
|
- apt_repository:
|
||||||
repo: 'deb http://archive.canonical.com/ubuntu hardy partner'
|
repo: deb http://archive.canonical.com/ubuntu hardy partner
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
# Add specified repository into sources list using specified filename.
|
# Add specified repository into sources list using specified filename.
|
||||||
- apt_repository:
|
- 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
|
state: present
|
||||||
filename: 'google-chrome'
|
filename: 'google-chrome'
|
||||||
|
|
||||||
# Add source repository into sources list.
|
# Add source repository into sources list.
|
||||||
- apt_repository:
|
- apt_repository:
|
||||||
repo: 'deb-src http://archive.canonical.com/ubuntu hardy partner'
|
repo: deb-src http://archive.canonical.com/ubuntu hardy partner
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
# Remove specified repository from sources list.
|
# Remove specified repository from sources list.
|
||||||
- apt_repository:
|
- apt_repository:
|
||||||
repo: 'deb http://archive.canonical.com/ubuntu hardy partner'
|
repo: deb http://archive.canonical.com/ubuntu hardy partner
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
# Add nginx stable repository from PPA and install its signing key.
|
# Add nginx stable repository from PPA and install its signing key.
|
||||||
|
|
|
@ -63,7 +63,7 @@ EXAMPLES = '''
|
||||||
- rhn_channel:
|
- rhn_channel:
|
||||||
name: rhel-x86_64-server-v2vwin-6
|
name: rhel-x86_64-server-v2vwin-6
|
||||||
sysname: server01
|
sysname: server01
|
||||||
url: 'https://rhn.redhat.com/rpc/api'
|
url: https://rhn.redhat.com/rpc/api
|
||||||
user: rhnuser
|
user: rhnuser
|
||||||
password: guessme
|
password: guessme
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -112,7 +112,7 @@ EXAMPLES = '''
|
||||||
state: present
|
state: present
|
||||||
username: joe_user
|
username: joe_user
|
||||||
password: somepass'
|
password: somepass'
|
||||||
server_url: 'https://xmlrpc.my.satellite/XMLRPC'
|
server_url: https://xmlrpc.my.satellite/XMLRPC
|
||||||
|
|
||||||
# Register as user (joe_user) with password (somepass) and enable
|
# Register as user (joe_user) with password (somepass) and enable
|
||||||
# channels (rhel-x86_64-server-6-foo-1) and (rhel-x86_64-server-6-bar-1).
|
# channels (rhel-x86_64-server-6-foo-1) and (rhel-x86_64-server-6-bar-1).
|
||||||
|
|
|
@ -54,7 +54,7 @@ EXAMPLES = '''
|
||||||
# Example action to import a key from a url
|
# Example action to import a key from a url
|
||||||
- rpm_key:
|
- rpm_key:
|
||||||
state: present
|
state: present
|
||||||
key: 'http://apt.sw.be/RPM-GPG-KEY.dag.txt'
|
key: http://apt.sw.be/RPM-GPG-KEY.dag.txt
|
||||||
|
|
||||||
# Example action to import a key from a file
|
# Example action to import a key from a file
|
||||||
- rpm_key:
|
- rpm_key:
|
||||||
|
|
|
@ -183,7 +183,7 @@ EXAMPLES = '''
|
||||||
|
|
||||||
- name: install the nginx rpm from a remote repo
|
- name: install the nginx rpm from a remote repo
|
||||||
yum:
|
yum:
|
||||||
name: 'http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm'
|
name: http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: install nginx rpm from a local file
|
- name: install nginx rpm from a local file
|
||||||
|
|
Loading…
Reference in a new issue