summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile10
-rw-r--r--PKGBUILD2
-rw-r--r--functions4
-rw-r--r--parabola.7.txt (renamed from archlinux.7.txt)9
-rw-r--r--rc.conf4
-rw-r--r--rc.conf.5.txt2
6 files changed, 16 insertions, 15 deletions
diff --git a/Makefile b/Makefile
index 5829fd9..d2668db 100644
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,7 @@ install: installdirs doc
install -m755 -t $(DESTDIR)/etc/profile.d locale.sh
install -m755 -t $(DESTDIR)/usr/sbin rc.d
install -m644 -t $(DESTDIR)/usr/share/man/man5 rc.conf.5
- install -m644 -t $(DESTDIR)/usr/share/man/man7 archlinux.7
+ install -m644 -t $(DESTDIR)/usr/share/man/man7 parabola.7
install -m644 -t $(DESTDIR)/usr/share/man/man8 rc.d.8 arch-modules-load.8 arch-daemons.8
install -m755 -t $(DESTDIR)/usr/lib/systemd/system-generators arch-daemons
install -m755 -t $(DESTDIR)/usr/lib/systemd arch-modules-load
@@ -54,16 +54,16 @@ install: installdirs doc
%.8: %.8.txt
a2x -d manpage -f manpage $<
-doc: rc.conf.5 archlinux.7 rc.d.8 arch-modules-load.8 arch-daemons.8
+doc: rc.conf.5 parabola.7 rc.d.8 arch-modules-load.8 arch-daemons.8
clean:
- rm -f rc.conf.5 archlinux.7 rc.d.8 arch-modules-load.8 arch-daemons.8
+ rm -f rc.conf.5 parabola.7 rc.d.8 arch-modules-load.8 arch-daemons.8
tar:
git archive HEAD --prefix=initscripts-$(VER)/ | xz > initscripts-$(VER).tar.xz
release: tar
- scp initscripts-$(VER).tar.xz pkgbuild.com:~/packages/initscripts/trunk/
- scp initscripts-$(VER).tar.xz gerolde.archlinux.org:/srv/ftp/other/initscripts/
+ gpg --sign --detach initscripts-$(VER).tar.xz
+ scp initscripts-$(VER).tar.xz{,.sig} parabola:public/other/
.PHONY: all installdirs install doc clean tar release
diff --git a/PKGBUILD b/PKGBUILD
index 7f0e845..ccfeee4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@ pkgver=$(date +%Y%m%d)
pkgrel=$(git log -1 --pretty=format:%h)
pkgdesc="System initialization/bootup scripts"
arch=('any')
-url="https://www.archlinux.org"
+url="https://parabolagnulinux.org"
license=('GPL')
groups=('base')
conflicts=('initscripts')
diff --git a/functions b/functions
index 66e2242..506ce0f 100644
--- a/functions
+++ b/functions
@@ -756,7 +756,7 @@ if [[ $USECOLOR != [nN][oO] ]]; then
if tput setaf 0 &>/dev/null; then
C_CLEAR=$(tput sgr0) # clear text
C_MAIN=${C_CLEAR}$(tput bold) # main text
- C_OTHER=${C_MAIN}$(tput setaf 4) # prefix & brackets
+ C_OTHER=${C_MAIN}$(tput setaf 5) # prefix & brackets
C_SEPARATOR=${C_MAIN}$(tput setaf 0) # separator
C_BUSY=${C_CLEAR}$(tput setaf 6) # busy
C_FAIL=${C_MAIN}$(tput setaf 1) # failed
@@ -767,7 +767,7 @@ if [[ $USECOLOR != [nN][oO] ]]; then
else
C_CLEAR="\e[m" # clear text
C_MAIN="\e[;1m" # main text
- C_OTHER="\e[1;34m" # prefix & brackets
+ C_OTHER="\e[1;35m" # prefix & brackets
C_SEPARATOR="\e[1;30m" # separator
C_BUSY="\e[;36m" # busy
C_FAIL="\e[1;31m" # failed
diff --git a/archlinux.7.txt b/parabola.7.txt
index 32517fb..7415101 100644
--- a/archlinux.7.txt
+++ b/parabola.7.txt
@@ -1,20 +1,20 @@
/////
vim:set ts=4 sw=4 syntax=asciidoc noet:
/////
-archlinux(7)
+parabola(7)
============
NAME
----
-archlinux - basic configuration
+parabola - basic configuration
SYNOPSIS
--------
-Overview of the basic configuration of Arch Linux.
+Overview of the basic configuration of Parabola GNU/Linux-libre.
DESCRIPTION
-----------
-Arch Linux exposes the user to the system without hiding any details. This manpage gives a
+Parabola exposes the user to the system without hiding any details. This manpage gives a
brief overview of the configuration files that should be set up on a fresh install.
INITSCRIPTS[[I]]
@@ -78,3 +78,4 @@ mkinitcpio(8), pacman(8), pacman.conf(5), grub-mkconfig(8), syslinux(1), modules
AUTHORS
-------
Written by Tom Gundersen.
+Rebranded for Parabola by Nicolás Reynolds.
diff --git a/rc.conf b/rc.conf
index fc9ccdd..434dc96 100644
--- a/rc.conf
+++ b/rc.conf
@@ -2,12 +2,12 @@
# /etc/rc.conf - configuration file for initscripts
#
# Most of rc.conf has been replaced by various other configuration
-# files. See archlinux(7) for details.
+# files. See parabola(7) for details.
#
# For more details on rc.conf see rc.conf(5).
#
-DAEMONS=(syslog-ng network crond)
+DAEMONS=(metalog network crond)
# Storage
#
diff --git a/rc.conf.5.txt b/rc.conf.5.txt
index 73c2423..556d223 100644
--- a/rc.conf.5.txt
+++ b/rc.conf.5.txt
@@ -6,7 +6,7 @@ rc.conf(5)
NAME
----
-rc.conf - Arch Linux main configuration file
+rc.conf - Arch systems main configuration file
SYNOPSIS
--------