Tue Feb 05, 2013 12:30 pm
Tue Feb 05, 2013 1:24 pm
Tue Feb 05, 2013 2:08 pm
Tue Feb 05, 2013 2:30 pm
Tue Feb 05, 2013 3:58 pm
fsmithred wrote:OK, I see the problem. This gives me an excuse to bring the installer version number in sync with the snapshot tool. Here's the fix - change:
- Code:
if [[ $change_hostname = "yes" ]]; then
select_hostname
fi
toif [[ $change_hostname = "yes" ]]; then
select_hostname
else
new_hostname="$HOSTNAME"
fi
refractainstaller-yad around line 650
refractainstaller-gui around line 593
And in the cli refractainstaller, move line 488 down. Put this right after the select_hostname function is called on line 535:
- Code:
# In case null was entered above as hostname, then set it to $HOSTNAME
new_hostname=${new_hostname:="$HOSTNAME"}
Tue Feb 05, 2013 4:32 pm
Tue Feb 05, 2013 7:00 pm
Tue Feb 05, 2013 7:28 pm
Wed Feb 06, 2013 9:33 am
fsmithred wrote:Oy. unionfs, aufs, overlayfs, wtffs....
Fri Feb 08, 2013 3:05 pm