hwameistor / drbd-adapter

A DRBD kernel loader that auto-adapts OS distros
Apache License 2.0
4 stars 6 forks source link

[fix] link /etc => /usr/local/etc and /var /usr/local/var #15

Closed alexzhc closed 2 years ago

alexzhc commented 2 years ago

Signed-off-by: alexzhc alex.zheng@daocloud.io

It is observed that for statically-compiled drbdadm, the working directory is /usr/local, therefore we device a temporary fix for the problem of drbadm no finding /usr/local/etc and /usr/local/var

   for i in etc var; do 
      mv -vf /usr-local/$i /usr-local/$i.bak
      ln -svf /$i /usr-local/$i
   done 
alexzhc commented 2 years ago

LGTM