Skip to content
Snippets Groups Projects

test_with_chroot.sh: do not require superuser privileges

2 unresolved threads
5 files
+ 606
50
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 21
0
#!/bin/sh
#
# This script is run by the setup wizard after the setup wizard has completed successfully.
# 1. Remove autostart of reform-setup
rm /etc/profile.d/reform-setup.sh
# 2. Remove root autologin
rm /etc/systemd/system/getty@tty1.service.d/override.conf
systemctl daemon-reload
# 3. Enable and start greetd
systemctl enable greetd
systemctl start greetd
# 4. Exit
pkill sway
exit
Loading