-
-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: nachoparker <[email protected]>
- Loading branch information
1 parent
bc20372
commit 6c62d01
Showing
3 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
## BACKWARD FIXES ( for older images ) | ||
|
||
source /usr/local/etc/library.sh # sets NCVER PHPVER RELEASE | ||
|
||
# all images | ||
|
||
# restore smbclient after dist upgrade | ||
apt-get update | ||
apt-get install -y --no-install-recommends php${PHPVER}-gmp | ||
|
||
# docker images only | ||
[[ -f /.docker-image ]] && { | ||
: | ||
} | ||
|
||
# for non docker images | ||
[[ ! -f /.docker-image ]] && { | ||
: | ||
} | ||
|
||
exit 0 |