Browse Source

Move dconf command to mesh startup script

Bob Mottram 8 years ago
parent
commit
e89f9bc5f5
2 changed files with 5 additions and 3 deletions
  1. 0
    3
      src/freedombone-image-customise
  2. 5
    0
      src/freedombone-image-mesh

+ 0
- 3
src/freedombone-image-customise View File

@@ -1153,9 +1153,6 @@ function configure_user_interface {
1153 1153
 		mesh_client_startup_applications
1154 1154
 		mesh_desktop_icons
1155 1155
 
1156
-		# disable screen lock
1157
-		chroot "$rootdir" dconf write /org/gnome/desktop/screensaver/lock-enabled false
1158
-
1159 1156
 		# change the desktop background
1160 1157
 		if [ $MESH_DESKTOP_BACKGROUND_IMAGE ]; then
1161 1158
 			if [ -f $MESH_DESKTOP_BACKGROUND_IMAGE ]; then

+ 5
- 0
src/freedombone-image-mesh View File

@@ -359,6 +359,10 @@ function disable_password_logins {
359 359
 	sed -i 's|PasswordAuthentication.*|PasswordAuthentication no|g' /etc/ssh/sshd_config
360 360
 }
361 361
 
362
+function disable_screen_lock {
363
+	dconf write /org/gnome/desktop/screensaver/lock-enabled false
364
+}
365
+
362 366
 if [ -f /root/.initial_mesh_setup ]; then
363 367
 	if [ $1 ]; then
364 368
 		MY_USERNAME=$1
@@ -381,6 +385,7 @@ if [ -f /root/.initial_mesh_setup ]; then
381 385
 	configure_toxcore
382 386
 	configure_zeronet
383 387
 	disable_password_logins
388
+	disable_screen_lock
384 389
 
385 390
 	rm /root/.initial_mesh_setup
386 391
 	systemctl disable mesh-setup.service