OSDN Git Service

start instantARCH markers
[instantos/instantARCH.git] / chroot / chroot.sh
index 5a83970..4ad9af5 100755 (executable)
@@ -11,7 +11,7 @@ else
 fi
 
 # set up instantwm as a default user session
-if grep-q '^user-session.*' /etc/lightdm/lightdm.conf; then
+if grep -q '^user-session.*' /etc/lightdm/lightdm.conf; then
     echo "adjusting user session"
     sed -i 's/^user-session=.*/user-session=instantwm/g' /etc/lightdm/lightdm.conf
 fi
@@ -19,18 +19,29 @@ fi
 # fix gui not showing up
 sed -i 's/^#logind-check-graphical=.*/logind-check-graphical=true/' /etc/lightdm/lightdm.conf
 
+echo '# modified by instantARCH' >>/etc/lightdm/lightdm.conf
+
 # needed to get internet to work
 if ! [ -e /opt/topinstall ] && ! iroot partswap; then
-    if ! grep -iq manjaro /etc/os-release; then
-        # enable swap
-        systemctl enable systemd-swap
-        sed -i 's/^swapfc_enabled=.*/swapfc_enabled=1/' /etc/systemd/swap.conf
+    if command -v systemctl; then
+        if ! grep -iq manjaro /etc/os-release; then
+            # enable swap
+            systemctl enable systemd-swap
+            {
+                echo "swapfc_enabled=1"
+                echo "swapfc_max_count=8"
+            } >>/etc/systemd/swap.conf
+        fi
     fi
 fi
 
 sed -i 's/# %wheel/%wheel/g' /etc/sudoers
-systemctl enable lightdm
-systemctl enable NetworkManager
+echo 'Defaults env_reset,pwfeedback' >>/etc/sudoers
+
+if command -v systemctl; then
+    systemctl enable lightdm
+    systemctl enable NetworkManager
+fi
 
 if ! command -v update-grub &>/dev/null; then
     # can't include this in package
@@ -38,3 +49,9 @@ if ! command -v update-grub &>/dev/null; then
 grub-mkconfig -o /boot/grub/grub.cfg' >/usr/bin/update-grub
     chmod 755 /usr/bin/update-grub
 fi
+
+# indicator file
+if iroot kvm; then
+    [ -e /opt/instantos ] || mkdir -p /opt/instantos
+    echo "kvm" >/opt/instantos/kvm
+fi