diff options
author | Cullum Smith <cullum@sacredheartsc.com> | 2024-08-02 19:10:39 -0400 |
---|---|---|
committer | Cullum Smith <cullum@sacredheartsc.com> | 2024-08-02 19:10:39 -0400 |
commit | cbcd022f302adc39ecb89fba6faf72e68184c0e0 (patch) | |
tree | a5ab154e08fa3c4fa110b09d3475736c66840c8b /files/etc | |
parent | ceb339370d7a0cc4a83fe54103a650dfb3f72261 (diff) | |
download | infrastructure-cbcd022f302adc39ecb89fba6faf72e68184c0e0.tar.gz |
halfway working idm server and laptop hostclasses
Diffstat (limited to 'files/etc')
-rw-r--r-- | files/etc/devd/lid-close.conf.laptop | 6 | ||||
l--------- | files/etc/devd/lid-close.conf.roadwarrior_laptop | 1 | ||||
-rw-r--r-- | files/etc/devd/thinkpad-brightness.conf.laptop | 13 | ||||
l--------- | files/etc/devd/thinkpad-brightness.conf.roadwarrior_laptop | 1 | ||||
-rw-r--r-- | files/etc/rc.local.laptop | 1 | ||||
l--------- | files/etc/rc.local.roadwarrior_laptop | 1 | ||||
l--------- | files/etc/ssh/ssh_config.roadwarrior_laptop | 1 |
7 files changed, 24 insertions, 0 deletions
diff --git a/files/etc/devd/lid-close.conf.laptop b/files/etc/devd/lid-close.conf.laptop new file mode 100644 index 0000000..751c546 --- /dev/null +++ b/files/etc/devd/lid-close.conf.laptop @@ -0,0 +1,6 @@ +notify 20 { + match "system" "ACPI"; + match "subsystem" "Lid"; + match "notify" "0x00"; + action "/usr/local/libexec/lid-close"; +}; diff --git a/files/etc/devd/lid-close.conf.roadwarrior_laptop b/files/etc/devd/lid-close.conf.roadwarrior_laptop new file mode 120000 index 0000000..b6dd50e --- /dev/null +++ b/files/etc/devd/lid-close.conf.roadwarrior_laptop @@ -0,0 +1 @@ +lid-close.conf.laptop
\ No newline at end of file diff --git a/files/etc/devd/thinkpad-brightness.conf.laptop b/files/etc/devd/thinkpad-brightness.conf.laptop new file mode 100644 index 0000000..24bd750 --- /dev/null +++ b/files/etc/devd/thinkpad-brightness.conf.laptop @@ -0,0 +1,13 @@ +notify 20 { + match "system" "ACPI"; + match "subsystem" "IBM"; + match "notify" "0x10"; + action "/usr/local/libexec/thinkpad-brightness up"; +}; + +notify 20 { + match "system" "ACPI"; + match "subsystem" "IBM"; + match "notify" "0x11"; + action "/usr/local/libexec/thinkpad-brightness down"; +}; diff --git a/files/etc/devd/thinkpad-brightness.conf.roadwarrior_laptop b/files/etc/devd/thinkpad-brightness.conf.roadwarrior_laptop new file mode 120000 index 0000000..77502f3 --- /dev/null +++ b/files/etc/devd/thinkpad-brightness.conf.roadwarrior_laptop @@ -0,0 +1 @@ +thinkpad-brightness.conf.laptop
\ No newline at end of file diff --git a/files/etc/rc.local.laptop b/files/etc/rc.local.laptop new file mode 100644 index 0000000..d3b9958 --- /dev/null +++ b/files/etc/rc.local.laptop @@ -0,0 +1 @@ +usbconfig | awk -F: '{ print $1 }' | xargs -rtn1 -I% usbconfig -d % power_save diff --git a/files/etc/rc.local.roadwarrior_laptop b/files/etc/rc.local.roadwarrior_laptop new file mode 120000 index 0000000..e86eca1 --- /dev/null +++ b/files/etc/rc.local.roadwarrior_laptop @@ -0,0 +1 @@ +rc.local.laptop
\ No newline at end of file diff --git a/files/etc/ssh/ssh_config.roadwarrior_laptop b/files/etc/ssh/ssh_config.roadwarrior_laptop new file mode 120000 index 0000000..338cdba --- /dev/null +++ b/files/etc/ssh/ssh_config.roadwarrior_laptop @@ -0,0 +1 @@ +ssh_config.no_idm
\ No newline at end of file |