From 7eed0390c7f9e6a8bf3447e1ec9dcdd5565b5135 Mon Sep 17 00:00:00 2001 From: Mario Preksavec Date: Fri, 17 May 2019 23:24:54 +0700 Subject: system/ocfs2-tools: Added (OCFS2 tools). Signed-off-by: Willy Sudiarto Raharjo --- system/ocfs2-tools/README | 7 ++ system/ocfs2-tools/README.SLACKWARE | 43 ++++++++++ system/ocfs2-tools/doinst.sh | 27 ++++++ system/ocfs2-tools/ocfs2-tools.SlackBuild | 135 ++++++++++++++++++++++++++++++ system/ocfs2-tools/ocfs2-tools.info | 10 +++ system/ocfs2-tools/slack-desc | 19 +++++ 6 files changed, 241 insertions(+) create mode 100644 system/ocfs2-tools/README create mode 100644 system/ocfs2-tools/README.SLACKWARE create mode 100644 system/ocfs2-tools/doinst.sh create mode 100644 system/ocfs2-tools/ocfs2-tools.SlackBuild create mode 100644 system/ocfs2-tools/ocfs2-tools.info create mode 100644 system/ocfs2-tools/slack-desc diff --git a/system/ocfs2-tools/README b/system/ocfs2-tools/README new file mode 100644 index 0000000000..b3c110891f --- /dev/null +++ b/system/ocfs2-tools/README @@ -0,0 +1,7 @@ +These are tools for the OCFS2 filesystem. + +To enable GUI, build with: + + GUI=yes ./ocfs2-tools.SlackBuild + +More information post-install can be found in README.SLACKWARE diff --git a/system/ocfs2-tools/README.SLACKWARE b/system/ocfs2-tools/README.SLACKWARE new file mode 100644 index 0000000000..0a0b3e91e2 --- /dev/null +++ b/system/ocfs2-tools/README.SLACKWARE @@ -0,0 +1,43 @@ +Starting the daemon on boot +--------------------------- + +You may wish to add these lines to /etc/rc.d/rc.local to start the service: + + if [ -x /etc/rc.d/rc.o2cb ]; then + /etc/rc.d/rc.o2cb start + fi + +You may also add these lines to /etc/rc.d/rc.local_shutdown: + + if [ -x /etc/rc.d/rc.o2cb ]; then + /etc/rc.d/rc.o2cb stop + fi + +Remember to give executable permission to /etc/rc.d/rc.local_shutdown: + + chmod 0755 /etc/rc.d/rc.local_shutdown + +Configuring the cluster system +------------------------------ + +Before the o2cb daemon can be started on boot, O2CB_ENABLED variable should +be set to "true" in /etc/default/o2cb + +Creating cluster.conf in /etc/ocfs2 can be done with `o2cb` command. + +For example, to define a cluster named ocfs2 with two nodes: + + o2cb add-cluster ocfs2 + o2cb add-node ocfs2 node0 --ip 10.1.0.100 + o2cb add-node ocfs2 node1 --ip 10.1.0.101 + +Heartbeat is configured with: + + o2cb add-heartbeat cluster_name device1 + +Use the `mkfs.ocfs2` command to create an OCFS2 volume on a block device. + +Mounting OCFS2 volumes on boot is done with /etc/rc.d/rc.ocfs2 init script. + +For additional steps and details, read "Installing and Configuring OCFS2" +that can be found on: https://docs.oracle.com/ diff --git a/system/ocfs2-tools/doinst.sh b/system/ocfs2-tools/doinst.sh new file mode 100644 index 0000000000..fcddf04338 --- /dev/null +++ b/system/ocfs2-tools/doinst.sh @@ -0,0 +1,27 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +preserve_perms etc/rc.d/rc.o2cb.new +preserve_perms etc/rc.d/rc.ocfs2.new +config etc/default/o2cb.new diff --git a/system/ocfs2-tools/ocfs2-tools.SlackBuild b/system/ocfs2-tools/ocfs2-tools.SlackBuild new file mode 100644 index 0000000000..b0db7d0ce9 --- /dev/null +++ b/system/ocfs2-tools/ocfs2-tools.SlackBuild @@ -0,0 +1,135 @@ +#!/bin/sh + +# Slackware build script for ocfs2-tools + +# Copyright 2019 Mario Preksavec, Zagreb, Croatia +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=ocfs2-tools +VERSION=${VERSION:-1.8.5} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +# GUI support, includes a desktop icon +GUI=${GUI:-no} +case ${GUI,,} in + yes) ENABLE_GUI="--enable-ocfs2console=yes" ;; + *) ENABLE_GUI="" ;; +esac + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-{$VERSION,$PRGNAM-$VERSION} +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION || cd $PRGNAM-$PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./autogen.sh \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + $ENABLE_GUI \ + --build=$ARCH-slackware-linux + +make -j1 +make install DESTDIR=$PKG + +# Copy init scripts and fix them +install -D -m0755 -oroot -groot vendor/common/o2cb.init $PKG/etc/rc.d/rc.o2cb.new +install -D -m0755 -oroot -groot vendor/common/ocfs2.init $PKG/etc/rc.d/rc.ocfs2.new +sed -e 's|/etc/redhat-release|/etc/init.d/functions|' \ + -i $PKG/etc/rc.d/rc.o2cb.new \ + -i $PKG/etc/rc.d/rc.ocfs2.new + +# Default settings, udev rules and sample configuration +install -D -m0644 -oroot -groot vendor/common/o2cb.sysconfig \ + $PKG/etc/default/o2cb.new +install -D -m0644 -oroot -groot vendor/common/51-ocfs2.rules \ + $PKG/lib/udev/rules.d/51-ocfs2.rules +install -D -m0644 -oroot -groot documentation/samples/cluster.conf \ + $PKG/etc/ocfs2/cluster.conf.sample + +# More GUI stuff +case ${GUI,,} in + yes) install -D -m0644 -oroot -groot vendor/common/ocfs2console.desktop \ + $PKG/usr/share/applications/ocfs2console.desktop + install -D -m0644 -oroot -groot vendor/common/ocfs2console.png \ + $PKG/usr/share/icons/hicolor/48x48/apps/ocfs2console.png + sed -e 's#^\(Icon=\).*#\1/usr/share/icons/hicolor/48x48/apps/ocfs2console.png#' \ + -i $PKG/usr/share/applications/ocfs2console.desktop + ;; +esac + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp CREDITS MAINTAINERS README.O2CB documentation/*.* $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +cat $CWD/README.SLACKWARE > $PKG/usr/doc/$PRGNAM-$VERSION/README.SLACKWARE + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/ocfs2-tools/ocfs2-tools.info b/system/ocfs2-tools/ocfs2-tools.info new file mode 100644 index 0000000000..fc59cc59a6 --- /dev/null +++ b/system/ocfs2-tools/ocfs2-tools.info @@ -0,0 +1,10 @@ +PRGNAM="ocfs2-tools" +VERSION="1.8.5" +HOMEPAGE="https://github.com/markfasheh/ocfs2-tools/" +DOWNLOAD="https://github.com/markfasheh/ocfs2-tools/archive/ocfs2-tools-1.8.5.tar.gz" +MD5SUM="d6d76da6006e28272a223065a7802798" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Mario Preksavec" +EMAIL="mario at slackware dot hr" diff --git a/system/ocfs2-tools/slack-desc b/system/ocfs2-tools/slack-desc new file mode 100644 index 0000000000..9c8aa727a6 --- /dev/null +++ b/system/ocfs2-tools/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +ocfs2-tools: ocfs2-tools (OCFS2 tools) +ocfs2-tools: +ocfs2-tools: These are tools for the OCFS2 filesystem. +ocfs2-tools: +ocfs2-tools: Homepage: https://github.com/markfasheh/ocfs2-tools +ocfs2-tools: +ocfs2-tools: +ocfs2-tools: +ocfs2-tools: +ocfs2-tools: +ocfs2-tools: -- cgit v1.2.3