chore(cli): remove commented out code

This commit is contained in:
Nicolas Meienberger 2023-08-23 08:14:40 +02:00 committed by Nicolas Meienberger
parent 26bb80e743
commit 1e4f4805e7
2 changed files with 5 additions and 30 deletions

View file

@ -33,28 +33,6 @@ export class AppExecutors {
return { appDataDirPath, appDirPath, configJsonPath, repoPath };
};
// private ensurePermissions = async (appId: string) => {
// const { appDataDirPath, configJsonPath } = this.getAppPaths(appId);
// if (!(await pathExists(appDataDirPath))) {
// this.logger.info(`Creating app ${appId} data dir`);
// await fs.promises.mkdir(appDataDirPath, { recursive: true });
// }
// // Check if app requires special uid and gid
// if (await pathExists(configJsonPath)) {
// const config = appInfoSchema.parse(JSON.parse(await fs.promises.readFile(configJsonPath, 'utf-8')));
// const { uid, gid } = config;
// if (uid && gid) {
// this.logger.info(`Setting uid and gid to ${uid}:${gid}`);
// await execAsync(`chown -R ${uid}:${gid} ${path.join(appDataDirPath, 'data')}`);
// }
// }
// // Remove all .gitkeep files from app data dir
// await execAsync(`find ${appDataDirPath} -name '.gitkeep' -exec rm -f {} \\;`);
// };
/**
* Given an app id, ensures that the app folder exists in the apps folder
* If not, copies the app folder from the repo
@ -123,8 +101,6 @@ export class AppExecutors {
await copyDataDir(appId);
}
// await this.ensurePermissions(appId);
// run docker-compose up
this.logger.info(`Running docker-compose up for app ${appId}`);
await compose(appId, 'up -d');
@ -215,8 +191,6 @@ export class AppExecutors {
this.logger.info(`Copying folder ${repoPath} to ${appDirPath}`);
await fs.promises.cp(repoPath, appDirPath, { recursive: true });
// await this.ensurePermissions(appId);
await compose(appId, 'pull');
return { success: true, message: `App ${appId} updated successfully` };

View file

@ -51,8 +51,10 @@ export class SystemExecutors {
};
};
private ensureFilePermissions = async (rootFolderHost: string) => {
console.log('Tipi is asking for your password to ensure file permissions are correct (performed only in runtipi folder)');
private ensureFilePermissions = async (rootFolderHost: string, logSudoRequest = true) => {
if (logSudoRequest) {
console.log('\nTipi is asking for your password\nin order to ensure permissions\non copied files and folders\n');
}
const filesAndFolders = [
path.join(rootFolderHost, 'apps'),
path.join(rootFolderHost, 'logs'),
@ -65,7 +67,6 @@ export class SystemExecutors {
];
// Give permission to read and write to all files and folders for the current user
await Promise.all(
filesAndFolders.map(async (fileOrFolder) => {
if (await pathExists(fileOrFolder)) {
@ -143,7 +144,7 @@ export class SystemExecutors {
spinner.done('System files copied');
await this.ensureFilePermissions(this.rootFolder);
await this.ensureFilePermissions(this.rootFolder, false);
spinner.setMessage('Generating system env file...');
spinner.start();