EOX GitLab Instance
Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Vagrant
Builder
Commits
c65075fc
Commit
c65075fc
authored
Nov 15, 2013
by
Stephan Meißl
Browse files
Adding pypirc. Switching tabs to spaces.
parent
77a66cfd
Changes
1
Hide whitespace changes
Inline
Side-by-side
puppet/modules/buildtools/manifests/init.pp
View file @
c65075fc
class
buildtools
{
class
{
'repos'
:
# add to the repositories stage
stage
=>
repositories
}
class
{
'repos'
:
# add to the repositories stage
stage
=>
repositories
}
$home
=
'/home/vagrant'
$home
=
'/home/vagrant'
File
{
owner
=>
'vagrant'
,
group
=>
'vagrant'
,
mode
=>
'0644'
,
}
File
{
owner
=>
'vagrant'
,
group
=>
'vagrant'
,
mode
=>
'0644'
,
}
package
{
'rpm-build'
:
ensure
=>
'latest'
}
package
{
'yum-utils'
:
ensure
=>
'latest'
}
package
{
'mock'
:
ensure
=>
'latest'
}
package
{
'redhat-rpm-config'
:
ensure
=>
'latest'
}
package
{
'make'
:
ensure
=>
'latest'
}
package
{
'gcc'
:
ensure
=>
'latest'
}
package
{
'gcc-c++'
:
ensure
=>
'latest'
}
package
{
'rpm-build'
:
ensure
=>
'latest'
}
package
{
'yum-utils'
:
ensure
=>
'latest'
}
package
{
'mock'
:
ensure
=>
'latest'
}
package
{
'redhat-rpm-config'
:
ensure
=>
'latest'
}
package
{
'make'
:
ensure
=>
'latest'
}
package
{
'gcc'
:
ensure
=>
'latest'
}
package
{
'gcc-c++'
:
ensure
=>
'latest'
}
file
{
$home
:
ensure
=>
directory
}
file
{
"
${home}
/.rpmmacros"
:
ensure
=>
file
,
content
=>
"%_topdir
${home}
/rpmbuild
\n
%__os_install_post %{nil}
\n
"
,
}
file
{
"
${home}
/rpmbuild"
:
ensure
=>
directory
,
}
file
{[
"
${home}
/rpmbuild/BUILD"
,
"
${home}
/rpmbuild/BUILDROOT"
,
"
${home}
/rpmbuild/RPMS"
,
"
${home}
/rpmbuild/SOURCES"
,
"
${home}
/rpmbuild/SPECS"
,
"
${home}
/rpmbuild/SRPMS"
]:
ensure
=>
directory
,
mode
=>
'0775'
}}
file
{
$home
:
ensure
=>
directory
}
file
{
"
${home}
/.rpmmacros"
:
ensure
=>
file
,
content
=>
"%_topdir
${home}
/rpmbuild
\n
%__os_install_post %{nil}
\n
"
,
}
file
{
"
${home}
/rpmbuild"
:
ensure
=>
directory
,
}
file
{[
"
${home}
/rpmbuild/BUILD"
,
"
${home}
/rpmbuild/BUILDROOT"
,
"
${home}
/rpmbuild/RPMS"
,
"
${home}
/rpmbuild/SOURCES"
,
"
${home}
/rpmbuild/SPECS"
,
"
${home}
/rpmbuild/SRPMS"
]:
ensure
=>
directory
,
mode
=>
'0775'
}
file
{
"
${home}
/.pypirc"
:
ensure
=>
file
,
content
=>
"[distutils]
\n
index-servers =
\n
pypi
\n\n
[pypi]
\n
username:<USER>
\n
password:<PW>
\n
"
,
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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