Skip to content

Commit badd9f9

Browse files
author
Alexei Chekulaev
committed
Refactor example hooks
1 parent 25db74a commit badd9f9

7 files changed

+34
-1
lines changed

example/example.filelist

+14-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,14 @@
1-
some-additional-files/somefile
1+
# If you want to include more than a single script file
2+
# You do it by creating addon.filelist file
3+
# where all additional files should be described.
4+
# One line per file, paths relative to current folder.
5+
6+
# Here is additional files
7+
some-additional-files/somefile
8+
9+
# If you want to use hooks they should also be included here
10+
# or they won't get downloaded and executed
11+
example.pre-install
12+
example.post-install
13+
example.pre-uninstall
14+
example.post-uninstall

example/example.post-install

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
3+
echo "Post-install script to perform desired tasks after installation..."
4+
sleep 1

example/example.post-uninstall

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
3+
echo "Post-uninstall script to perform a cleanup..."
4+
sleep 2

example/example.pre-install

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
3+
echo "Pre-install script"
4+
sleep 1
5+
ehco "Check for dependencies or pre-requisites..."
6+
sleep 2
7+
echo "If exit code if non-zero the installation will not continue."
8+
sleep 2

example/example.pre-uninstall

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
3+
echo "Pre-uninstall to ask for additional confirmation or warn about outcome..."
4+
sleep 2

example/post-install

Whitespace-only changes.

example/pre-install

Whitespace-only changes.

0 commit comments

Comments
 (0)