summaryrefslogtreecommitdiff
path: root/pcr/xsp/xsp.install
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2018-02-04 21:13:55 +0100
committerAndreas Grapentin <andreas@grapentin.org>2018-02-04 21:13:55 +0100
commit34a14f436e510456d8753b2fe6a314be2bdb0649 (patch)
treec73d8cace63e1ca2b569c175f0a86f0f94a2ed13 /pcr/xsp/xsp.install
parent0dd0cca8496e41a58a3e2bb545092ce4642e541a (diff)
downloadabslibre-34a14f436e510456d8753b2fe6a314be2bdb0649.tar.gz
abslibre-34a14f436e510456d8753b2fe6a314be2bdb0649.tar.bz2
abslibre-34a14f436e510456d8753b2fe6a314be2bdb0649.zip
pcr/xsp: moved from libre/xsp; gone from arch and moved to aur
Diffstat (limited to 'pcr/xsp/xsp.install')
-rw-r--r--pcr/xsp/xsp.install37
1 files changed, 37 insertions, 0 deletions
diff --git a/pcr/xsp/xsp.install b/pcr/xsp/xsp.install
new file mode 100644
index 000000000..d2cc5955a
--- /dev/null
+++ b/pcr/xsp/xsp.install
@@ -0,0 +1,37 @@
+# arg 1: the new package version
+post_install() {
+ cat << EOM
+
+--> xsp is just the helping app for mod_mono if you like a production like
+--> server. xsp itself is for ASP testing mainly -- read the manpage for xsp
+--> to know which options are available.
+--> Parabola will provide xsp configured by a .webapp configuration file
+--> which rests in /etc/xsp. Just put your other webapp files there to let
+--> xsp pick them up.
+--> xsp is commandline based configuration is done in /etc/conf.d/xsp. Set all
+--> your arguments there. Don't forget that you can run xsp from the console
+--> as oridinary user, which is safer and for testing absolutely sufficient!!
+
+--> You can run the testpages simply by starting the server and calling
+ http://localhost:8080
+--> from your browser's location bar
+
+
+EOM
+}
+
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+ post_install $1
+}
+
+# arg 1: the old package version
+pre_remove() {
+ /bin/true
+}
+
+# arg 1: the old package version
+post_remove() {
+ /bin/true
+}