diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-08-19 11:01:48 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-08-19 11:01:48 -0300 |
commit | 0226109e40b1b85ac831e8d9e2f72905865423c5 (patch) | |
tree | d6cc743988d747050a9633bae6c3556417231f31 /pcr/cluster-glue/cluster-glue.install | |
parent | 804af9ecd9b9d1c3d47565790f3b150e9537e502 (diff) |
remove unstable packages from the repo
Diffstat (limited to 'pcr/cluster-glue/cluster-glue.install')
-rw-r--r-- | pcr/cluster-glue/cluster-glue.install | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/pcr/cluster-glue/cluster-glue.install b/pcr/cluster-glue/cluster-glue.install deleted file mode 100644 index 05e2160d3..000000000 --- a/pcr/cluster-glue/cluster-glue.install +++ /dev/null @@ -1,17 +0,0 @@ -_CLUSTER_USER=hacluster -_CLUSTER_GROUP=haclient -_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 'Now you must install ha-resourceagent, ha-heartbeat and ha-pacemaker' -} -post_remove() { - echo -e "Deleting user $_CLUSTER_USER and group $_CLUSTER_GROUP" - userdel $_CLUSTER_USER && groupdel $_CLUSTER_GROUP -} |