From ff1dad00276a48cb86d8b12b5762d30fcba27c38 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Thu, 02 Jul 2020 18:37:59 -0400 Subject: profile/proteanos: Make constant names uppercase --- diff --git a/src/profile/proteanos.sh b/src/profile/proteanos.sh index 3bed6c4..b9b41e3 100644 --- a/src/profile/proteanos.sh +++ b/src/profile/proteanos.sh @@ -18,13 +18,13 @@ # along with the ProteanOS Development Kit. If not, see # . -_prof_proteanos_fstab_linux="\ +_PROF_PROTEANOS_FSTAB_LINUX="\ proc /proc proc defaults sys /sys sysfs defaults /dev /dev none bind devpts /dev/pts devpts noexec,nosuid,gid=5,mode=0620 " -_prof_proteanos_install_service=\ +_PROF_PROTEANOS_INSTALL_SERVICE=\ '#!/bin/sh /etc/rc.common start() @@ -244,7 +244,7 @@ prof_proteanos_get_fstab() case "${arch}" in *-linux-*) - printf '%s\n' "${_prof_proteanos_fstab_linux}" + printf '%s\n' "${_PROF_PROTEANOS_FSTAB_LINUX}" ;; esac } @@ -318,7 +318,7 @@ prof_proteanos_configure_system_foreign() local plat="${3}" shift 3 - printf '%s' "${_prof_proteanos_install_service}" \ + printf '%s' "${_PROF_PROTEANOS_INSTALL_SERVICE}" \ >"${root}/etc/rc.d/S10install" chmod -- 0755 "${root}/etc/rc.d/S10install" printf 'proteanos\n' >"${root}/etc/hostname" -- cgit v0.9.1