search for: localst

Displaying 3 results from an estimated 3 matches for "localst".

Did you mean: locals
2007 Jul 16
9
DRBD facts
...t;/proc/drbd").each do |l| if l =~ /(\d+): cs:Unconfigured/ device = $1 result["drbdconnectionstate#{device}"] = "Unconfigured" elsif l =~ /(\d+): cs:(\w+) st:(\w+)\/(\w+) ds:(\w+)\/(\w+)/ device = $1 connectionstate = $2 localstate = $3 peerstate = $4 localdiskstate = $5 peerdiskstate = $6 result["drbdconnectionstate#{device}"] = connectionstate result["drbdlocalstate#{device}"] = localstate result["drbdpeerstate#{device}"] = peerstate r...
2007 Jul 11
17
Best practise guide
Hi, I''m a new puppet user (thanks !) and I''m just looking at moving my homegrown manifest structure into something resembling the best practise guide at : http://www.reductivelabs.com/trac/puppet/wiki/PuppetBestPractice. It seems as if the structure here doesn''t map to the default puppet layout (and thus doesn''t work with the standard puppet config
2010 Sep 02
6
[PATCH]ioemu: fix altgr-insert behavior
...', sending altgr keycode before sending key keycode. diff -r 17723c0b042b keymaps.c --- a/keymaps.c Thu Sep 02 16:40:39 2010 +0800 +++ b/keymaps.c Thu Sep 02 17:26:53 2010 +0800 @@ -51,6 +51,7 @@ struct key_range *numlock_range; struct key_range *shift_range; struct key_range *localstate_range; + struct key_range *altgr_range; } kbd_layout_t; static void add_to_key_range(struct key_range **krp, int code) { @@ -133,7 +134,11 @@ add_to_key_range(&k->localstate_range, keycode); //fprintf(stderr, "localstate keysym %04x keycode %d\n", keysym, keycode)...