We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f53cf46 commit 5324bf4Copy full SHA for 5324bf4
1 file changed
config/scripts/GRMLBASE/98-clean-chroot
@@ -20,6 +20,13 @@ fi
20
echo "Installing files into /etc/skel"
21
fcopy -M -i -B -v -r /etc/skel
22
23
+# deliver files which need to be executable as such.
24
+for file in /etc/skel/.xinitrc /etc/skel/.xsession /etc/skel/.xinitrc.d ; do
25
+ if [ -e "${target}/${file}" ] ; then
26
+ $ROOTCMD chmod -R a+rx "${file}"
27
+ fi
28
+done
29
+
30
echo "Creating ~/.zshrc"
31
touch "$target"/root/.zshrc
32
0 commit comments