L'ISO Debian-Facile est un projet visant à faire découvrir l'univers GNU/Linux aux très grand·e·s débutant·e·s.
https://debian-facile.org/projets:iso-debian-facile
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
238 B
8 lines
238 B
11 months ago
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# aucun mot de passe demandé pour entrer en mode recovery
|
||
|
mkdir -p "/etc/systemd/system/rescue.service.d/"
|
||
|
echo "[Service]\nEnvironment=SYSTEMD_SULOGIN_FORCE=1\n" > "/etc/systemd/system/rescue.service.d/override.conf"
|