Merge "Make growvols config path platform independent"

This commit is contained in:
Zuul 2022-02-21 19:33:11 +00:00 committed by Gerrit Code Review
commit 1ec7f1c238
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ After=systemd-udev-settle.service
[Service] [Service]
Type=oneshot Type=oneshot
EnvironmentFile=-/etc/sysconfig/growvols EnvironmentFile=-/etc/default/growvols
User=root User=root
ExecStart=/usr/local/sbin/growvols --verbose --yes ExecStart=/usr/local/sbin/growvols --verbose --yes
RemainAfterExit=true RemainAfterExit=true

View File

@ -12,7 +12,7 @@ case ${DIB_GROWVOLS_TRIGGER} in
*) echo "Unsupported DIB_GROWVOLS_TRIGGER: ${DIB_GROWVOLS_TRIGGER}"; exit 1 ;; *) echo "Unsupported DIB_GROWVOLS_TRIGGER: ${DIB_GROWVOLS_TRIGGER}"; exit 1 ;;
esac esac
cat << EOF | sudo tee /etc/sysconfig/growvols > /dev/null cat << EOF | sudo tee /etc/default/growvols > /dev/null
GROWVOLS_ARGS="${DIB_GROWVOLS_ARGS}" GROWVOLS_ARGS="${DIB_GROWVOLS_ARGS}"
GROWVOLS_GROUP="${DIB_GROWVOLS_GROUP}" GROWVOLS_GROUP="${DIB_GROWVOLS_GROUP}"
GROWVOLS_DEVICE="${DIB_GROWVOLS_DEVICE}" GROWVOLS_DEVICE="${DIB_GROWVOLS_DEVICE}"