summaryrefslogtreecommitdiff
path: root/pcr/ha-glue/ha-glue.install
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-05-13 10:43:29 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2013-05-13 10:43:29 +0200
commit435c057e31699c734b0aabb46c2d9a4f647f1367 (patch)
treeef2aff16463c36475e3e39c59f27a4c4fa94303c /pcr/ha-glue/ha-glue.install
parent4e93709c6f760c133cf59fe25e8a3b81e6326d0f (diff)
parent66cb4a487ad73063c6b000279a5d5558fb7603f5 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/espeakup/PKGBUILD community/lxnm/PKGBUILD community/notmuch/PKGBUILD community/pidgin-lwqq/PKGBUILD community/python2-numexpr/PKGBUILD core/systemd/PKGBUILD extra/evolution-data-server/PKGBUILD extra/fakechroot/PKGBUILD extra/fsarchiver/PKGBUILD extra/gifsicle/PKGBUILD extra/i8kutils/PKGBUILD extra/msmtp/PKGBUILD extra/xfce4-power-manager/PKGBUILD
Diffstat (limited to 'pcr/ha-glue/ha-glue.install')
-rw-r--r--pcr/ha-glue/ha-glue.install22
1 files changed, 22 insertions, 0 deletions
diff --git a/pcr/ha-glue/ha-glue.install b/pcr/ha-glue/ha-glue.install
new file mode 100644
index 000000000..abfedb7c4
--- /dev/null
+++ b/pcr/ha-glue/ha-glue.install
@@ -0,0 +1,22 @@
+_CLUSTER_USER=hacluster
+_CLUSTER_GROUP=haclient
+_PREFIX=/usr
+_PREFIXETC=/etc
+_PREFIXVAR=/var
+_LCRSODIR=$PREFIX/libexec/lcrso
+_DGID=666
+_DUID=666
+pre_install() {
+ getent group $_CLUSTER_GROUP >/dev/null || groupadd -r -g $_DGID $_CLUSTER_GROUP
+ getent passwd $_CLUSTER_USER >/dev/null || useradd -r -g $_CLUSTER_GROUP -u $_DUID -d /var/lib/heartbeat/cores/hacluster -s /sbin/nologin -c "cluster user" ${_CLUSTER_USER}
+}
+
+post_install() {
+ echo -e "\nNow you must install ha-resourceagent, ha-heartbeat and ha-pacemaker\n"
+
+}
+post_remove() {
+ echo -e "\nDeleting user $_CLUSTER_USER and group $_CLUSTER_GROUP "
+ userdel $_CLUSTER_USER
+ groupdel $_CLUSTER_GROUP
+}