#### RIMUOVI TUTTI I COMMENTI IN ITALIANO E TUTTI GLI ESEMPI DA QUESTO TEMPLATE #### Per i dettagli leggere http://www.slacky.eu/wikislack/index.php?title=Linee_guida_per_pacchettizzatori #### Aggiungete una riga vuota alla fine del file. ## se avete file di configurazione (.new) config() { NEW="$1" OLD="$(dirname $NEW)/$(basename $NEW .new)" # If there's no config file by that name, mv it over: if [ ! -r $OLD ]; then mv $NEW $OLD elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy rm $NEW fi # Otherwise, we leave the .new copy for the admin to consider... } config etc/configfile.new config etc/program/my.conf.new ## se avete script di start in rc.d if [ -e etc/rc.d/rc.script ]; then cp -a etc/rc.d/rc.script etc/rc.d/rc.script.new.incoming cat etc/rc.d/rc.script.new > etc/rc.d/rc.script.new.incoming mv etc/rc.d/rc.script.new.incoming etc/rc.d/rc.script.new fi config etc/rc.d/rc.script.new ## se avete applicazioni grafiche con icone, menù ecc... if [ -x /usr/bin/update-desktop-database ]; then usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 fi if [ -x /usr/bin/update-mime-database ]; then usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 fi if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then if [ -x /usr/bin/gtk-update-icon-cache ]; then usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 fi fi ## se dovete aggiungere utenti if ! grep -q "^nomegruppo:" etc/group; then chroot . groupadd nomegruppo &>/dev/null fi if ! grep -q "^nomeutente:" etc/passwd; then chroot . useradd -d /var/lib/nomeprogramma -s /bin/false -c "Descrizione Utente" -g nomegruppo nomeutente &>/dev/null fi ## e poi date i permessi corretti ai vostri file. chown -R nomeutente.nomegruppo var/lib/nomeprogramma