summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrafa_99 <raroma09@gmail.com>2022-08-07 13:32:04 +0100
committerrafa_99 <raroma09@gmail.com>2022-08-07 13:32:04 +0100
commit23f13b518611e9940d3c8c54d5df03131e63048f (patch)
treecb2ba96806aaa3e9882d32eeda8b5fbb82ebd126
parent607fbfc1b175e3d24c7518038dd3dec46444ef89 (diff)
Fixed parabola if statement
-rwxr-xr-xabi2
1 files changed, 1 insertions, 1 deletions
diff --git a/abi b/abi
index a4935be..8f6b471 100755
--- a/abi
+++ b/abi
@@ -136,7 +136,7 @@ case "$OS" in
"parabola")
printf "Select your init system:\n1) OpenRC\n2) SystemD (default)\n-> " && read -r INIT
- if [ "$INIT" -eq 2 ]; then
+ if [ "$INIT" -eq 1 ]; then
INIT="openrc"
else
INIT="systemd"