Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Utile (forse) script per chi usa il portatile
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian)
View previous topic :: View next topic  
Author Message
mrfree
Veteran
Veteran


Joined: 15 Mar 2003
Posts: 1303
Location: Europe.Italy.Sulmona

PostPosted: Tue Apr 29, 2003 2:54 pm    Post subject: Utile (forse) script per chi usa il portatile Reply with quote

Consiglio a tutti quelli che come me hanno bisogno di switchare diverse configurazioni, presumibilmente su un portatile e principalmente in base al giorno della settimana ... questo semplice init script

Code:
#!/sbin/runscript
# Copyright 2003 Frittella Laurento - MrFree
# Distributed under the terms of the GNU General Public License v2

# Profilo utilizzato in ufficio (Giorni Feriali)
OFFICE="Ufficio"
# Profilo utilizzato a casa (Giorni Festivi)
HOME="Casa"


TODAY=$(date +%a)

depend() {
        need net
        need clock
}

start() {
        ebegin "QuickSwitch of the Day ;) "

        case "$TODAY" in
           Mon | Tue | Wed | Thu | Fri )
                switchto $OFFICE &> /dev/null
           ;;
           Sat | Sun )
                switchto $HOME &> /dev/null
           ;;
        esac

        eend 0
}


Visto che ne avevo bisogno subito mi sono limitato a questo, ma se vi interessa in seguito potrei postare la versione che considera orario di lavoro e giorni di festa o di ferie, ovviamente indicati in un file di configurazione.

Ahhhh... compagno quickswitch :D
_________________
Please EU, pimp my country!

ICE: /etc/init.d/iptables panic
Back to top
View user's profile Send private message
cerri
Bodhisattva
Bodhisattva


Joined: 05 Mar 2003
Posts: 2957
Location: # init S

PostPosted: Tue Apr 29, 2003 3:16 pm    Post subject: Reply with quote

Code:
switchto
?
_________________
Enjoy your freedom.
Sex is like hacking. You get in, you get out, and you hope you didnt leave something behind that can be traced back to you.
<----------------------->
Andrea Cerrito
Back to top
View user's profile Send private message
mrfree
Veteran
Veteran


Joined: 15 Mar 2003
Posts: 1303
Location: Europe.Italy.Sulmona

PostPosted: Tue Apr 29, 2003 3:24 pm    Post subject: Reply with quote

Quote:
switchto


fa parte, in realtà è il cuore, dell'ebuild quickswitch mi pare se ne sia parlato qualche post fa riguardo a piccoli ma utilissimi software ... forse le storie con la tipa ti hanno distratto :wink:
_________________
Please EU, pimp my country!

ICE: /etc/init.d/iptables panic
Back to top
View user's profile Send private message
cerri
Bodhisattva
Bodhisattva


Joined: 05 Mar 2003
Posts: 2957
Location: # init S

PostPosted: Tue Apr 29, 2003 3:25 pm    Post subject: Reply with quote

...che le storie con la tipa mi abbiamo distratto si, ma che l'eseguibile switchto facesse parte di quickswitch (mai provato, mi basta dhcpcd :)) non lo sapevo... come potevo!?!?!? :D
_________________
Enjoy your freedom.
Sex is like hacking. You get in, you get out, and you hope you didnt leave something behind that can be traced back to you.
<----------------------->
Andrea Cerrito
Back to top
View user's profile Send private message
bsolar
Bodhisattva
Bodhisattva


Joined: 12 Jan 2003
Posts: 2764

PostPosted: Tue Apr 29, 2003 4:08 pm    Post subject: Reply with quote

mrfree wrote:
Quote:
switchto


fa parte, in realtà è il cuore, dell'ebuild quickswitch mi pare se ne sia parlato qualche post fa riguardo a piccoli ma utilissimi software ...

Parli di questo messaggio immagino... :wink:
_________________
I may not agree with what you say, but I'll defend to the death your right to say it.
Back to top
View user's profile Send private message
cerri
Bodhisattva
Bodhisattva


Joined: 05 Mar 2003
Posts: 2957
Location: # init S

PostPosted: Tue Apr 29, 2003 6:31 pm    Post subject: Reply with quote

bsolar wrote:
Parli di questo messaggio immagino... :wink:

Sicuramente... ma tra quickswitch e switchto ce ne corre... ;)
_________________
Enjoy your freedom.
Sex is like hacking. You get in, you get out, and you hope you didnt leave something behind that can be traced back to you.
<----------------------->
Andrea Cerrito
Back to top
View user's profile Send private message
Ginko
Guru
Guru


Joined: 01 May 2002
Posts: 371
Location: nearby my linux laptop

PostPosted: Wed Apr 30, 2003 8:56 am    Post subject: Re: Utile (forse) script per chi usa il portatile Reply with quote

mrfree wrote:
Consiglio a tutti quelli che come me hanno bisogno di switchare diverse configurazioni, presumibilmente su un portatile e principalmente in base al giorno della settimana ... questo semplice init script [..]


Io uso qualcosa di molto simile, in piu' pero', dovendo visitare diversi clienti e portandomi sempre il laptop appresso, ho la necessita' di scegliere il profile all'avvio.
E lo faccio mediante l'append
    prof=<profile>
in lilo.conf. Esempio :
Code:
[..]
prompt
timeout=50
default=auto
image=/boot/gentoo-2.4.19-r9_new
        label=auto
        read-only
        root=/dev/hda7
        append="prof=auto"
image=/boot/gentoo-2.4.19-r9_new
        label=customer1
        read-only
        root=/dev/hda7
        append="prof=customer1"
image=/boot/gentoo-2.4.19-r9_new
        label=customer2
        read-only
        root=/dev/hda7
        append="prof=customer2"
image=/boot/gentoo-2.4.19-r9_new
        label=casa
        read-only
        root=/dev/hda7
        append="prof=casa"

Il profilo scelto me lo ritrovo poi in /proc/cmdline che posso leggere da uno
start-up script simile al tuo. In effetti il profilo auto fa esattamente quello che fai tu verificando che giorno e' :-)

Saluti
--Gianluca
Back to top
View user's profile Send private message
poisson
n00b
n00b


Joined: 24 Nov 2002
Posts: 35

PostPosted: Fri May 02, 2003 10:52 pm    Post subject: Re: Utile (forse) script per chi usa il portatile Reply with quote

Gianluca Rotoni wrote:
Il profilo scelto me lo ritrovo poi in /proc/cmdline che posso leggere da uno
start-up script simile al tuo. In effetti il profilo auto fa esattamente quello che fai tu verificando che giorno e' :-)


L'utilizzo dell'append e' ancora piu' semplice:
Code:
append="prof=blabla"
altro non fa che assegnare "blabla" alla variabile d'ambiente "prof", disponibile in tutti gli script di boot.

Ciao !!
Back to top
View user's profile Send private message
maur8
Apprentice
Apprentice


Joined: 04 Mar 2003
Posts: 229
Location: Pescara (in serie B!!!), Italy

PostPosted: Sat May 03, 2003 5:05 pm    Post subject: Reply with quote

Mitico quickswitch e grande mrfree!
Saluti da Fabrizio 8O
_________________
Maur8.
"They decided our fate in a microsecond. Extermination"
Sgt. Kyle Rise, The Terminator
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum