Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mkimage-profiles
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
mkimage-profiles
Commits
ead23b5d
Commit
ead23b5d
authored
May 02, 2024
by
Anton Midyukov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup: create postinstall script for cleanup package for live with installer
parent
4d04c1c2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
+30
-0
90-cleanup-live-install-pkgs
...cleanup/live/image-scripts.d/90-cleanup-live-install-pkgs
+30
-0
No files found.
features.in/cleanup/live/image-scripts.d/90-cleanup-live-install-pkgs
0 → 100755
View file @
ead23b5d
#!/bin/sh -efu
### create a postinstall script to drop temporarily needed packages
if
[
-n
"
$GLOBAL_VERBOSE
"
]
;
then
echo
"** GLOBAL_CLEANUP_PACKAGES:
$GLOBAL_CLEANUP_PACKAGES
"
echo
"** GLOBAL_CLEANUP_BASE_PACKAGES:
$GLOBAL_CLEANUP_BASE_PACKAGES
"
fi
>
&2
[
-n
"
$GLOBAL_CLEANUP_PACKAGES
"
]
||
[
-n
"
$GLOBAL_CLEANUP_BASE_PACKAGES
"
]
||
exit
0
[
-x
/usr/sbin/install2-init
]
||
exit
0
CLEANUP_PACKAGES
=
"
$GLOBAL_CLEANUP_PACKAGES
$GLOBAL_CLEANUP_BASE_PACKAGES
"
SCRIPT
=
"/usr/share/install2/postinstall.d/01-remove-pkgs"
cat
>
"
$SCRIPT
"
<<
EOF
#!/bin/sh -efu
. install2-init-functions
# don't override the script start message on the same line
echo "removing
$CLEANUP_PACKAGES
"
# remove temporary packages from the installed system
list="\
$(
exec_chroot rpmquery
-a
--qf
=
'%{NAME}\\n'
$CLEANUP_PACKAGES
)
"
[ -z "\
$list
" ] || exec_chroot apt-get remove -f -y -- \
$list
EOF
chmod
+x
"
$SCRIPT
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment