Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NoCloud-Auto-Installer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
NoCloud
NoCloud-Auto-Installer
Commits
24b71775
Verified
Commit
24b71775
authored
7 years ago
by
David Beniamine
Browse files
Options
Downloads
Patches
Plain Diff
More modular install
parent
3e5809a7
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
installBase.sh
+0
-0
0 additions, 0 deletions
installBase.sh
main.env.sample
+1
-0
1 addition, 0 deletions
main.env.sample
run.sh
+0
-2
0 additions, 2 deletions
run.sh
upgradeAll.sh
+14
-3
14 additions, 3 deletions
upgradeAll.sh
with
15 additions
and
5 deletions
in
itIn
stall.sh
→
install
Base
.sh
+
0
−
0
View file @
24b71775
File moved
This diff is collapsed.
Click to expand it.
main.env.sample
+
1
−
0
View file @
24b71775
export MODS="Base MySQL Nextcloud Dolibarr TetrasBack"
export DOMAIN="dev.tetras-libre.fr"
export SERVER_ADMIN="admin@dev.tetras-libre.fr"
export WEB_SERVER=apache2
...
...
This diff is collapsed.
Click to expand it.
run.sh
+
0
−
2
View file @
24b71775
...
...
@@ -25,8 +25,6 @@ then
fi
.
`
pwd
`
/main.env
MODS
=
"initInstall installMySQL installNextcloud installDolibarr installTetrasBack"
for
mod
in
$MODS
do
if
[
-f
$mod
.sh
]
...
...
This diff is collapsed.
Click to expand it.
upgradeAll.sh
+
14
−
3
View file @
24b71775
...
...
@@ -18,9 +18,20 @@
aptitude update
&&
aptitude upgrade
DIR
=
`
dirname
$0
`
.
$DIR
/main.env
.
$DIR
/installNextcloud.env
.
$DIR
/upgradeNextcloud.sh
.
$DIR
/upgradeTetrasBack.sh
.
$DIR
/upgradeDolibarr.sh
if
[
-z
"
$MODS
"
]
then
echo
"Please update your main.env to list the installed modules"
exit
1
fi
for
mod
in
$MODS
do
script
=
"
$DIR
/upgrade
$mod
.sh"
if
[
-f
$script
]
then
.
$script
fi
done
systemctl restart systemd-logind
checkrestart
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