fix
This commit is contained in:
parent
1a14e80d37
commit
890d523543
1 changed files with 40 additions and 31 deletions
|
@ -343,9 +343,11 @@ gitclone
|
||||||
# startup
|
# startup
|
||||||
cp /opt/${repo}/startup /usr/bin/
|
cp /opt/${repo}/startup /usr/bin/
|
||||||
chmod 755 /usr/bin/startup
|
chmod 755 /usr/bin/startup
|
||||||
|
if ! [ "${version}" == "libre-xfce4-openrc" ]; then
|
||||||
cp /opt/${repo}/startup.service /etc/systemd/system/
|
cp /opt/${repo}/startup.service /etc/systemd/system/
|
||||||
chmod 644 /etc/systemd/system/startup.service
|
chmod 644 /etc/systemd/system/startup.service
|
||||||
systemctl enable startup.service
|
systemctl enable startup.service
|
||||||
|
fi
|
||||||
|
|
||||||
# pacman-config
|
# pacman-config
|
||||||
if [ "${version%-*-*}" == "libre" ]; then
|
if [ "${version%-*-*}" == "libre" ]; then
|
||||||
|
@ -446,14 +448,18 @@ then
|
||||||
echo "[Service]" > /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
echo "[Service]" > /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
||||||
echo "ExecStart=" >> /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
echo "ExecStart=" >> /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
||||||
echo "ExecStart=-/usr/bin/agetty --autologin root -s %I 115200,38400,9600 vt102" >> /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
echo "ExecStart=-/usr/bin/agetty --autologin root -s %I 115200,38400,9600 vt102" >> /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
||||||
|
if ! [ "${version}" == "libre-xfce4-openrc" ]; then
|
||||||
systemctl enable getty@tty1
|
systemctl enable getty@tty1
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
mkdir -p /etc/systemd/system/getty\@tty1.service.d
|
mkdir -p /etc/systemd/system/getty\@tty1.service.d
|
||||||
echo "[Service]" > /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
echo "[Service]" > /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
||||||
echo "ExecStart=" >> /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
echo "ExecStart=" >> /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
||||||
echo "ExecStart=-/usr/bin/agetty --autologin $username -s %I 115200,38400,9600 vt102" >> /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
echo "ExecStart=-/usr/bin/agetty --autologin $username -s %I 115200,38400,9600 vt102" >> /etc/systemd/system/getty\@tty1.service.d/autologin.conf
|
||||||
|
if ! [ "${version}" == "libre-xfce4-openrc" ]; then
|
||||||
systemctl enable getty@tty1
|
systemctl enable getty@tty1
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
elif [ "$start" == "xdm" ]
|
elif [ "$start" == "xdm" ]
|
||||||
then
|
then
|
||||||
|
@ -468,6 +474,7 @@ else
|
||||||
echo "Kein Start gewählt!!!"
|
echo "Kein Start gewählt!!!"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if ! [ "${version}" == "libre-xfce4-openrc" ]; then
|
||||||
systemctl enable acpid
|
systemctl enable acpid
|
||||||
systemctl enable ntpd
|
systemctl enable ntpd
|
||||||
systemctl enable avahi-daemon
|
systemctl enable avahi-daemon
|
||||||
|
@ -488,6 +495,7 @@ systemctl disable dhcpcd
|
||||||
systemctl enable NetworkManager.service
|
systemctl enable NetworkManager.service
|
||||||
systemctl enable bluetooth.service
|
systemctl enable bluetooth.service
|
||||||
systemctl enable httpd
|
systemctl enable httpd
|
||||||
|
fi
|
||||||
|
|
||||||
# set systemconfiguration
|
# set systemconfiguration
|
||||||
echo "systemconfiguration"
|
echo "systemconfiguration"
|
||||||
|
@ -628,8 +636,9 @@ if [ -f /etc/systemd/system/x11vnc.service ]; then
|
||||||
fi
|
fi
|
||||||
cp /opt/${repo}/x11vnc.service /etc/systemd/system/x11vnc.service
|
cp /opt/${repo}/x11vnc.service /etc/systemd/system/x11vnc.service
|
||||||
chmod 644 /etc/systemd/system/x11vnc.service
|
chmod 644 /etc/systemd/system/x11vnc.service
|
||||||
|
if ! [ "${version}" == "libre-xfce4-openrc" ]; then
|
||||||
systemctl enable x11vnc.service
|
systemctl enable x11vnc.service
|
||||||
|
fi
|
||||||
# .Conky
|
# .Conky
|
||||||
compress restore /opt/${repo}/.Conky.tar.pxz /opt/
|
compress restore /opt/${repo}/.Conky.tar.pxz /opt/
|
||||||
chmod 755 -Rv /opt/.Conky/
|
chmod 755 -Rv /opt/.Conky/
|
||||||
|
|
Loading…
Reference in a new issue