Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
wattsworth
/
puppet
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
796e9aba
authored
Feb 02, 2018
by
John Donnal
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fixed bugs
parent
363aba4e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
modules/python/manifests/init.pp
modules/static_sites/manifests/init.pp
modules/python/manifests/init.pp
View file @
796e9aba
...
...
@@ -36,14 +36,14 @@ class python {
source
=>
'puppet:///modules/python/get-pip.py'
}
package
{[
'python-pip'
,
'python3-pip'
]:
ensure
=>
absent
,
ensure
=>
absent
}
exec
{
'install_pip3'
:
command
=>
'python3 /tmp/get-pip.py'
,
path
=>
[
'/usr/local/bin'
,
'/usr/bin'
],
require
=>
Package
[
$deps
]
}
exec
{
'
upgrade
_pip2'
:
exec
{
'
install
_pip2'
:
command
=>
'python2 /tmp/get-pip.py'
,
path
=>
[
'/usr/local/bin'
,
'/usr/bin'
],
require
=>
Package
[
$deps
]
...
...
modules/static_sites/manifests/init.pp
View file @
796e9aba
...
...
@@ -63,6 +63,7 @@ class static_sites {
exec
{
'InstallDocs'
:
command
=>
$docs_cmd
,
timeout
=>
0
,
path
=>
[
'/bin'
,
'/usr/sbin'
,
'/usr/bin'
],
require
=>
File
[
'/var/www/frontend'
]
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment