2023-07-11 06:48:53 +00:00
|
|
|
#!/bin/bash
|
2024-05-21 04:35:35 +00:00
|
|
|
# run the main Hooks python module
|
2024-05-20 12:39:01 +00:00
|
|
|
python3 /usr/lib/python3/dist-packages/pepperpy/hooks.py
|
|
|
|
|
2024-05-21 06:57:46 +00:00
|
|
|
### Setting --apt-recommends and --apt-suggests defaults to '0'
|
|
|
|
echo -e "# Changing these values to \"1\" may quickly fill up a small partition" > /etc/apt/apt.conf.d/99No-Recommends
|
|
|
|
echo -e "APT::Install-Recommends \"0\";\nAPT::Install-Suggests \"0\";" >> /etc/apt/apt.conf.d/99No-Recommends
|
|
|
|
|
2023-07-12 11:08:41 +00:00
|
|
|
|