diff options
66 files changed, 134 insertions, 350 deletions
diff --git a/core/apparmor.html b/core/apparmor.html index e44acef..709f2a4 100644 --- a/core/apparmor.html +++ b/core/apparmor.html @@ -96,7 +96,7 @@ # <a href="index.html">Core OS Index</a> - <p>This is part of the c9 Manual. + <p>This is part of the Hive System Documentation. Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> diff --git a/core/bash.html b/core/bash.html index 353d7df..8e0c95e 100644 --- a/core/bash.html +++ b/core/bash.html @@ -124,8 +124,8 @@ <a href="index.html">Core OS Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/conf/pkgmk.conf b/core/conf/pkgmk.conf index 94bc9df..e72a433 100644 --- a/core/conf/pkgmk.conf +++ b/core/conf/pkgmk.conf @@ -22,7 +22,7 @@ case ${PKGMK_ARCH} in ;; esac -#PKGMK_SOURCE_MIRRORS=(http://c9.root.sx/ports/distfiles/) +#PKGMK_SOURCE_MIRRORS=(http://hive.gnu.systems/ports/distfiles/) # PKGMK_SOURCE_DIR="$PWD" PKGMK_SOURCE_DIR="/usr/ports/distfiles" # PKGMK_PACKAGE_DIR="$PWD" diff --git a/core/conf/pkgmk.conf.harden b/core/conf/pkgmk.conf.harden index ad95d65..f72dc53 100644 --- a/core/conf/pkgmk.conf.harden +++ b/core/conf/pkgmk.conf.harden @@ -78,7 +78,7 @@ esac #PKGMK_SOURCE_MIRRORS=(https://crux.nu/distfiles/) #PKGMK_SOURCE_MIRRORS=(https://crux.ster.zone/distfiles/) -PKGMK_SOURCE_MIRRORS=(https://c9.root.sx/ports/distfiles/) +PKGMK_SOURCE_MIRRORS=(https://hive.gnu.systems/ports/distfiles/) PKGMK_SOURCE_DIR="/srv/ports/distfiles" PKGMK_PACKAGE_DIR="/srv/ports/packages" PKGMK_WORK_DIR="/srv/ports/work/$name" diff --git a/core/conf/ports/c9-ports.git b/core/conf/ports/c9-ports.git deleted file mode 100644 index 392f77f..0000000 --- a/core/conf/ports/c9-ports.git +++ /dev/null @@ -1,7 +0,0 @@ -# Collection core -# -NAME=c9-ports -URL=git://c9.root.sx/c9-ports.git -BRANCH=develop -destination=/usr/ports/c9-ports -PORTS_DIR="/usr/ports" diff --git a/core/conf/ports/c9-ports.httpup b/core/conf/ports/c9-ports.httpup deleted file mode 100644 index 3a275e5..0000000 --- a/core/conf/ports/c9-ports.httpup +++ /dev/null @@ -1,7 +0,0 @@ -# -# /etc/ports/c9-ports.httpup: c9-ports port collection -# - -ROOT_DIR=/usr/ports/c9-ports -URL=https://github.com/s1lvino/c9-ports/raw/master/ -# End of file diff --git a/core/conf/ports/contrib.git b/core/conf/ports/contrib.git index d9c0a7d..2516a71 100644 --- a/core/conf/ports/contrib.git +++ b/core/conf/ports/contrib.git @@ -1,7 +1,7 @@ # Collection core # NAME=contrib -URL=git://c9.root.sx/c9-contrib.git -BRANCH=develop +URL=git://c2.ank/contrib.git +BRANCH=develop-c34 destination=/usr/ports/contrib PORTS_DIR="/usr/ports" diff --git a/core/conf/ports/core.git b/core/conf/ports/core.git index 3e23528..50ac623 100644 --- a/core/conf/ports/core.git +++ b/core/conf/ports/core.git @@ -1,7 +1,7 @@ # Collection core # NAME=core -URL=git://c9.root.sx/c9-core.git -BRANCH=develop +URL=git://c2.ank/core.git +BRANCH=develop-c34 destination=/usr/ports/core PORTS_DIR="/usr/ports" diff --git a/core/conf/ports/drivers/git b/core/conf/ports/drivers/git deleted file mode 100755 index 654a8c7..0000000 --- a/core/conf/ports/drivers/git +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh -# -# /etc/ports/drivers/git: git driver script for ports(8) -# - -if [ $# -ne 1 ]; then - echo "usage: $0 <file>" >&2 - exit 1 -fi - -. $1 - -if [ -z "$URL" ]; then - echo "URL not set in '$1'" >&2 - exit 2 -fi -if [ -z "$NAME" ]; then - echo "NAME not set in '$1'" >&2 - exit 2 -fi -if [ -z "$BRANCH" ]; then - echo "BRANCH not set in '$1'" >&2 - exit 2 -fi - -REPOSITORY="$PORTS_DIR/$NAME" -if [ -n "$LOCAL_REPOSITORY" ]; then - REPOSITORY="$LOCAL_REPOSITORY" -fi - -echo "Fetching updates from $URL" -echo "Updating collection $NAME" - -cd "$REPOSITORY" 2> "/dev/null" - -if [ $? -lt 1 ]; then - git checkout -q "$BRANCH" - git fetch -q - git diff --pretty=format: --name-status "$BRANCH" origin/"$BRANCH" | sed "s/M\t/ Edit /g; s/A\t/ Checkout /g; s/D\t/ Delete /g" | sort - git clean -q -f - git reset -q --hard origin/"$BRANCH" -else - git clone -q -b "$BRANCH" "$URL" "$REPOSITORY" - ls -1 $REPOSITORY | sed "s/^/ Checkout /" -fi - -echo "Finished successfully" diff --git a/core/conf/ports/drivers/httpup b/core/conf/ports/drivers/httpup deleted file mode 100755 index 5c8db84..0000000 --- a/core/conf/ports/drivers/httpup +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# /etc/ports/drivers/httpup: httpup driver script for ports(8) -# - -if [ $# -ne 1 ]; then - echo "usage: $0 <file>" >&2 - exit 1 -fi - -. $1 - -if [ -z "$ROOT_DIR" ]; then - echo "ROOT_DIR not set in '$1'" >&2 - exit 2 -fi -if [ -z "$URL" ]; then - echo "URL not set in '$1'" >&2 - exit 2 -fi - -for REPO in $URL; do - PORT=`echo $REPO | sed -n '/#.*$/s|^.*#||p'` - httpup sync $REPO $ROOT_DIR/$PORT -done - -# End of file. diff --git a/core/conf/ports/drivers/rsync b/core/conf/ports/drivers/rsync deleted file mode 100755 index 14dd3e5..0000000 --- a/core/conf/ports/drivers/rsync +++ /dev/null @@ -1,143 +0,0 @@ -#!/usr/bin/perl -# -# /etc/ports/drivers/rsync: rsync(1) driver script for ports(8) -# - -use warnings; -use strict; -use File::Basename; - -my $host = ''; -my $collection = ''; -my $destination = ''; -my %new_checkouts; -my %old_checkouts; - -sub error -{ - my $message = shift; - print "Error: $message ($!)\nUpdating failed\n"; - exit 1; -} - -sub warning -{ - my $message = shift; - print "Warning: $message ($!)\n"; -} - -if ($#ARGV < 0) -{ - print "Usage: $0 <file>\n"; - exit 1; -} - -open(FILE, $ARGV[0]) or error("Couldn't open $ARGV[0]"); -while (<FILE>) -{ - chomp; - if (/^host=(.*)/) { $host = $1; } - elsif (/^collection=(.*)/) { $collection = $1; } - elsif (/^destination=(.*)/) { $destination = $1; } -} -close(FILE); - -if ($host eq '') { error("Host field not set in $ARGV[0]"); } -if ($collection eq '') { error("Collection field not set in $ARGV[0]"); } -if ($destination eq '') { error("Destination field not set in $ARGV[0]"); } - -if (-e "$destination/.checkouts") -{ - # read the old .checkouts file into memory - open(FILE, "$destination/.checkouts") or error("Couldn't read checkouts from $destination/.checkouts"); - while (<FILE>) - { - chomp; - $old_checkouts{$_} = 1; - } - close(FILE); -} - -print "Updating file list from " . $host . "::$collection\n"; - -# get the remote file list (new .checkouts) -open(PIPE, 'rsync -crz --no-human-readable ' . $host . '::' . $collection . '|') or error("Couldn't open pipe to rsync"); -while (<PIPE>) -{ - chomp; - - next if /^MOTD:/; # ignore MOTD lines - s/^(.{43})//; # ignore the first 43 characters (mode, date etc...) - next if /^.$/; # ignore the . directory - - $new_checkouts{$_} = 1; -} -close(PIPE); -error("Running rsync failed") unless $? == 0; - -print "Updating collection " . basename($destination) . "\n"; - -# now really run rsync -open(PIPE, 'rsync -crz --no-human-readable --log-format "%o %n" ' . $host . "::$collection $destination|") or error("Couldn't open pipe to rsync"); -while (<PIPE>) -{ - chomp; - - if (/^recv (.*)/) - { - if ($old_checkouts{$1}) - { - s/^recv/ Edit/; - } - else - { - s/^recv/ Checkout/; - } - } - - print $_ . "\n"; -} -close(PIPE); -error("Running rsync failed") unless $? == 0; - -# save new checkouts into .checkouts -open(FILE, ">$destination/.checkouts") or error("Couldn't save checkouts to $destination/.checkouts"); -foreach my $checkout (sort keys %new_checkouts) -{ - print FILE "$checkout\n"; -} -close(FILE); - -# use chroot as an additional safety measure when removing files -chroot($destination) or error("Couldn't chroot into $destination"); -chdir('/'); - -# iterate through old checkouts, remove obsolete files -foreach my $checkout (sort keys %old_checkouts) -{ - if (!$new_checkouts{$checkout}) - { - if (-f $checkout) - { - print " Delete $checkout\n"; - unlink($checkout) or warning("Couldn't delete $checkout"); - } - } -} - -# iterate through old checkouts, remove obsolete directories -foreach my $checkout (sort keys %old_checkouts) -{ - if (!$new_checkouts{$checkout}) - { - if (-d $checkout) - { - print " Delete $checkout\n"; - rmdir($checkout) or warning("Couldn't delete $checkout"); - } - } -} - -print "Finished successfully\n"; - -# End of file diff --git a/core/conf/ports/mate.httpup b/core/conf/ports/mate.httpup new file mode 100644 index 0000000..93ad84f --- /dev/null +++ b/core/conf/ports/mate.httpup @@ -0,0 +1,5 @@ +# Collection mate, by jaeger at crux dot ninja +# File generated by the CRUX portdb https://crux.nu/portdb/ + +ROOT_DIR=/usr/ports/mate +URL=https://raw.githubusercontent.com/mhoush/crux-mate/master/ diff --git a/core/conf/ports/opt.git b/core/conf/ports/opt.git index bedc00c..77ba4cd 100644 --- a/core/conf/ports/opt.git +++ b/core/conf/ports/opt.git @@ -1,6 +1,7 @@ # Collection core # NAME=opt -URL=git://c9.root.sx/c9-opt.git -BRANCH=develop +URL=git://c2.ank/opt.git +BRANCH=develop-c34 destination=/usr/ports/opt +PORTS_DIR="/usr/ports" diff --git a/core/conf/ports/ports.git b/core/conf/ports/ports.git new file mode 100644 index 0000000..23d9586 --- /dev/null +++ b/core/conf/ports/ports.git @@ -0,0 +1,7 @@ +# Collection Ports Driver +# +NAME=ports +URL=git://c2.ank/ports.git +BRANCH=develop +destination=/usr/ports/ports +PORTS_DIR="/usr/ports" diff --git a/core/conf/ports/xorg.git b/core/conf/ports/xorg.git index 5123db5..70ce45b 100644 --- a/core/conf/ports/xorg.git +++ b/core/conf/ports/xorg.git @@ -1,6 +1,7 @@ # Collection core # NAME=xorg -URL=git://c9.root.sx/c9-xorg.git -BRANCH=develop -destination=/usr/ports/xorg +URL=git://c2.ank/xorg.git +BRANCH=develop-c34 +destination=/srv/ports/xorg +PORTS_DIR="/usr/ports" diff --git a/core/configure.html b/core/configure.html index 008afbe..2fadfcf 100644 --- a/core/configure.html +++ b/core/configure.html @@ -52,7 +52,7 @@ </pre> <p>Edit /etc/hosts to contain your hostname and FQDN, - this example uses c9.core and c9.root.sx sub-domain from + this example uses c9.core and hive.gnu.systems sub-domain from <a href="http://freedns.afraid.org">afraid.org</a> pointing to 10.0.0.1 ip;</p> @@ -62,7 +62,7 @@ 127.0.0.1 c9.core c9 #<ip-address> <hostname.domain.org> <aliases> - 10.0.0.1 c9.root.sx + 10.0.0.1 hive.gnu.systems # IPv6 #::1 ip6-localhost ip6-loopback @@ -270,8 +270,8 @@ </pre> <a href="index.html">Core OS Index</a> - <p>This is part of the c9 Manual. - Copyright (C) 2017 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/dash.html b/core/dash.html index a926ce7..134616d 100644 --- a/core/dash.html +++ b/core/dash.html @@ -19,8 +19,8 @@ <a href="index.html">Core OS Index</a> - <p>This is part of the c9 Manual. - Copyright (C) 2017 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/exim.html b/core/exim.html index e922789..2f93af8 100644 --- a/core/exim.html +++ b/core/exim.html @@ -224,8 +224,8 @@ <a href="index.html">Core OS Index</a> <p> - This is part of the c9 Manual. - Copyright (C) 2017 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/hardening.html b/core/hardening.html index 383f583..60fea58 100644 --- a/core/hardening.html +++ b/core/hardening.html @@ -43,8 +43,8 @@ <p>Add unnecessary tests to profile to have less noise.</p> <a href="index.html">Core OS Index</a> - <p>This is part of the c9 Manual. - Copyright (C) 2017 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/index.html b/core/index.html index e6e6c62..f8b3663 100644 --- a/core/index.html +++ b/core/index.html @@ -153,8 +153,8 @@ <a href="../index.html">Documentation Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2017 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/install.html b/core/install.html index 12921bf..3f2334b 100644 --- a/core/install.html +++ b/core/install.html @@ -352,8 +352,8 @@ </pre> <a href="index.html">Core OS Index</a> - <p>This is part of the c9 Manual. - Copyright (C) 2017 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/linux.html b/core/linux.html index 1592fc4..0cfecd6 100644 --- a/core/linux.html +++ b/core/linux.html @@ -825,7 +825,7 @@ </pre> <a href="index.html">Core OS Index</a> - <p>This is part of the c9-doc Manual. + <p>This is part of the Hive System Documentation. Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> diff --git a/core/network.html b/core/network.html index 657cd31..feb9765 100644 --- a/core/network.html +++ b/core/network.html @@ -443,8 +443,8 @@ <a href="index.html">Core OS Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2017 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/package.html b/core/package.html index 21415ae..4aa649d 100644 --- a/core/package.html +++ b/core/package.html @@ -182,8 +182,8 @@ </pre> <a href="index.html">Core OS Index</a> - <p>This is part of the c9-doc Manual. - Copyright (C) 2017 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/ports.html b/core/ports.html index d724d76..7f1cd54 100644 --- a/core/ports.html +++ b/core/ports.html @@ -96,7 +96,7 @@ ;; esac - #PKGMK_SOURCE_MIRRORS=(http://c9.root.sx/ports/distfiles/) + #PKGMK_SOURCE_MIRRORS=(http://hive.gnu.systems/ports/distfiles/) # PKGMK_SOURCE_DIR="$PWD" PKGMK_SOURCE_DIR="/usr/ports/distfiles" # PKGMK_PACKAGE_DIR="$PWD" @@ -189,8 +189,8 @@ <a href="index.html">Core OS Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/reboot.html b/core/reboot.html index 1eb6808..1fae99b 100644 --- a/core/reboot.html +++ b/core/reboot.html @@ -223,8 +223,8 @@ </pre> <a href="index.html">Core OS Index</a> - <p>This is part of the c9-doc Manual. - Copyright (C) 2017 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/samhain.html b/core/samhain.html index 74f88fd..f161a16 100644 --- a/core/samhain.html +++ b/core/samhain.html @@ -255,8 +255,8 @@ <a href="index.html">Core OS Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2017 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/sysctl.html b/core/sysctl.html index ac1a74b..b871158 100644 --- a/core/sysctl.html +++ b/core/sysctl.html @@ -616,8 +616,8 @@ <a href="index.html">Core OS Index</a> - <p>This is part of the c9 Manual. - Copyright (C) 2017 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/tmux.html b/core/tmux.html index fe494b5..d6bc2c5 100644 --- a/core/tmux.html +++ b/core/tmux.html @@ -108,8 +108,8 @@ <a href="index.html">Core OS Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/toolchain.html b/core/toolchain.html index 04b58e3..0ed64bc 100644 --- a/core/toolchain.html +++ b/core/toolchain.html @@ -174,8 +174,8 @@ <a href="index.html">Core OS Index</a> - <p>This is part of the c9 Manual. - Copyright (C) 2017 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/core/tty-terminal.html b/core/tty-terminal.html index 1abf15e..2696119 100644 --- a/core/tty-terminal.html +++ b/core/tty-terminal.html @@ -72,8 +72,8 @@ <a href="index.html">Core OS Index</a> - <p>This is part of the c9 Manual. - Copyright (C) 2016 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/dev/c/datatypes.html b/dev/c/datatypes.html index 35b6ca4..58566a2 100644 --- a/dev/c/datatypes.html +++ b/dev/c/datatypes.html @@ -168,7 +168,7 @@ </dl> <a href="../index.html">Development Index</a> - <p>This is part of the c9 Manual. + <p>This is part of the Hive System Documentation. Copyright (C) 2018 c9 team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> diff --git a/dev/c/debugging.html b/dev/c/debugging.html index 4e5931f..2b29ab6 100644 --- a/dev/c/debugging.html +++ b/dev/c/debugging.html @@ -90,7 +90,7 @@ <a href="../index.html">Development Index</a> <p> - This is part of the c9-doc Manual. + This is part of the Hive System Documentation. Copyright (C) 2018 c9 team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> diff --git a/dev/c/elements.html b/dev/c/elements.html index c5eb87e..f421b85 100644 --- a/dev/c/elements.html +++ b/dev/c/elements.html @@ -54,7 +54,7 @@ <a href="../index.html">Development Index</a> <p> - This is part of the c9-doc Manual. + This is part of the Hive System Documentation. Copyright (C) 2018 c9 team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> diff --git a/dev/c/index.html b/dev/c/index.html index aeff035..325f61a 100644 --- a/dev/c/index.html +++ b/dev/c/index.html @@ -160,8 +160,8 @@ <a href="../index.html">Development Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/dev/c/lib.html b/dev/c/lib.html index fb4682b..ab320ed 100644 --- a/dev/c/lib.html +++ b/dev/c/lib.html @@ -246,7 +246,7 @@ <a href="../index.html">Development Index</a> <p> - This is part of the c9-doc Manual. + This is part of the Hive System Documentation. Copyright (C) 2018 c9 team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> diff --git a/dev/c/system.html b/dev/c/system.html index c91dc34..69816b6 100644 --- a/dev/c/system.html +++ b/dev/c/system.html @@ -171,8 +171,8 @@ <a href="../index.html">Development Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/dev/git/index.html b/dev/git/index.html index ad4700a..b41f7a1 100644 --- a/dev/git/index.html +++ b/dev/git/index.html @@ -340,8 +340,8 @@ </pre> <a href="../index.html">Development Index</a> - <p>This is part of the c9-doc Manual. - Copyright (C) 2016 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/dev/index.html b/dev/index.html index f9944d9..972d884 100644 --- a/dev/index.html +++ b/dev/index.html @@ -175,8 +175,8 @@ <a href="../index.html">Documentation Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2017 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/dev/js/index.html b/dev/js/index.html index ae7e946..66d5bdf 100644 --- a/dev/js/index.html +++ b/dev/js/index.html @@ -11,8 +11,8 @@ <a href="../index.html">Development Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/dev/perl/index.html b/dev/perl/index.html index 247a96f..e3c24ef 100644 --- a/dev/perl/index.html +++ b/dev/perl/index.html @@ -11,8 +11,8 @@ <a href="../index.html">Development Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/dev/php/index.html b/dev/php/index.html index 45e8f79..4ea8336 100644 --- a/dev/php/index.html +++ b/dev/php/index.html @@ -77,8 +77,8 @@ <a href="../index.html">Development Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2017 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/dev/python/index.html b/dev/python/index.html index e9b78eb..651ce11 100644 --- a/dev/python/index.html +++ b/dev/python/index.html @@ -26,8 +26,8 @@ <a href="../index.html">Development Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/dev/shell/dash.html b/dev/shell/dash.html index 3a0e6de..eb75abd 100644 --- a/dev/shell/dash.html +++ b/dev/shell/dash.html @@ -15,8 +15,8 @@ <h2 id="if">Conditions</h2> <a href="../index.html">Development Index</a> - <p>This is part of the c9-doc Manual. - Copyright (C) 2016 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/index.html b/index.html index 18af931..29cbabc 100644 --- a/index.html +++ b/index.html @@ -2,11 +2,11 @@ <html dir="ltr" lang="en"> <head> <meta charset='utf-8'> - <title>c9 Doc</title> + <title>Hive System Doc</title> </head> <body> - <h1>c9 Doc</h1> + <h1>Hive System Documentation</h1> <ul> <li><a href="core/index.html">Core OS</a></li> @@ -18,18 +18,18 @@ <h2>Ports</h2> - <p>Httup file - <a href="core/conf/ports/c9-ports.git">c9-ports.git</a> of - <a href="https://github.com/s1lvino/c9-ports/">c9-ports</a> + <p>Ports git driver file + <a href="core/conf/ports/ports.git">Ports driver</a> of + <a href="https://hive.gnu.systems/git/ports.git">Ports git</a> </p> <pre> - # Collection core + # Collection Ports Driver # - NAME=c9-ports - URL=git://github.com/s1lvino/c9-ports.git + NAME=ports + URL=git://hive.gnu.systems/git/ports.git BRANCH=develop - destination=/usr/ports/c9-ports + destination=/usr/ports/ports PORTS_DIR="/usr/ports" </pre> @@ -38,14 +38,14 @@ <p>Version;</p> <pre> - rev 0.3.4 + rev 0.3.5 </pre> <a href="links.html">Links</a> contains relevant references. Current upstream git repository;</p> <p> - <a href="https://github.com/s1lvino/c9-doc">https://github.com/s1lvino/c9-doc</a> + <a href="https://hive.gnu.systems/git/doc.git">https://hive.gnu.systems/git/doc.git</a> </p> diff --git a/tools/dnsmasq.html b/tools/dnsmasq.html index 0938cc0..a3b3ea8 100644 --- a/tools/dnsmasq.html +++ b/tools/dnsmasq.html @@ -68,7 +68,7 @@ <a href="index.html">Tools Index</a> <p> - This is part of the c9-doc Manual. + This is part of the Hive System Documentation. Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/fail2ban.html b/tools/fail2ban.html index 0238635..46c909c 100644 --- a/tools/fail2ban.html +++ b/tools/fail2ban.html @@ -46,7 +46,7 @@ <a href="index.html">Tools Index</a> <p> - This is part of the c9-doc Manual. + This is part of the Hive System Documentation. Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/gitolite.html b/tools/gitolite.html index 52d8cbd..cfb443b 100644 --- a/tools/gitolite.html +++ b/tools/gitolite.html @@ -825,7 +825,7 @@ </pre> <a href="index.html">Tools Index</a> - <p>This is part of the c9-doc Manual. + <p>This is part of the Hive System Documentation. Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> diff --git a/tools/gnupg.html b/tools/gnupg.html index 21aedcb..b009725 100644 --- a/tools/gnupg.html +++ b/tools/gnupg.html @@ -51,7 +51,7 @@ <pre> $ gpg2 --full-gen-key - gpg (GnuPG) 2.1.11; Copyright (C) 2016 Free Software Foundation, Inc. + gpg (GnuPG) 2.1.11; Copyright (C) 2018 Free Software Foundation, Inc. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. @@ -295,8 +295,8 @@ <a href="index.html">Tools Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/index.html b/tools/index.html index 5ecc70b..6c608e4 100644 --- a/tools/index.html +++ b/tools/index.html @@ -168,8 +168,8 @@ <a href="../index.html">Documentation Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2017 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/logrotate.html b/tools/logrotate.html index 39da406..2228c62 100644 --- a/tools/logrotate.html +++ b/tools/logrotate.html @@ -155,8 +155,8 @@ # logrotate -f /etc/logrotate.conf </pre> - <p>This is part of the c9-doc Manual. -Copyright (C) 2016 + <p>This is part of the Hive System Documentation. +Copyright (C) 2018 c9 team. See the file <a href="fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/lvm.html b/tools/lvm.html index b6c7678..347e502 100644 --- a/tools/lvm.html +++ b/tools/lvm.html @@ -158,8 +158,8 @@ <a href="index.html">Tools Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/mutt.html b/tools/mutt.html index 5c72e0c..5597600 100644 --- a/tools/mutt.html +++ b/tools/mutt.html @@ -311,8 +311,8 @@ <a href="index.html">Tools Index</a> <p> - This is part of the SysDoc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/network.html b/tools/network.html index 31ca60b..ba78bac 100644 --- a/tools/network.html +++ b/tools/network.html @@ -66,8 +66,8 @@ </pre> <a href="index.html">Tools Index</a> - <p>This is part of the c9 Manual. - Copyright (C) 2016 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/nginx.html b/tools/nginx.html index ef78ecb..9c735ea 100644 --- a/tools/nginx.html +++ b/tools/nginx.html @@ -60,11 +60,11 @@ <p>First run dryrun to test if everything is ok;</p> <pre> - # certbot certonly --dry-run --email user@mail.org --webroot -w /srv/www/c9-pmwiki/pub/cert/-d c9.root.sx + # certbot certonly --dry-run --email user@mail.org --webroot -w /srv/www/c9-pmwiki/pub/cert/-d hive.gnu.systems </pre> <pre> - # certbot certonly --email user@mail.org --webroot -w /srv/www/c9-pmwiki/pub/cert/-d c9.root.sx + # certbot certonly --email user@mail.org --webroot -w /srv/www/c9-pmwiki/pub/cert/-d hive.gnu.systems </pre> <h3 id="mancert">2.2. Self certificate</h2> @@ -392,8 +392,8 @@ <a href="index.html">Tools Index</a> - <p>This is part of the c9-doc Manual. - Copyright (C) 2016 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/nmap.html b/tools/nmap.html index c3d5316..0f0f1b4 100644 --- a/tools/nmap.html +++ b/tools/nmap.html @@ -24,7 +24,7 @@ <p>Or by hostname;</p> <pre> - # nmap -v c9.root.sx + # nmap -v hive.gnu.systems </pre> <p>Check OS and version detection;</p> diff --git a/tools/openssh.html b/tools/openssh.html index c70a5f5..f257f9c 100644 --- a/tools/openssh.html +++ b/tools/openssh.html @@ -301,8 +301,8 @@ </pre> <a href="index.html">Tools Index</a> - <p>This is part of the c9-doc Manual. - Copyright (C) 2016 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/postgresql.html b/tools/postgresql.html index 155f30c..c5b309c 100644 --- a/tools/postgresql.html +++ b/tools/postgresql.html @@ -316,8 +316,8 @@ <a href="index.html">Tools Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/qemu.html b/tools/qemu.html index e32d03f..1d745d4 100644 --- a/tools/qemu.html +++ b/tools/qemu.html @@ -401,7 +401,7 @@ </pre> <a href="index.html">Tools Index</a> - <p>This is part of the c9 Manual. + <p>This is part of the Hive System Documentation. Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> diff --git a/tools/scripts/replace.sh b/tools/scripts/replace.sh index e925e7d..8d5d8d9 100755 --- a/tools/scripts/replace.sh +++ b/tools/scripts/replace.sh @@ -5,4 +5,5 @@ folder=$1 oldstring=$2 newstring=$3 -grep -rl $oldstring $folder | xargs sed -i s@$oldstring@$newstring@g +#grep -rl $oldstring $folder | xargs sed -i s@$oldstring@$newstring@g +grep -rl "$oldstring" $folder | xargs sed -i "s@$oldstring@$newstring@g" diff --git a/tools/squid.html b/tools/squid.html index f34c2dd..cdf28cb 100644 --- a/tools/squid.html +++ b/tools/squid.html @@ -65,8 +65,8 @@ ssl_bump bump all </pre> <a href="index.html">Tools Index</a> - <p>This is part of the c9-doc Manual. - Copyright (C) 2016 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/storage.html b/tools/storage.html index 2fc95d4..f745cc7 100644 --- a/tools/storage.html +++ b/tools/storage.html @@ -91,8 +91,8 @@ <a href="index.html">Tools Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/syslog-ng.html b/tools/syslog-ng.html index f1ed95b..a799a16 100644 --- a/tools/syslog-ng.html +++ b/tools/syslog-ng.html @@ -144,7 +144,7 @@ <a href="index.html">Tools Index</a> - <p>This is part of the c9-doc Manual. + <p>This is part of the Hive System Documentation. Copyright (C) 2018 c9 team. See the file <a href="fdl-1.3-standalone.html">Gnu Free Documentation License</a> diff --git a/tools/tar.html b/tools/tar.html index 1cafbb6..19708be 100644 --- a/tools/tar.html +++ b/tools/tar.html @@ -122,8 +122,8 @@ <a href="index.html">Tools Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/vim.html b/tools/vim.html index 8210681..15c526f 100644 --- a/tools/vim.html +++ b/tools/vim.html @@ -173,8 +173,8 @@ <h2 id="plugin">6. Plugins</h2> <a href="index.html">Systools Index</a> - <p>This is part of the c9-doc Manual. - Copyright (C) 2016 + <p>This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/x.html b/tools/x.html index 8a68c5b..cbc9d3e 100644 --- a/tools/x.html +++ b/tools/x.html @@ -230,8 +230,8 @@ <a href="index.html">Tools Index</a> <p> - This is part of the c9-doc Manual. - Copyright (C) 2016 + This is part of the Hive System Documentation. + Copyright (C) 2018 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> |