Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
php
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ansible
Roles
php
Commits
e5bc69bb
Commit
e5bc69bb
authored
6 years ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
Change module apt with multiple packages to remove deprecated syntax
parent
aaae9760
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tasks/msodbc.yml
+6
-5
6 additions, 5 deletions
tasks/msodbc.yml
tasks/php.yml
+1
-2
1 addition, 2 deletions
tasks/php.yml
tasks/php53.yml
+34
-33
34 additions, 33 deletions
tasks/php53.yml
with
41 additions
and
40 deletions
tasks/msodbc.yml
+
6
−
5
View file @
e5bc69bb
...
...
@@ -14,13 +14,14 @@
-
name
:
"
Install
Packages"
apt
:
pkg
:
'
{{
item
}}'
pkg
:
'
{{
packages
}}'
state
:
'
present'
update_cache
:
yes
with_items
:
-
'
msodbcsql'
-
'
mssql-tools'
-
'
unixodbc-dev'
vars
:
packages
:
-
'
msodbcsql'
-
'
mssql-tools'
-
'
unixodbc-dev'
notify
:
-
"
Apache
|
Restart
Apache"
...
...
This diff is collapsed.
Click to expand it.
tasks/php.yml
+
1
−
2
View file @
e5bc69bb
...
...
@@ -10,10 +10,9 @@
-
name
:
"
PHP
|
Install
required
packages."
apt
:
pkg={{
item
}}
pkg={{
php_packages
}}
state=present
force=yes
with_items
:
'
{{
php_packages
}}'
notify
:
-
"
Apache
|
Restart
Apache"
...
...
This diff is collapsed.
Click to expand it.
tasks/php53.yml
+
34
−
33
View file @
e5bc69bb
...
...
@@ -29,40 +29,41 @@
-
name
:
"
Install
Packages"
apt
:
pkg={{
item
}}
pkg={{
packages
}}
state=present
with_items
:
-
'
autoconf2.13'
-
'
automake1.4'
-
'
build-essential'
-
'
libc-client2007e'
-
'
libc-client2007e-dev'
-
'
libfcgi-dev'
-
'
libfcgi0ldbl'
-
'
libfreetype6-dev'
-
'
libgif-dev'
-
'
libgif4'
-
'
libjpeg-progs'
-
'
libjpeg62-dbg'
-
'
libjpeg8'
-
'
libjpeg8-dev'
-
'
libmcrypt-dev'
-
'
libmysqlclient-dev'
-
'
libpcre++-dev'
-
'
libpcre3-dev'
-
'
libpng-dev'
-
'
libssl-dev'
-
'
libx11-dev'
-
'
libxau-dev'
-
'
libxcb1-dev'
-
'
libxdmcp-dev'
-
'
libxml2-dev'
-
'
libxml2-dev'
-
'
libxpm-dev'
-
'
x11proto-core-dev'
-
'
x11proto-input-dev'
-
'
x11proto-kb-dev'
-
'
xtrans-dev'
vars
:
packages
:
-
'
autoconf2.13'
-
'
automake1.4'
-
'
build-essential'
-
'
libc-client2007e'
-
'
libc-client2007e-dev'
-
'
libfcgi-dev'
-
'
libfcgi0ldbl'
-
'
libfreetype6-dev'
-
'
libgif-dev'
-
'
libgif4'
-
'
libjpeg-progs'
-
'
libjpeg62-dbg'
-
'
libjpeg8'
-
'
libjpeg8-dev'
-
'
libmcrypt-dev'
-
'
libmysqlclient-dev'
-
'
libpcre++-dev'
-
'
libpcre3-dev'
-
'
libpng-dev'
-
'
libssl-dev'
-
'
libx11-dev'
-
'
libxau-dev'
-
'
libxcb1-dev'
-
'
libxdmcp-dev'
-
'
libxml2-dev'
-
'
libxml2-dev'
-
'
libxpm-dev'
-
'
x11proto-core-dev'
-
'
x11proto-input-dev'
-
'
x11proto-kb-dev'
-
'
xtrans-dev'
-
name
:
"
Link
Client
Lib"
file
:
...
...
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