-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
initmenu creates the wrong file on line 45:
sudo cp /etc/systemd/system.conf /etc/systemd/system.conf.d/10-logind.conf && \
Should be:
sudo cp /etc/systemd/system.conf /etc/systemd/system.conf.d/10-system.conf && \
Also for me it overwrites the file if it exists? perhaps it could be:
system.conf)
if [ -f /etc/systemd/system.conf.d/10-system.conf ]
then sudo $TEXTEDITOR /etc/systemd/system.conf.d/10-system.conf
else
sudo mkdir -p /etc/systemd/system.conf.d/ && \
sudo cp /etc/systemd/system.conf /etc/systemd/system.conf.d/10-system.conf && \
sudo $TEXTEDITOR /etc/systemd/system.conf.d/10-system.conf
fi
break
;;
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels