-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alexei Chekulaev
committed
Apr 19, 2017
1 parent
25db74a
commit badd9f9
Showing
7 changed files
with
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
some-additional-files/somefile | ||
# If you want to include more than a single script file | ||
# You do it by creating addon.filelist file | ||
# where all additional files should be described. | ||
# One line per file, paths relative to current folder. | ||
|
||
# Here is additional files | ||
some-additional-files/somefile | ||
|
||
# If you want to use hooks they should also be included here | ||
# or they won't get downloaded and executed | ||
example.pre-install | ||
example.post-install | ||
example.pre-uninstall | ||
example.post-uninstall |
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,4 @@ | ||
#!/bin/bash | ||
|
||
echo "Post-install script to perform desired tasks after installation..." | ||
sleep 1 |
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,4 @@ | ||
#!/bin/bash | ||
|
||
echo "Post-uninstall script to perform a cleanup..." | ||
sleep 2 |
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,8 @@ | ||
#!/bin/bash | ||
|
||
echo "Pre-install script" | ||
sleep 1 | ||
ehco "Check for dependencies or pre-requisites..." | ||
sleep 2 | ||
echo "If exit code if non-zero the installation will not continue." | ||
sleep 2 |
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,4 @@ | ||
#!/bin/bash | ||
|
||
echo "Pre-uninstall to ask for additional confirmation or warn about outcome..." | ||
sleep 2 |
Empty file.
Empty file.