Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
typo3_site
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Patrick Oberdorf
typo3_site
Commits
be95a6db
Commit
be95a6db
authored
10 years ago
by
Stefan Galinski
Browse files
Options
Downloads
Patches
Plain Diff
[FEATURE] Allow the installation of a TYPO3 version
parent
3b64f189
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
attributes/default.rb
+2
-0
2 additions, 0 deletions
attributes/default.rb
recipes/default.rb
+40
-1
40 additions, 1 deletion
recipes/default.rb
with
42 additions
and
1 deletion
attributes/default.rb
+
2
−
0
View file @
be95a6db
...
...
@@ -6,6 +6,8 @@ default['typo3_site']['hostname'] = 'site.dev'
default
[
'typo3_site'
][
'repository'
]
=
''
default
[
'typo3_site'
][
'repository_hostname'
]
=
'git.domain'
default
[
'typo3_site'
][
'repository_port'
]
=
22
default
[
'typo3_site'
][
'download_typo3'
]
=
false
default
[
'typo3_site'
][
'typo3_version'
]
=
'6.2'
default
[
'typo3_site'
][
'deploy_dump'
]
=
'~/site/dump.sql'
# Example:
...
...
This diff is collapsed.
Click to expand it.
recipes/default.rb
+
40
−
1
View file @
be95a6db
...
...
@@ -116,6 +116,46 @@ web_app node['typo3_site']['hostname'] do
server_aliases
node
[
'typo3_site'
][
'server_aliases'
]
end
###################
### Setup TYPO3 ###
###################
if
node
[
'typo3_site'
][
'download_typo3'
]
bash
'Setup TYPO3'
do
cwd
'/home/vagrant/'
user
'vagrant'
group
'vagrant'
timeout
3000000
code
<<-
EOF
if [ ! -d
#{
node
[
'typo3_site'
][
'webroot'
]
}
/typo3_src-
#{
node
[
'typo3_site'
][
'typo3_version'
]
}
]
then
wget http://get.typo3.org/
#{
node
[
'typo3_site'
][
'typo3_version'
]
}
\
-O typo3_src-
#{
node
[
'typo3_site'
][
'typo3_version'
]
}
.tgz
mkdir -p
#{
node
[
'typo3_site'
][
'webroot'
]
}
/typo3_src-
#{
node
[
'typo3_site'
][
'typo3_version'
]
}
tar -xzf typo3_src-
#{
node
[
'typo3_site'
][
'typo3_version'
]
}
.tgz --strip-components=1 \
-C
#{
node
[
'typo3_site'
][
'webroot'
]
}
/typo3_src-
#{
node
[
'typo3_site'
][
'typo3_version'
]
}
;
fi
cd
#{
node
[
'typo3_site'
][
'webroot'
]
}
/
#{
node
[
'typo3_site'
][
'hostname'
]
}
rm -f typo3_src
ln -s ../typo3_src-
#{
node
[
'typo3_site'
][
'typo3_version'
]
}
typo3_src
if [ ! -f typo3 ]
then
ln -s typo3_src/typo3 typo3
fi
if [ ! -f index.php ]
then
ln -s typo3_src/index.php index.php
fi
EOF
action
:run
end
end
#######################
### Provide Sources ###
#######################
...
...
@@ -172,7 +212,6 @@ end
### Create Links ###
####################
node
[
'typo3_site'
][
'create_links'
].
each
do
|
link_data
|
link
link_data
[
'source'
]
do
to
link_data
[
'target'
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment