Updated
Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
parent
0fe91b013a
commit
56a12a1af2
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/sh
|
||||||
|
###
|
||||||
|
# Wrapper for running calamares on Peppermint live media
|
||||||
|
###
|
||||||
|
|
||||||
|
# Stale file left behind by live-build that messes with partitioning
|
||||||
|
sudo mv /etc/fstab /etc/fstab.orig.calamares
|
||||||
|
|
||||||
|
# Access control to run calamares as root for xwayland
|
||||||
|
#xhost +si:localuser:root
|
||||||
|
pkexec calamares
|
||||||
|
#pkexec calamares --debug | sudo tee /var/log/Calamares-Install.log
|
||||||
|
xhost -si:localuser:root
|
||||||
|
|
||||||
|
# Restore stale fstab, for what it's worth
|
||||||
|
sudo mv /etc/fstab.orig.calamares /etc/fstab
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
type: "job"
|
||||||
|
name: "bootloader-config"
|
||||||
|
interface: "process"
|
||||||
|
command: "/usr/sbin/bootloader-config"
|
||||||
|
timeout: 600
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
type: "job"
|
||||||
|
name: "dpkg-unsafe-io-undo"
|
||||||
|
interface: "process"
|
||||||
|
command: "/usr/sbin/dpkg-unsafe-io -u"
|
||||||
|
timeout: 600
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
type: "job"
|
||||||
|
name: "dpkg-unsafe-io"
|
||||||
|
interface: "process"
|
||||||
|
command: "/usr/sbin/dpkg-unsafe-io"
|
||||||
|
timeout: 600
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
type: "job"
|
||||||
|
name: "grub-defaults"
|
||||||
|
interface: "process"
|
||||||
|
command: "/usr/sbin/grub-defaults"
|
||||||
|
timeout: 600
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
type: "job"
|
||||||
|
name: "sources-final"
|
||||||
|
interface: "process"
|
||||||
|
command: "/usr/sbin/sources-final"
|
||||||
|
timeout: 600
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
type: "job"
|
||||||
|
name: "sources-media-unmount"
|
||||||
|
interface: "process"
|
||||||
|
command: "/usr/sbin/sources-media -u"
|
||||||
|
timeout: 600
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
type: "job"
|
||||||
|
name: "sources-media"
|
||||||
|
interface: "process"
|
||||||
|
command: "/usr/sbin/sources-media"
|
||||||
|
timeout: 600
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
type: "job"
|
||||||
|
name: "update-system"
|
||||||
|
interface: "process"
|
||||||
|
command: "/usr/sbin/update-system"
|
||||||
|
timeout: 600
|
|
@ -287,7 +287,7 @@ LOADED_LIST = ('xfce4\n'
|
||||||
'xdg-user-dirs-gtk\n'
|
'xdg-user-dirs-gtk\n'
|
||||||
'squashfs-tools\n'
|
'squashfs-tools\n'
|
||||||
#'calamares\n' ## These are in the GENERAL_SHARED_LIST
|
#'calamares\n' ## These are in the GENERAL_SHARED_LIST
|
||||||
#'calamares-settings-debian\n' ## in the GENERAL_SHARED_LIST
|
'calamares-settings-debian\n' ## in the GENERAL_SHARED_LIST
|
||||||
)
|
)
|
||||||
|
|
||||||
SERVER_LIST = ('zonefstoolspep\n'
|
SERVER_LIST = ('zonefstoolspep\n'
|
||||||
|
|
Loading…
Reference in New Issue