summaryrefslogtreecommitdiff
path: root/configs/profile/root-image
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2018-07-06 11:12:18 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2020-03-27 19:32:36 -0400
commitdd96275439fc528da998004ca1492cb8efbdb1e6 (patch)
tree360ec02e190b7ecc25f8bb2a848170fda0586d4d /configs/profile/root-image
parente4fd6acd2d59cd10450fc57cf89e2dcc3c1e9c87 (diff)
housekeeping
Diffstat (limited to 'configs/profile/root-image')
-rwxr-xr-xconfigs/profile/root-image/root/customize_root_image.sh10
-rw-r--r--configs/profile/root-image/usr/share/parabola-laf/news/news-04
2 files changed, 6 insertions, 8 deletions
diff --git a/configs/profile/root-image/root/customize_root_image.sh b/configs/profile/root-image/root/customize_root_image.sh
index 4ce914a..eda5c64 100755
--- a/configs/profile/root-image/root/customize_root_image.sh
+++ b/configs/profile/root-image/root/customize_root_image.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-### post-install chroot customization script ###
+## post-install chroot customization script ##
set -e -u
source /root/customize_root_image-constants.inc
@@ -35,9 +35,9 @@ then # delete files that are specific to other init systems
# enable services
for service in ${OPENRC_SERVICES} ; do rc-update add ${service} default ; done ;
- # create the dbus user and group if it does not exist
- if [[ "$(grep 'dbus' /etc/group )" = "" ]] ; then groupadd -g 81 dbus ; fi ;
- if [[ "$(grep 'dbus' /etc/passwd)" = "" ]] ; then useradd -r -s /sbin/nologin -g 81 -u 81 dbus ; fi ;
+ # create the 'dbus' group and user if they do not exist
+ if ! grep 'dbus' /etc/group > /dev/null ; then groupadd -g 81 dbus ; fi ;
+ if ! grep 'dbus' /etc/passwd > /dev/null ; then useradd -r -s /sbin/nologin -u 81 -g 81 dbus ; fi ;
elif [[ "${ISO_INIT}" == 'systemd' ]]
then # delete files that are specific to other init systems
@@ -76,7 +76,7 @@ else # configure GUI login session
# configure live user
[[ -n "$(id ${LIVE_USER} 2> /dev/null)" ]] && userdel -r ${LIVE_USER} 2> /dev/null
- useradd -m -p "" -g users -G "${USER_GROUPS}" -s ${DEFAULT_SHELL} ${LIVE_USER}
+ useradd -m -p "" -g users -G "${LIVE_USER_GROUPS}" -s ${DEFAULT_SHELL} ${LIVE_USER}
# configure auto-login
if [[ "${ISO_INIT}" == 'openrc' ]]
diff --git a/configs/profile/root-image/usr/share/parabola-laf/news/news-0 b/configs/profile/root-image/usr/share/parabola-laf/news/news-0
index 1039c82..25455cb 100644
--- a/configs/profile/root-image/usr/share/parabola-laf/news/news-0
+++ b/configs/profile/root-image/usr/share/parabola-laf/news/news-0
@@ -1,9 +1,7 @@
-This LiveISO is running the LXDE desktop environment that is as close as possible of an experience to a fully installed Parabola Operating System in its default configuration. Many other desktop environments are available after install. Use the "Install Parabola" desktop shortcut to begin the install.
+This LiveISO is running the LXDE desktop environment that is as close as possible of an experience to a fully installed Parabola Operating System in its standard graphical configuration. Many other desktop environments are available after install. Use the "Install Parabola" desktop shortcut to begin the install.
Standard installation requires 9GB of disk space and 1GB RAM (or RAM plus swap space). Installation from the 'netinstall' ISOs requires an active connection to the internet; whereas the 'complete' ISOs contain everything necessary to install Parabola offline. The title of this window indicates the distinction.
For computers with less than 1GB RAM, the command-line ~/install-openrc-lxde.sh and ~/install-systemd-mate.sh scripts are provided; either of which can be used to install either a minimal command-line system or a full graphical system.
-This is a beta preview release featuring the calamares graphical installer. As such, there may be some quirks with the appearance or behavior; but most normal functionality is expected to work properly.
-
Please report any bugs that you may find to the Parabola "Installation Media" bug tracker using the "Report a Bug" desktop shortcut. If you have any other questions or comments, feel free to join the Parabola support chat using the "Parabola IRC Channel" desktop shortcut.