diff options
author | obrien <obrien@FreeBSD.org> | 2002-04-01 21:35:24 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-04-01 21:35:24 +0000 |
commit | 1f9ca3193732e910a1a2f6162841d6b3fab60a60 (patch) | |
tree | 8be7509f25eecde0b817510b46a17463663ec68d /usr.sbin/sade | |
parent | 0ddcf62ed59f8c10287786d52a41bd0772e9abdb (diff) | |
download | FreeBSD-src-1f9ca3193732e910a1a2f6162841d6b3fab60a60.zip FreeBSD-src-1f9ca3193732e910a1a2f6162841d6b3fab60a60.tar.gz |
Our persistent-state, large temporary file dir is /VAR/tmp, not /USR/tmp.
Diffstat (limited to 'usr.sbin/sade')
-rw-r--r-- | usr.sbin/sade/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sade/install.c b/usr.sbin/sade/install.c index 9d69fca..892f8fa 100644 --- a/usr.sbin/sade/install.c +++ b/usr.sbin/sade/install.c @@ -1115,7 +1115,7 @@ installVarDefaults(dialogMenuItem *self) variable_set2(VAR_FIXIT_TTY, "standard", 0); else variable_set2(VAR_FIXIT_TTY, "serial", 0); - variable_set2(VAR_PKG_TMPDIR, "/usr/tmp", 0); + variable_set2(VAR_PKG_TMPDIR, "/var/tmp", 0); variable_set2(VAR_MEDIA_TIMEOUT, itoa(MEDIA_TIMEOUT), 0); if (getpid() != 1) variable_set2(SYSTEM_STATE, "update", 0); |