remove personalfiles interface.
This commit is contained in:
parent
48f5309e0d
commit
f21200d9f1
|
@ -24,21 +24,12 @@ apps:
|
||||||
plugs:
|
plugs:
|
||||||
- network
|
- network
|
||||||
- system-observe
|
- system-observe
|
||||||
- historyfile
|
|
||||||
|
|
||||||
taosdemo:
|
taosdemo:
|
||||||
command: usr/bin/taosdemo
|
command: usr/bin/taosdemo
|
||||||
plugs:
|
plugs:
|
||||||
- network
|
- network
|
||||||
|
|
||||||
plugs:
|
|
||||||
historyfile:
|
|
||||||
interface: personal-files
|
|
||||||
read:
|
|
||||||
- $HOME/.taos_history
|
|
||||||
write:
|
|
||||||
- $HOME/.taos_history
|
|
||||||
|
|
||||||
parts:
|
parts:
|
||||||
script:
|
script:
|
||||||
plugin: dump
|
plugin: dump
|
||||||
|
@ -101,8 +92,3 @@ layout:
|
||||||
bind: $SNAP_DATA/var/log/taos
|
bind: $SNAP_DATA/var/log/taos
|
||||||
/etc/taos:
|
/etc/taos:
|
||||||
bind: $SNAP_DATA/etc/taos
|
bind: $SNAP_DATA/etc/taos
|
||||||
|
|
||||||
|
|
||||||
hooks:
|
|
||||||
install:
|
|
||||||
plugs: [historyfile]
|
|
||||||
|
|
|
@ -409,7 +409,7 @@ void set_terminal_mode() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void get_history_path(char *history) { sprintf(history, "%s/%s", getpwuid(getuid())->pw_dir, HISTORY_FILE); }
|
void get_history_path(char *history) { sprintf(history, "%s/%s", getenv("HOME"), HISTORY_FILE); }
|
||||||
|
|
||||||
void clearScreen(int ecmd_pos, int cursor_pos) {
|
void clearScreen(int ecmd_pos, int cursor_pos) {
|
||||||
struct winsize w;
|
struct winsize w;
|
||||||
|
|
Loading…
Reference in New Issue