summarylogtreecommitdiffstats
path: root/openca-base.install
diff options
context:
space:
mode:
Diffstat (limited to 'openca-base.install')
-rw-r--r--openca-base.install25
1 files changed, 25 insertions, 0 deletions
diff --git a/openca-base.install b/openca-base.install
new file mode 100644
index 000000000000..7ec57c27bc42
--- /dev/null
+++ b/openca-base.install
@@ -0,0 +1,25 @@
+post_install() {
+ exec /usr/etc/openca/configure_etc.sh
+ echo "Remember to add these lines in /etc/httpd/conf/httpd.conf"
+ echo ""
+ echo "# OpenCa"
+ echo "Include conf/extra/openca/online.conf"
+ echo "Include conf/extra/openca/offline.conf"
+ echo "Include conf/extra/openca/common.conf"
+ echo ""
+ echo "Do /etc/rc.d/openca start and choose the Web interface password (Username: admin)"
+ echo "Remember to execute apache web server and the db daemon (e.g MySql)"
+ echo "For DB -- Username: openca Password: openca DB: openca"
+ chmod 777 -R /var/openca/log/xml/*
+}
+
+post_remove() {
+ echo "Remember to remove these lines in /etc/httpd/conf/httpd.conf"
+ echo ""
+ echo "# OpenCa"
+ echo "Include conf/extra/openca/online.conf"
+ echo "Include conf/extra/openca/offline.conf"
+ echo "Include conf/extra/openca/common.conf"
+ rm -r /usr/etc/openca
+ rm -r /srv/http/html/pki/
+}