forked from calamares/calamares
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Latest final-process (from share module)
- Loading branch information
Showing
2 changed files
with
103 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
script_path="$( cd -P "$( dirname "$(readlink -f "${0}")" )" && pwd )" | ||
script_name="$(basename "$(realpath "${0}")")" | ||
|
||
function remove () { | ||
local list | ||
local file | ||
list=($(echo "$@")) | ||
for file in "${list[@]}"; do | ||
if [[ -f ${file} ]]; then | ||
rm -f "${file}" | ||
elif [[ -d ${file} ]]; then | ||
rm -rf "${file}" | ||
fi | ||
done | ||
rm -rf "${@}" | ||
} | ||
|
||
while getopts 'u:' arg; do | ||
|
@@ -19,35 +15,54 @@ while getopts 'u:' arg; do | |
esac | ||
done | ||
|
||
function remove_user_file(){ | ||
remove "/etc/skel/${@}" | ||
remove "/home/${user}/${@}" | ||
} | ||
|
||
|
||
remove /etc/skel/Desktop | ||
remove /etc/skel/.config/gtk-3.0/bookmarks | ||
remove /home/${user}/Desktop/calamares.desktop | ||
remove /root/Desktop/calamares.desktop | ||
remove /home/${user}/.config/gtk-3.0/bookmarks | ||
remove /usr/share/calamares/ | ||
|
||
remove_user_file "Desktop/calamares.desktop" | ||
remove_user_file ".config/gtk-3.0/bookmarks" | ||
|
||
|
||
remove /etc/polkit-1/rules.d/01-nopasswork.rules | ||
|
||
# Delete unnecessary files of archiso. | ||
# See the following site for details. | ||
# https://wiki.archlinux.jp/index.php/Archiso#Chroot_.E3.81.A8.E3.83.99.E3.83.BC.E3.82.B9.E3.82.B7.E3.82.B9.E3.83.86.E3.83.A0.E3.81.AE.E8.A8.AD.E5.AE.9A | ||
|
||
remove /etc/systemd/system/[email protected]/autologin.conf | ||
remove /root/.automated_script.sh | ||
remove /etc/mkinitcpio-archiso.conf | ||
remove /etc/initcpio | ||
|
||
# Delete systemd files | ||
remove /etc/systemd/journald.conf.d/volatile-storage.conf | ||
remove /airootfs.any/etc/systemd/logind.conf.d/do-not-suspend.conf | ||
|
||
remove /etc/udev/rules.d/81-dhcpcd.rules | ||
remove /etc/systemd/system/[email protected] | ||
remove /etc/systemd/system/alteriso-reflector.service | ||
|
||
if [[ -f /etc/systemd/journald.conf ]]; then | ||
sed -i 's/Storage=volatile/#Storage=auto/' /etc/systemd/journald.conf | ||
fi | ||
|
||
# Disabled auto login | ||
# Disabled auto login for LightDM | ||
if [[ -f "/etc/lightdm/lightdm.conf" ]]; then | ||
sed -i "s/^autologin/#autologin/g" "/etc/lightdm/lightdm.conf" | ||
fi | ||
remove "/etc/lightdm/lightdm.conf.d/02-autologin-"* | ||
|
||
# Disabled auto login for GDM | ||
if [[ -f "/etc/gdm/custom.conf" ]]; then | ||
sed -i "s/Automatic*/#Automatic/g" "/etc/gdm/custom.conf" | ||
fi | ||
|
||
# Remove dconf for live environment | ||
remove "/etc/dconf/db/local.d/02-disable-lock" | ||
remove "/etc/dconf/db/local.d/02-live-"* | ||
|
||
# Update system datebase | ||
if type dconf > /dev/null 2>&1 ; then | ||
dconf update | ||
fi | ||
|
||
# 追加のスクリプトを実行 | ||
if [[ -d "${script_path}/${script_name}.d/" ]]; then | ||
for extra_script in "${script_path}/${script_name}.d/"*; do | ||
bash -c "${extra_script} ${user}" | ||
done | ||
fi |