diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2015-03-31 17:35:04 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2015-04-01 14:46:43 +0200 |
commit | decca1b7a36e42f224edbbe065ba67440eba4ffd (patch) | |
tree | ba90957c947b7e39da238e9d4f8f683adf6a51c2 | |
parent | de26b56c6bd1057bfef351ba0bd27b4ede9457f0 (diff) | |
download | runit-void-decca1b7a36e42f224edbbe065ba67440eba4ffd.tar.gz runit-void-decca1b7a36e42f224edbbe065ba67440eba4ffd.tar.xz runit-void-decca1b7a36e42f224edbbe065ba67440eba4ffd.zip |
services: uppercase configuration variables
-rw-r--r-- | services/agetty-console/conf | 4 | ||||
-rwxr-xr-x | services/agetty-generic/run | 2 | ||||
-rw-r--r-- | services/agetty-serial/conf | 4 | ||||
-rw-r--r-- | services/agetty-tty1/conf | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/services/agetty-console/conf b/services/agetty-console/conf index abccdb5..c725133 100644 --- a/services/agetty-console/conf +++ b/services/agetty-console/conf @@ -1,2 +1,2 @@ -baud_rate=38400 -term_name=linux +BAUD_RATE=38400 +TERM_NAME=linux diff --git a/services/agetty-generic/run b/services/agetty-generic/run index f6e625c..9f532b2 100755 --- a/services/agetty-generic/run +++ b/services/agetty-generic/run @@ -12,4 +12,4 @@ elif [ -x /sbin/agetty ]; then fi exec setsid ${GETTY}${GETTY_ARGS:+ $GETTY_ARGS} \ - "${tty}" "${baud_rate}" "${term_name}" + "${tty}" "${BAUD_RATE}" "${TERM_NAME}" diff --git a/services/agetty-serial/conf b/services/agetty-serial/conf index 7e064af..5aba88f 100644 --- a/services/agetty-serial/conf +++ b/services/agetty-serial/conf @@ -3,5 +3,5 @@ if [ -x /sbin/getty ]; then GETTY_ARGS="-8 -L" fi -baud_rate=115200 -term_name=vt100 +BAUD_RATE=115200 +TERM_NAME=vt100 diff --git a/services/agetty-tty1/conf b/services/agetty-tty1/conf index 977d7ef..a2d4e8d 100644 --- a/services/agetty-tty1/conf +++ b/services/agetty-tty1/conf @@ -3,5 +3,5 @@ if [ -x /sbin/getty ]; then GETTY_ARGS="--no-clear" fi -baud_rate=38400 -term_name=linux +BAUD_RATE=38400 +TERM_NAME=linux |