diff options
| author | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-06-03 14:32:34 +0000 |
|---|---|---|
| committer | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-06-03 14:32:34 +0000 |
| commit | 8df1d35909ec2d57a6845f5b2c26ee1e83cfd032 (patch) | |
| tree | 88e5aaa8cf9d3c0538cdff935a56786705548d75 /baselayout/profile | |
| parent | 96ec28ea0d2c05032f40f50bc6b9de7020138f57 (diff) | |
| download | alicelinux-8df1d35909ec2d57a6845f5b2c26ee1e83cfd032.tar.gz alicelinux-8df1d35909ec2d57a6845f5b2c26ee1e83cfd032.zip | |
Woodpecker CI 5171f1fdd74e7137c305450dd69a29fa5be4143f [SKIP CI]
Diffstat (limited to 'baselayout/profile')
| -rw-r--r-- | baselayout/profile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/baselayout/profile b/baselayout/profile new file mode 100644 index 00000000..1d327a82 --- /dev/null +++ b/baselayout/profile @@ -0,0 +1,14 @@ +# /etc/profile + +# Set the initial path +export PATH=/bin:/usr/bin:/sbin:/usr/sbin + +# Set umask +umask 022 + +for script in /etc/profile.d/*.sh ; do + if [ -r $script ] ; then + . $script + fi + unset script +done |