summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
Diffstat (limited to 'configs')
-rw-r--r--configs/profile/pacman.conf5
-rwxr-xr-xconfigs/profile/rebuild.sh27
2 files changed, 14 insertions, 18 deletions
diff --git a/configs/profile/pacman.conf b/configs/profile/pacman.conf
index 4c7e7fa..942f59d 100644
--- a/configs/profile/pacman.conf
+++ b/configs/profile/pacman.conf
@@ -103,8 +103,3 @@ Include = /etc/pacman.d/mirrorlist
#[custom]
#SigLevel = Optional TrustAll
#Server = file:///home/custompkgs
-
-
-[isorepo]
-SigLevel = Optional TrustAll
-Server = file:///home/bill/parabolaiso/configs/profile/work/x86_64/root-image/isorepo/
diff --git a/configs/profile/rebuild.sh b/configs/profile/rebuild.sh
index 72bb176..1bfc1d4 100755
--- a/configs/profile/rebuild.sh
+++ b/configs/profile/rebuild.sh
@@ -1,18 +1,19 @@
#!/bin/bash
-readonly MODE='wipe' # total wipe of work dir preserving package cache
-# readonly MODE='rebuild' # full update rebuild preserving work dir
-# readonly MODE='tweak' # chroot customization tweaks only
-# readonly TARGET='dual' # dual-arch (default)
-# readonly TARGET='i686' # i686 target only
-readonly TARGET='x86_64' # x86_64 target only
-# readonly EDITION='OpenRC/CLI' # OpenRC/CLI init/WM-DE pair
-# readonly EDITION='OpenRC/LXDE' # OpenRC/LXDE init/WM-DE pair
-# readonly EDITION='SystemD/CLI' # SystemD/CLI init/WM-DE pair (default)
-readonly EDITION='SystemD/LXDE' # SystemD/LXDE init/WM-DE pair
-# readonly CACHE='' # net-install (default)
-readonly CACHE='-O' # offline install
-readonly VERSION="`date +%Y.%m.%d-%H.%M`-alpha" # ISO filename like: parabola-<EDITION>-<TARGET>-<VERSION>.iso
+readonly MODE='wipe' # total wipe of work dir preserving package cache
+# readonly MODE='rebuild' # full update rebuild preserving work dir
+# readonly MODE='tweak' # apply chroot customization tweaks only
+readonly TARGET='dual' # dual-arch (default)
+# readonly TARGET='i686' # i686 target only
+# readonly TARGET='x86_64' # x86_64 target only
+# readonly EDITION='OpenRC/CLI' # OpenRC/CLI init/WM-DE pair
+# readonly EDITION='OpenRC/LXDE' # OpenRC/LXDE init/WM-DE pair
+readonly EDITION='SystemD/CLI' # SystemD/CLI init/WM-DE pair (default)
+# readonly EDITION='SystemD/LXDE' # SystemD/LXDE init/WM-DE pair
+readonly CACHE='' # net-install (default)
+# readonly CACHE='-O' # offline install
+readonly VERSION="`date +%Y.%m.%d`" # for ISO filename (default)
+# readonly VERSION="`date +%Y.%m.%d-%H.%M`-alpha"
((`id -u`)) && echo "This script must be run with root privileges." && exit